|\^/| Maple 12 (IBM INTEL LINUX) ._|\| |/|_. Copyright (c) Maplesoft, a division of Waterloo Maple Inc. 2008 \ MAPLE / All rights reserved. Maple is a trademark of <____ ____> Waterloo Maple Inc. | Type ? for help. > #BEGIN OUTFILE1 > # Begin Function number 3 > check_sign := proc( x0 ,xf) > local ret; > if (xf > x0) then # if number 1 > ret := 1.0; > else > ret := -1.0; > fi;# end if 1; > ret;; > end; check_sign := proc(x0, xf) local ret; if x0 < xf then ret := 1.0 else ret := -1.0 end if; ret end proc > # End Function number 3 > # Begin Function number 4 > est_size_answer := proc() > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > 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_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_max_h, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_2D0, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1_g, > array_tmp1, > array_tmp2_c1, > array_tmp2_a1, > array_tmp2_a2, > array_tmp2, > array_tmp3, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > local min_size; > min_size := glob_large_float; > if (omniabs(array_y[1]) < min_size) then # if number 1 > min_size := omniabs(array_y[1]); > omniout_float(ALWAYS,"min_size",32,min_size,32,""); > fi;# end if 1; > if (min_size < 1.0) then # if number 1 > min_size := 1.0; > omniout_float(ALWAYS,"min_size",32,min_size,32,""); > fi;# end if 1; > min_size; > end; est_size_answer := proc() local min_size; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, 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_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_max_h, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_max_minutes, array_const_1, array_const_0D0, array_const_2D0, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1_g, array_tmp1, array_tmp2_c1, array_tmp2_a1, array_tmp2_a2, array_tmp2, array_tmp3, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; min_size := glob_large_float; if omniabs(array_y[1]) < min_size then min_size := omniabs(array_y[1]); omniout_float(ALWAYS, "min_size", 32, min_size, 32, "") end if; if min_size < 1.0 then min_size := 1.0; 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 > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > 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_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_max_h, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_2D0, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1_g, > array_tmp1, > array_tmp2_c1, > array_tmp2_a1, > array_tmp2_a2, > array_tmp2, > array_tmp3, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > local max_value3,hn_div_ho,hn_div_ho_2,hn_div_ho_3,value3,no_terms; > max_value3 := 0.0; > no_terms := glob_max_terms; > hn_div_ho := 0.5; > hn_div_ho_2 := 0.25; > hn_div_ho_3 := 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,""); > value3 := omniabs(array_y[no_terms-3] + array_y[no_terms - 2] * hn_div_ho + array_y[no_terms - 1] * hn_div_ho_2 + array_y[no_terms] * hn_div_ho_3); > if (value3 > max_value3) then # if number 1 > max_value3 := value3; > omniout_float(ALWAYS,"value3",32,value3,32,""); > fi;# end if 1; > omniout_float(ALWAYS,"max_value3",32,max_value3,32,""); > max_value3; > end; test_suggested_h := proc() local max_value3, hn_div_ho, hn_div_ho_2, hn_div_ho_3, value3, no_terms; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, 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_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_max_h, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_max_minutes, array_const_1, array_const_0D0, array_const_2D0, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1_g, array_tmp1, array_tmp2_c1, array_tmp2_a1, array_tmp2_a2, array_tmp2, array_tmp3, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; max_value3 := 0.; no_terms := glob_max_terms; hn_div_ho := 0.5; hn_div_ho_2 := 0.25; hn_div_ho_3 := 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, ""); value3 := omniabs(array_y[no_terms - 3] + array_y[no_terms - 2]*hn_div_ho + array_y[no_terms - 1]*hn_div_ho_2 + array_y[no_terms]*hn_div_ho_3); if max_value3 < value3 then max_value3 := value3; omniout_float(ALWAYS, "value3", 32, value3, 32, "") end if; omniout_float(ALWAYS, "max_value3", 32, max_value3, 32, ""); max_value3 end proc > # End Function number 5 > # Begin Function number 6 > reached_interval := proc() > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > 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_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_max_h, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_2D0, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1_g, > array_tmp1, > array_tmp2_c1, > array_tmp2_a1, > array_tmp2_a2, > array_tmp2, > array_tmp3, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > local ret; > if (glob_check_sign * (array_x[1]) >= glob_check_sign * glob_next_display) then # if number 1 > ret := true; > else > ret := false; > fi;# end if 1; > return(ret); > end; reached_interval := proc() local ret; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, 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_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_max_h, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_max_minutes, array_const_1, array_const_0D0, array_const_2D0, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1_g, array_tmp1, array_tmp2_c1, array_tmp2_a1, array_tmp2_a2, array_tmp2, array_tmp3, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; if glob_check_sign*glob_next_display <= glob_check_sign*array_x[1] then ret := true else ret := false end if; return ret end proc > # End Function number 6 > # Begin Function number 7 > display_alot := proc(iter) > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > 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_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_max_h, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_2D0, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1_g, > array_tmp1, > array_tmp2_c1, > array_tmp2_a1, > array_tmp2_a2, > array_tmp2, > array_tmp3, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > local abserr, analytic_val_y, ind_var, numeric_val, relerr, term_no; > #TOP DISPLAY ALOT > if (reached_interval()) then # if number 1 > if (iter >= 0) then # if number 2 > ind_var := array_x[1]; > omniout_float(ALWAYS,"x[1] ",33,ind_var,20," "); > analytic_val_y := exact_soln_y(ind_var); > omniout_float(ALWAYS,"y[1] (analytic) ",33,analytic_val_y,20," "); > term_no := 1; > numeric_val := array_y[term_no]; > abserr := omniabs(numeric_val - analytic_val_y); > omniout_float(ALWAYS,"y[1] (numeric) ",33,numeric_val,20," "); > if (omniabs(analytic_val_y) <> 0.0) then # if number 3 > relerr := abserr*100.0/omniabs(analytic_val_y); > if (relerr > 0.0000000000000000000000000000000001) then # if number 4 > glob_good_digits := -trunc(log10(relerr)) + 2; > else > glob_good_digits := Digits; > fi;# end if 4; > else > relerr := -1.0 ; > glob_good_digits := -1; > fi;# end if 3; > if (glob_iter = 1) then # if number 3 > array_1st_rel_error[1] := relerr; > else > array_last_rel_error[1] := relerr; > fi;# end if 3; > omniout_float(ALWAYS,"absolute error ",4,abserr,20," "); > omniout_float(ALWAYS,"relative error ",4,relerr,20,"%"); > omniout_int(INFO,"Correct digits ",32,glob_good_digits,4," ") > ; > omniout_float(ALWAYS,"h ",4,glob_h,20," "); > fi;# end if 2; > #BOTTOM DISPLAY ALOT > fi;# end if 1; > end; display_alot := proc(iter) local abserr, analytic_val_y, ind_var, numeric_val, relerr, term_no; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, 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_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_max_h, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_max_minutes, array_const_1, array_const_0D0, array_const_2D0, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1_g, array_tmp1, array_tmp2_c1, array_tmp2_a1, array_tmp2_a2, array_tmp2, array_tmp3, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; if reached_interval() then if 0 <= iter then ind_var := array_x[1]; omniout_float(ALWAYS, "x[1] ", 33, ind_var, 20, " "); analytic_val_y := exact_soln_y(ind_var); omniout_float(ALWAYS, "y[1] (analytic) ", 33, analytic_val_y, 20, " "); term_no := 1; numeric_val := array_y[term_no]; abserr := omniabs(numeric_val - analytic_val_y); omniout_float(ALWAYS, "y[1] (numeric) ", 33, numeric_val, 20, " "); if omniabs(analytic_val_y) <> 0. then relerr := abserr*100.0/omniabs(analytic_val_y); if 0.1*10^(-33) < relerr then glob_good_digits := -trunc(log10(relerr)) + 2 else glob_good_digits := Digits end if else relerr := -1.0; glob_good_digits := -1 end if; if glob_iter = 1 then array_1st_rel_error[1] := relerr else array_last_rel_error[1] := relerr end if; omniout_float(ALWAYS, "absolute error ", 4, abserr, 20, " "); omniout_float(ALWAYS, "relative error ", 4, relerr, 20, "%"); omniout_int(INFO, "Correct digits ", 32, glob_good_digits, 4, " "); omniout_float(ALWAYS, "h ", 4, glob_h, 20, " ") end if end if end proc > # End Function number 7 > # Begin Function number 8 > adjust_for_pole := proc(h_param) > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > 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_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_max_h, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_2D0, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1_g, > array_tmp1, > array_tmp2_c1, > array_tmp2_a1, > array_tmp2_a2, > array_tmp2, > array_tmp3, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > local hnew, sz2, tmp; > #TOP ADJUST FOR POLE > hnew := h_param; > glob_normmax := glob_small_float; > if (omniabs(array_y_higher[1,1]) > glob_small_float) then # if number 1 > tmp := omniabs(array_y_higher[1,1]); > if (tmp < glob_normmax) then # if number 2 > glob_normmax := tmp; > fi;# end if 2 > fi;# end if 1; > if (glob_look_poles and (omniabs(array_pole[1]) > glob_small_float) and (array_pole[1] <> glob_large_float)) then # if number 1 > sz2 := array_pole[1]/10.0; > if (sz2 < hnew) then # if number 2 > omniout_float(INFO,"glob_h adjusted to ",20,h_param,12,"due to singularity."); > omniout_str(INFO,"Reached Optimal"); > return(hnew); > fi;# end if 2 > fi;# end if 1; > if ( not glob_reached_optimal_h) then # if number 1 > glob_reached_optimal_h := true; > glob_curr_iter_when_opt := glob_current_iter; > glob_optimal_clock_start_sec := elapsed_time_seconds(); > glob_optimal_start := array_x[1]; > fi;# end if 1; > hnew := sz2; > ;#END block > return(hnew); > #BOTTOM ADJUST FOR POLE > end; adjust_for_pole := proc(h_param) local hnew, sz2, tmp; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, 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_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_max_h, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_max_minutes, array_const_1, array_const_0D0, array_const_2D0, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1_g, array_tmp1, array_tmp2_c1, array_tmp2_a1, array_tmp2_a2, array_tmp2, array_tmp3, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; hnew := h_param; glob_normmax := glob_small_float; if glob_small_float < omniabs(array_y_higher[1, 1]) then tmp := omniabs(array_y_higher[1, 1]); if tmp < glob_normmax then glob_normmax := tmp end if end if; if glob_look_poles and glob_small_float < omniabs(array_pole[1]) and array_pole[1] <> glob_large_float then sz2 := array_pole[1]/10.0; if sz2 < hnew then omniout_float(INFO, "glob_h adjusted to ", 20, h_param, 12, "due to singularity."); omniout_str(INFO, "Reached Optimal"); return hnew end if end if; if not glob_reached_optimal_h then glob_reached_optimal_h := true; glob_curr_iter_when_opt := glob_current_iter; glob_optimal_clock_start_sec := elapsed_time_seconds(); glob_optimal_start := array_x[1] end if; hnew := sz2; return hnew end proc > # End Function number 8 > # Begin Function number 9 > prog_report := proc(x_start,x_end) > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > 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_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_max_h, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_2D0, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1_g, > array_tmp1, > array_tmp2_c1, > array_tmp2_a1, > array_tmp2_a2, > array_tmp2, > array_tmp3, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > 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 := convfloat(clock_sec1) - convfloat(glob_orig_start_sec); > glob_clock_sec := convfloat(clock_sec1) - convfloat(glob_clock_start_sec); > left_sec := convfloat(glob_max_sec) + convfloat(glob_orig_start_sec) - convfloat(clock_sec1); > expect_sec := comp_expect_sec(convfloat(x_end),convfloat(x_start),convfloat(array_x[1]) + convfloat(glob_h) ,convfloat( clock_sec1) - convfloat(glob_orig_start_sec)); > opt_clock_sec := convfloat( clock_sec1) - convfloat(glob_optimal_clock_start_sec); > glob_optimal_expect_sec := comp_expect_sec(convfloat(x_end),convfloat(x_start),convfloat(array_x[1]) +convfloat( glob_h) ,convfloat( opt_clock_sec)); > glob_total_exp_sec := glob_optimal_expect_sec + total_clock_sec; > percent_done := comp_percent(convfloat(x_end),convfloat(x_start),convfloat(array_x[1]) + convfloat(glob_h)); > glob_percent_done := percent_done; > omniout_str_noeol(INFO,"Total Elapsed Time "); > omniout_timestr(convfloat(total_clock_sec)); > omniout_str_noeol(INFO,"Elapsed Time(since restart) "); > omniout_timestr(convfloat(glob_clock_sec)); > if (convfloat(percent_done) < convfloat(100.0)) then # if number 1 > omniout_str_noeol(INFO,"Expected Time Remaining "); > omniout_timestr(convfloat(expect_sec)); > omniout_str_noeol(INFO,"Optimized Time Remaining "); > omniout_timestr(convfloat(glob_optimal_expect_sec)); > omniout_str_noeol(INFO,"Expected Total Time "); > omniout_timestr(convfloat(glob_total_exp_sec)); > fi;# end if 1; > omniout_str_noeol(INFO,"Time to Timeout "); > omniout_timestr(convfloat(left_sec)); > omniout_float(INFO, "Percent Done ",33,percent_done,4,"%"); > #BOTTOM PROGRESS REPORT > end; prog_report := proc(x_start, x_end) local clock_sec, opt_clock_sec, clock_sec1, expect_sec, left_sec, percent_done, total_clock_sec; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, 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_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_max_h, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_max_minutes, array_const_1, array_const_0D0, array_const_2D0, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1_g, array_tmp1, array_tmp2_c1, array_tmp2_a1, array_tmp2_a2, array_tmp2, array_tmp3, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; clock_sec1 := elapsed_time_seconds(); total_clock_sec := convfloat(clock_sec1) - convfloat(glob_orig_start_sec); glob_clock_sec := convfloat(clock_sec1) - convfloat(glob_clock_start_sec); left_sec := convfloat(glob_max_sec) + convfloat(glob_orig_start_sec) - convfloat(clock_sec1); expect_sec := comp_expect_sec(convfloat(x_end), convfloat(x_start), convfloat(array_x[1]) + convfloat(glob_h), convfloat(clock_sec1) - convfloat(glob_orig_start_sec)); opt_clock_sec := convfloat(clock_sec1) - convfloat(glob_optimal_clock_start_sec); glob_optimal_expect_sec := comp_expect_sec(convfloat(x_end), convfloat(x_start), convfloat(array_x[1]) + convfloat(glob_h), convfloat(opt_clock_sec)); glob_total_exp_sec := glob_optimal_expect_sec + total_clock_sec; percent_done := comp_percent(convfloat(x_end), convfloat(x_start), convfloat(array_x[1]) + convfloat(glob_h)); glob_percent_done := percent_done; omniout_str_noeol(INFO, "Total Elapsed Time "); omniout_timestr(convfloat(total_clock_sec)); omniout_str_noeol(INFO, "Elapsed Time(since restart) "); omniout_timestr(convfloat(glob_clock_sec)); if convfloat(percent_done) < convfloat(100.0) then omniout_str_noeol(INFO, "Expected Time Remaining "); omniout_timestr(convfloat(expect_sec)); omniout_str_noeol(INFO, "Optimized Time Remaining "); omniout_timestr(convfloat(glob_optimal_expect_sec)); omniout_str_noeol(INFO, "Expected Total Time "); omniout_timestr(convfloat(glob_total_exp_sec)) end if; omniout_str_noeol(INFO, "Time to Timeout "); omniout_timestr(convfloat(left_sec)); omniout_float(INFO, "Percent Done ", 33, percent_done, 4, "%") end proc > # End Function number 9 > # Begin Function number 10 > check_for_pole := proc() > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > 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_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_max_h, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_2D0, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1_g, > array_tmp1, > array_tmp2_c1, > array_tmp2_a1, > array_tmp2_a2, > array_tmp2, > array_tmp3, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > local cnt, dr1, dr2, ds1, ds2, hdrc,hdrc_BBB, m, n, nr1, nr2, ord_no, rad_c, rcs, rm0, rm1, rm2, rm3, rm4, found_sing, h_new, ratio, term; > #TOP CHECK FOR POLE > #IN RADII REAL EQ = 1 > #Computes radius of convergence and r_order of pole from 3 adjacent Taylor series terms. EQUATUON NUMBER 1 > #Applies to pole of arbitrary r_order on the real axis, > #Due to Prof. George Corliss. > n := glob_max_terms; > m := n - 1 - 1; > while ((m >= 10) and ((omniabs(array_y_higher[1,m]) < glob_small_float * glob_small_float) or (omniabs(array_y_higher[1,m-1]) < glob_small_float * glob_small_float) or (omniabs(array_y_higher[1,m-2]) < glob_small_float * glob_small_float ))) do # do number 2 > m := m - 1; > od;# end do number 2; > if (m > 10) then # if number 1 > rm0 := array_y_higher[1,m]/array_y_higher[1,m-1]; > rm1 := array_y_higher[1,m-1]/array_y_higher[1,m-2]; > hdrc := convfloat(m)*rm0-convfloat(m-1)*rm1; > if (omniabs(hdrc) > glob_small_float * glob_small_float) then # if number 2 > rcs := glob_h/hdrc; > ord_no := (rm1*convfloat((m-2)*(m-2))-rm0*convfloat(m-3))/hdrc; > array_real_pole[1,1] := rcs; > array_real_pole[1,2] := ord_no; > else > array_real_pole[1,1] := glob_large_float; > array_real_pole[1,2] := glob_large_float; > fi;# end if 2 > else > array_real_pole[1,1] := glob_large_float; > array_real_pole[1,2] := glob_large_float; > fi;# end if 1; > #BOTTOM RADII REAL EQ = 1 > #TOP RADII COMPLEX EQ = 1 > #Computes radius of convergence for complex conjugate pair of poles. > #from 6 adjacent Taylor series terms > #Also computes r_order of poles. > #Due to Manuel Prieto. > #With a correction by Dennis J. Darland > n := glob_max_terms - 1 - 1; > cnt := 0; > while ((cnt < 5) and (n >= 10)) do # do number 2 > if (omniabs(array_y_higher[1,n]) > glob_small_float) then # if number 1 > cnt := cnt + 1; > else > cnt := 0; > fi;# end if 1; > n := n - 1; > od;# end do number 2; > m := n + cnt; > if (m <= 10) then # if number 1 > rad_c := glob_large_float; > ord_no := glob_large_float; > elif > (((omniabs(array_y_higher[1,m]) >= (glob_large_float)) or (omniabs(array_y_higher[1,m-1]) >=(glob_large_float)) or (omniabs(array_y_higher[1,m-2]) >= (glob_large_float)) or (omniabs(array_y_higher[1,m-3]) >= (glob_large_float)) or (omniabs(array_y_higher[1,m-4]) >= (glob_large_float)) or (omniabs(array_y_higher[1,m-5]) >= (glob_large_float))) or ((omniabs(array_y_higher[1,m]) <= (glob_small_float)) or (omniabs(array_y_higher[1,m-1]) <=(glob_small_float)) or (omniabs(array_y_higher[1,m-2]) <= (glob_small_float)) or (omniabs(array_y_higher[1,m-3]) <= (glob_small_float)) or (omniabs(array_y_higher[1,m-4]) <= (glob_small_float)) or (omniabs(array_y_higher[1,m-5]) <= (glob_small_float)))) then # if number 2 > rad_c := glob_large_float; > ord_no := glob_large_float; > else > rm0 := (array_y_higher[1,m])/(array_y_higher[1,m-1]); > rm1 := (array_y_higher[1,m-1])/(array_y_higher[1,m-2]); > rm2 := (array_y_higher[1,m-2])/(array_y_higher[1,m-3]); > rm3 := (array_y_higher[1,m-3])/(array_y_higher[1,m-4]); > rm4 := (array_y_higher[1,m-4])/(array_y_higher[1,m-5]); > nr1 := convfloat(m-1)*rm0 - 2.0*convfloat(m-2)*rm1 + convfloat(m-3)*rm2; > nr2 := convfloat(m-2)*rm1 - 2.0*convfloat(m-3)*rm2 + convfloat(m-4)*rm3; > dr1 := (-1.0)/rm1 + 2.0/rm2 - 1.0/rm3; > dr2 := (-1.0)/rm2 + 2.0/rm3 - 1.0/rm4; > ds1 := 3.0/rm1 - 8.0/rm2 + 5.0/rm3; > ds2 := 3.0/rm2 - 8.0/rm3 + 5.0/rm4; > if ((omniabs(nr1 * dr2 - nr2 * dr1) <= glob_small_float) or (omniabs(dr1) <= glob_small_float)) then # if number 3 > rad_c := glob_large_float; > ord_no := glob_large_float; > else > if (omniabs(nr1*dr2 - nr2 * dr1) > glob_small_float) then # if number 4 > 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)/(2.0*dr1) -convfloat(m)/2.0; > if (omniabs(rcs) > glob_small_float) then # if number 5 > if (rcs > 0.0) then # if number 6 > rad_c := sqrt(rcs) * omniabs(glob_h); > else > rad_c := glob_large_float; > fi;# end if 6 > else > rad_c := glob_large_float; > ord_no := glob_large_float; > fi;# end if 5 > else > rad_c := glob_large_float; > ord_no := glob_large_float; > fi;# end if 4 > fi;# end if 3; > array_complex_pole[1,1] := rad_c; > array_complex_pole[1,2] := ord_no; > fi;# end if 2; > #BOTTOM RADII COMPLEX EQ = 1 > found_sing := 0; > #TOP WHICH RADII EQ = 1 > if (1 <> found_sing and ((array_real_pole[1,1] = glob_large_float) or (array_real_pole[1,2] = glob_large_float)) and ((array_complex_pole[1,1] <> glob_large_float) and (array_complex_pole[1,2] <> glob_large_float)) and ((array_complex_pole[1,1] > 0.0) and (array_complex_pole[1,2] > 0.0))) then # if number 2 > array_poles[1,1] := array_complex_pole[1,1]; > array_poles[1,2] := array_complex_pole[1,2]; > found_sing := 1; > array_type_pole[1] := 2; > if (glob_display_flag) then # if number 3 > if (reached_interval()) then # if number 4 > omniout_str(ALWAYS,"Complex estimate of poles used for equation 1"); > fi;# end if 4; > fi;# end if 3; > fi;# end if 2; > if (1 <> found_sing and ((array_real_pole[1,1] <> glob_large_float) and (array_real_pole[1,2] <> glob_large_float) and (array_real_pole[1,1] > 0.0) and (array_real_pole[1,2] > -1.0 * glob_smallish_float) and ((array_complex_pole[1,1] = glob_large_float) or (array_complex_pole[1,2] = glob_large_float) or (array_complex_pole[1,1] <= 0.0 ) or (array_complex_pole[1,2] <= 0.0)))) then # if number 2 > array_poles[1,1] := array_real_pole[1,1]; > array_poles[1,2] := array_real_pole[1,2]; > found_sing := 1; > array_type_pole[1] := 1; > if (glob_display_flag) then # if number 3 > if (reached_interval()) then # if number 4 > omniout_str(ALWAYS,"Real estimate of pole used for equation 1"); > fi;# end if 4; > fi;# end if 3; > fi;# end if 2; > if (1 <> found_sing and (((array_real_pole[1,1] = glob_large_float) or (array_real_pole[1,2] = glob_large_float)) and ((array_complex_pole[1,1] = glob_large_float) or (array_complex_pole[1,2] = glob_large_float)))) then # if number 2 > array_poles[1,1] := glob_large_float; > array_poles[1,2] := glob_large_float; > found_sing := 1; > array_type_pole[1] := 3; > if (reached_interval()) then # if number 3 > omniout_str(ALWAYS,"NO POLE for equation 1"); > fi;# end if 3; > fi;# end if 2; > if (1 <> found_sing and ((array_real_pole[1,1] < array_complex_pole[1,1]) and (array_real_pole[1,1] > 0.0) and (array_real_pole[1,2] > -1.0 * glob_smallish_float))) then # if number 2 > array_poles[1,1] := array_real_pole[1,1]; > array_poles[1,2] := array_real_pole[1,2]; > found_sing := 1; > array_type_pole[1] := 1; > if (glob_display_flag) then # if number 3 > if (reached_interval()) then # if number 4 > omniout_str(ALWAYS,"Real estimate of pole used for equation 1"); > fi;# end if 4; > fi;# end if 3; > fi;# end if 2; > if (1 <> found_sing and ((array_complex_pole[1,1] <> glob_large_float) and (array_complex_pole[1,2] <> glob_large_float) and (array_complex_pole[1,1] > 0.0) and (array_complex_pole[1,2] > 0.0))) then # if number 2 > array_poles[1,1] := array_complex_pole[1,1]; > array_poles[1,2] := array_complex_pole[1,2]; > array_type_pole[1] := 2; > found_sing := 1; > if (glob_display_flag) then # if number 3 > if (reached_interval()) then # if number 4 > omniout_str(ALWAYS,"Complex estimate of poles used for equation 1"); > fi;# end if 4; > fi;# end if 3; > fi;# end if 2; > if (1 <> found_sing ) then # if number 2 > array_poles[1,1] := glob_large_float; > array_poles[1,2] := glob_large_float; > array_type_pole[1] := 3; > if (reached_interval()) then # if number 3 > omniout_str(ALWAYS,"NO POLE for equation 1"); > fi;# end if 3; > fi;# end if 2; > #BOTTOM WHICH RADII EQ = 1 > array_pole[1] := glob_large_float; > array_pole[2] := glob_large_float; > #TOP WHICH RADIUS EQ = 1 > if (array_pole[1] > array_poles[1,1]) then # if number 2 > array_pole[1] := array_poles[1,1]; > array_pole[2] := array_poles[1,2]; > fi;# end if 2; > #BOTTOM WHICH RADIUS EQ = 1 > #START ADJUST ALL SERIES > if (array_pole[1] * glob_ratio_of_radius < omniabs(glob_h)) then # if number 2 > h_new := array_pole[1] * glob_ratio_of_radius; > term := 1; > ratio := 1.0; > while (term <= glob_max_terms) do # do number 2 > array_y[term] := array_y[term]* ratio; > array_y_higher[1,term] := array_y_higher[1,term]* ratio; > array_x[term] := array_x[term]* ratio; > ratio := ratio * h_new / omniabs(glob_h); > term := term + 1; > od;# end do number 2; > glob_h := h_new; > fi;# end if 2; > #BOTTOM ADJUST ALL SERIES > if (reached_interval()) then # if number 2 > display_pole(); > fi;# end if 2 > end; check_for_pole := proc() local cnt, dr1, dr2, ds1, ds2, hdrc, hdrc_BBB, m, n, nr1, nr2, ord_no, rad_c, rcs, rm0, rm1, rm2, rm3, rm4, found_sing, h_new, ratio, term; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, 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_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_max_h, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_max_minutes, array_const_1, array_const_0D0, array_const_2D0, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1_g, array_tmp1, array_tmp2_c1, array_tmp2_a1, array_tmp2_a2, array_tmp2, array_tmp3, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; n := glob_max_terms; m := n - 2; while 10 <= m and ( omniabs(array_y_higher[1, m]) < glob_small_float*glob_small_float or omniabs(array_y_higher[1, m - 1]) < glob_small_float*glob_small_float or omniabs(array_y_higher[1, m - 2]) < glob_small_float*glob_small_float) do m := m - 1 end do; if 10 < m then rm0 := array_y_higher[1, m]/array_y_higher[1, m - 1]; rm1 := array_y_higher[1, m - 1]/array_y_higher[1, m - 2]; hdrc := convfloat(m)*rm0 - convfloat(m - 1)*rm1; if glob_small_float*glob_small_float < omniabs(hdrc) then rcs := glob_h/hdrc; ord_no := ( rm1*convfloat((m - 2)*(m - 2)) - rm0*convfloat(m - 3))/hdrc ; array_real_pole[1, 1] := rcs; array_real_pole[1, 2] := ord_no else array_real_pole[1, 1] := glob_large_float; array_real_pole[1, 2] := glob_large_float end if else array_real_pole[1, 1] := glob_large_float; array_real_pole[1, 2] := glob_large_float end if; n := glob_max_terms - 2; cnt := 0; while cnt < 5 and 10 <= n do if glob_small_float < omniabs(array_y_higher[1, n]) then cnt := cnt + 1 else cnt := 0 end if; n := n - 1 end do; m := n + cnt; if m <= 10 then rad_c := glob_large_float; ord_no := glob_large_float elif glob_large_float <= omniabs(array_y_higher[1, m]) or glob_large_float <= omniabs(array_y_higher[1, m - 1]) or glob_large_float <= omniabs(array_y_higher[1, m - 2]) or glob_large_float <= omniabs(array_y_higher[1, m - 3]) or glob_large_float <= omniabs(array_y_higher[1, m - 4]) or glob_large_float <= omniabs(array_y_higher[1, m - 5]) or omniabs(array_y_higher[1, m]) <= glob_small_float or omniabs(array_y_higher[1, m - 1]) <= glob_small_float or omniabs(array_y_higher[1, m - 2]) <= glob_small_float or omniabs(array_y_higher[1, m - 3]) <= glob_small_float or omniabs(array_y_higher[1, m - 4]) <= glob_small_float or omniabs(array_y_higher[1, m - 5]) <= glob_small_float then rad_c := glob_large_float; ord_no := glob_large_float else rm0 := array_y_higher[1, m]/array_y_higher[1, m - 1]; rm1 := array_y_higher[1, m - 1]/array_y_higher[1, m - 2]; rm2 := array_y_higher[1, m - 2]/array_y_higher[1, m - 3]; rm3 := array_y_higher[1, m - 3]/array_y_higher[1, m - 4]; rm4 := array_y_higher[1, m - 4]/array_y_higher[1, m - 5]; nr1 := convfloat(m - 1)*rm0 - 2.0*convfloat(m - 2)*rm1 + convfloat(m - 3)*rm2; nr2 := convfloat(m - 2)*rm1 - 2.0*convfloat(m - 3)*rm2 + convfloat(m - 4)*rm3; dr1 := (-1)*(1.0)/rm1 + 2.0/rm2 - 1.0/rm3; dr2 := (-1)*(1.0)/rm2 + 2.0/rm3 - 1.0/rm4; ds1 := 3.0/rm1 - 8.0/rm2 + 5.0/rm3; ds2 := 3.0/rm2 - 8.0/rm3 + 5.0/rm4; if omniabs(nr1*dr2 - nr2*dr1) <= glob_small_float or omniabs(dr1) <= glob_small_float then rad_c := glob_large_float; ord_no := glob_large_float else if glob_small_float < omniabs(nr1*dr2 - nr2*dr1) then rcs := (ds1*dr2 - ds2*dr1 + dr1*dr2)/(nr1*dr2 - nr2*dr1); ord_no := (rcs*nr1 - ds1)/(2.0*dr1) - convfloat(m)/2.0; if glob_small_float < omniabs(rcs) then if 0. < rcs then rad_c := sqrt(rcs)*omniabs(glob_h) else rad_c := glob_large_float end if else rad_c := glob_large_float; ord_no := glob_large_float end if else rad_c := glob_large_float; ord_no := glob_large_float end if end if; array_complex_pole[1, 1] := rad_c; array_complex_pole[1, 2] := ord_no end if; found_sing := 0; if 1 <> found_sing and (array_real_pole[1, 1] = glob_large_float or array_real_pole[1, 2] = glob_large_float) and array_complex_pole[1, 1] <> glob_large_float and array_complex_pole[1, 2] <> glob_large_float and 0. < array_complex_pole[1, 1] and 0. < array_complex_pole[1, 2] then array_poles[1, 1] := array_complex_pole[1, 1]; array_poles[1, 2] := array_complex_pole[1, 2]; found_sing := 1; array_type_pole[1] := 2; if glob_display_flag then if reached_interval() then omniout_str(ALWAYS, "Complex estimate of poles used for equation 1") end if end if end if; if 1 <> found_sing and array_real_pole[1, 1] <> glob_large_float and array_real_pole[1, 2] <> glob_large_float and 0. < array_real_pole[1, 1] and -1.0*glob_smallish_float < array_real_pole[1, 2] and ( array_complex_pole[1, 1] = glob_large_float or array_complex_pole[1, 2] = glob_large_float or array_complex_pole[1, 1] <= 0. or array_complex_pole[1, 2] <= 0.) then array_poles[1, 1] := array_real_pole[1, 1]; array_poles[1, 2] := array_real_pole[1, 2]; found_sing := 1; array_type_pole[1] := 1; if glob_display_flag then if reached_interval() then omniout_str(ALWAYS, "Real estimate of pole used for equation 1") end if end if end if; if 1 <> found_sing and (array_real_pole[1, 1] = glob_large_float or array_real_pole[1, 2] = glob_large_float) and ( array_complex_pole[1, 1] = glob_large_float or array_complex_pole[1, 2] = glob_large_float) then array_poles[1, 1] := glob_large_float; array_poles[1, 2] := glob_large_float; found_sing := 1; array_type_pole[1] := 3; if reached_interval() then omniout_str(ALWAYS, "NO POLE for equation 1") end if end if; if 1 <> found_sing and array_real_pole[1, 1] < array_complex_pole[1, 1] and 0. < array_real_pole[1, 1] and -1.0*glob_smallish_float < array_real_pole[1, 2] then array_poles[1, 1] := array_real_pole[1, 1]; array_poles[1, 2] := array_real_pole[1, 2]; found_sing := 1; array_type_pole[1] := 1; if glob_display_flag then if reached_interval() then omniout_str(ALWAYS, "Real estimate of pole used for equation 1") end if end if end if; if 1 <> found_sing and array_complex_pole[1, 1] <> glob_large_float and array_complex_pole[1, 2] <> glob_large_float and 0. < array_complex_pole[1, 1] and 0. < array_complex_pole[1, 2] then array_poles[1, 1] := array_complex_pole[1, 1]; array_poles[1, 2] := array_complex_pole[1, 2]; array_type_pole[1] := 2; found_sing := 1; if glob_display_flag then if reached_interval() then omniout_str(ALWAYS, "Complex estimate of poles used for equation 1") end if end if end if; if 1 <> found_sing then array_poles[1, 1] := glob_large_float; array_poles[1, 2] := glob_large_float; array_type_pole[1] := 3; if reached_interval() then omniout_str(ALWAYS, "NO POLE for equation 1") end if end if; array_pole[1] := glob_large_float; array_pole[2] := glob_large_float; if array_poles[1, 1] < array_pole[1] then array_pole[1] := array_poles[1, 1]; array_pole[2] := array_poles[1, 2] end if; if array_pole[1]*glob_ratio_of_radius < omniabs(glob_h) then h_new := array_pole[1]*glob_ratio_of_radius; term := 1; ratio := 1.0; while term <= glob_max_terms do array_y[term] := array_y[term]*ratio; array_y_higher[1, term] := array_y_higher[1, term]*ratio; array_x[term] := array_x[term]*ratio; ratio := ratio*h_new/omniabs(glob_h); term := term + 1 end do; glob_h := h_new end if; if reached_interval() then display_pole() end if end proc > # End Function number 10 > # Begin Function number 11 > get_norms := proc() > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > 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_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_max_h, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_2D0, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1_g, > array_tmp1, > array_tmp2_c1, > array_tmp2_a1, > array_tmp2_a2, > array_tmp2, > array_tmp3, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > local iii; > if ( not glob_initial_pass) then # if number 2 > iii := 1; > while (iii <= glob_max_terms) do # do number 2 > array_norms[iii] := 0.0; > iii := iii + 1; > od;# end do number 2; > #TOP GET NORMS > iii := 1; > while (iii <= glob_max_terms) do # do number 2 > if (omniabs(array_y[iii]) > array_norms[iii]) then # if number 3 > array_norms[iii] := omniabs(array_y[iii]); > fi;# end if 3; > iii := iii + 1; > od;# end do number 2 > #BOTTOM GET NORMS > ; > fi;# end if 2; > end; get_norms := proc() local iii; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, 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_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_max_h, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_max_minutes, array_const_1, array_const_0D0, array_const_2D0, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1_g, array_tmp1, array_tmp2_c1, array_tmp2_a1, array_tmp2_a2, array_tmp2, array_tmp3, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; if not glob_initial_pass then iii := 1; while iii <= glob_max_terms do array_norms[iii] := 0.; iii := iii + 1 end do; iii := 1; while iii <= glob_max_terms do if array_norms[iii] < omniabs(array_y[iii]) then array_norms[iii] := omniabs(array_y[iii]) end if; iii := iii + 1 end do end if end proc > # End Function number 11 > # Begin Function number 12 > atomall := proc() > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > 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_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_max_h, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_2D0, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1_g, > array_tmp1, > array_tmp2_c1, > array_tmp2_a1, > array_tmp2_a2, > array_tmp2, > array_tmp3, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > local kkk, order_d, adj2, adj3 , temporary, term; > #TOP ATOMALL > #END OUTFILE1 > #BEGIN ATOMHDR1 > #emit pre sin 1 $eq_no = 1 > array_tmp1[1] := sin(array_x[1]); > array_tmp1_g[1] := cos(array_x[1]); > if (glob_iter < 2) then # if number 1 > fi;# end if 1; > #emit pre expt CONST FULL $eq_no = 1 i = 1 > array_tmp2[1] := expt(array_const_2D0[1] , array_tmp1[1]); > array_tmp2_c1[1] := ln(array_const_2D0[1]); > #emit pre add CONST FULL $eq_no = 1 i = 1 > array_tmp3[1] := array_const_0D0[1] + array_tmp2[1]; > #emit pre assign xxx $eq_no = 1 i = 1 $min_hdrs = 5 > if ( not array_y_set_initial[1,2]) then # if number 1 > if (1 <= glob_max_terms) then # if number 2 > temporary := array_tmp3[1] * expt(glob_h , (1)) * factorial_3(0,1); > array_y[2] := temporary; > array_y_higher[1,2] := temporary; > temporary := temporary / glob_h * (1.0); > array_y_higher[2,1] := temporary; > fi;# end if 2; > fi;# end if 1; > kkk := 2; > #END ATOMHDR1 > #BEGIN ATOMHDR2 > #emit pre sin ID_LINEAR iii = 2 $eq_no = 1 > array_tmp1[2] := array_tmp1_g[1] * array_x[2] / 1; > array_tmp1_g[2] := -array_tmp1[1] * array_x[2] / 1; > #emit pre expt CONST FULL $eq_no = 1 iii = 2 > array_tmp2[2] := att(1,array_tmp2,array_tmp1,1) * array_tmp2_c1[1]; > #emit pre add CONST FULL $eq_no = 1 i = 2 > array_tmp3[2] := array_tmp2[2]; > #emit pre assign xxx $eq_no = 1 i = 2 $min_hdrs = 5 > if ( not array_y_set_initial[1,3]) then # if number 1 > if (2 <= glob_max_terms) then # if number 2 > temporary := array_tmp3[2] * expt(glob_h , (1)) * factorial_3(1,2); > array_y[3] := temporary; > array_y_higher[1,3] := temporary; > temporary := temporary / glob_h * (2.0); > array_y_higher[2,2] := temporary; > fi;# end if 2; > fi;# end if 1; > kkk := 3; > #END ATOMHDR2 > #BEGIN ATOMHDR3 > #emit pre sin ID_LINEAR iii = 3 $eq_no = 1 > array_tmp1[3] := array_tmp1_g[2] * array_x[2] / 2; > array_tmp1_g[3] := -array_tmp1[2] * array_x[2] / 2; > #emit pre expt CONST FULL $eq_no = 1 iii = 3 > array_tmp2[3] := att(2,array_tmp2,array_tmp1,1) * array_tmp2_c1[1]; > #emit pre add CONST FULL $eq_no = 1 i = 3 > array_tmp3[3] := array_tmp2[3]; > #emit pre assign xxx $eq_no = 1 i = 3 $min_hdrs = 5 > if ( not array_y_set_initial[1,4]) then # if number 1 > if (3 <= glob_max_terms) then # if number 2 > temporary := array_tmp3[3] * expt(glob_h , (1)) * factorial_3(2,3); > array_y[4] := temporary; > array_y_higher[1,4] := temporary; > temporary := temporary / glob_h * (3.0); > array_y_higher[2,3] := temporary; > fi;# end if 2; > fi;# end if 1; > kkk := 4; > #END ATOMHDR3 > #BEGIN ATOMHDR4 > #emit pre sin ID_LINEAR iii = 4 $eq_no = 1 > array_tmp1[4] := array_tmp1_g[3] * array_x[2] / 3; > array_tmp1_g[4] := -array_tmp1[3] * array_x[2] / 3; > #emit pre expt CONST FULL $eq_no = 1 iii = 4 > array_tmp2[4] := att(3,array_tmp2,array_tmp1,1) * array_tmp2_c1[1]; > #emit pre add CONST FULL $eq_no = 1 i = 4 > array_tmp3[4] := array_tmp2[4]; > #emit pre assign xxx $eq_no = 1 i = 4 $min_hdrs = 5 > if ( not array_y_set_initial[1,5]) then # if number 1 > if (4 <= glob_max_terms) then # if number 2 > temporary := array_tmp3[4] * expt(glob_h , (1)) * factorial_3(3,4); > array_y[5] := temporary; > array_y_higher[1,5] := temporary; > temporary := temporary / glob_h * (4.0); > array_y_higher[2,4] := temporary; > fi;# end if 2; > fi;# end if 1; > kkk := 5; > #END ATOMHDR4 > #BEGIN ATOMHDR5 > #emit pre sin ID_LINEAR iii = 5 $eq_no = 1 > array_tmp1[5] := array_tmp1_g[4] * array_x[2] / 4; > array_tmp1_g[5] := -array_tmp1[4] * array_x[2] / 4; > #emit pre expt CONST FULL $eq_no = 1 iii = 5 > array_tmp2[5] := att(4,array_tmp2,array_tmp1,1) * array_tmp2_c1[1]; > #emit pre add CONST FULL $eq_no = 1 i = 5 > array_tmp3[5] := array_tmp2[5]; > #emit pre assign xxx $eq_no = 1 i = 5 $min_hdrs = 5 > if ( not array_y_set_initial[1,6]) then # if number 1 > if (5 <= glob_max_terms) then # if number 2 > temporary := array_tmp3[5] * expt(glob_h , (1)) * factorial_3(4,5); > array_y[6] := temporary; > array_y_higher[1,6] := temporary; > temporary := temporary / glob_h * (5.0); > array_y_higher[2,5] := temporary; > fi;# end if 2; > fi;# end if 1; > kkk := 6; > #END ATOMHDR5 > #BEGIN OUTFILE3 > #Top Atomall While Loop-- outfile3 > while (kkk <= glob_max_terms) do # do number 1 > #END OUTFILE3 > #BEGIN OUTFILE4 > #emit sin LINEAR $eq_no = 1 > array_tmp1[kkk] := array_tmp1_g[kkk - 1] * array_x[2] / (kkk - 1); > array_tmp1_g[kkk] := -array_tmp1[kkk - 1] * array_x[2] / (kkk - 1); > #emit expt CONST FULL $eq_no = 1 i = 1 > array_tmp2[kkk] := att(kkk-1,array_tmp2,array_tmp1,1) * array_tmp2_c1[1]; > #emit NOT FULL - FULL add $eq_no = 1 > array_tmp3[kkk] := array_tmp2[kkk]; > #emit assign $eq_no = 1 > order_d := 1; > if (kkk + order_d + 1 <= glob_max_terms) then # if number 1 > if ( not array_y_set_initial[1,kkk + order_d]) then # if number 2 > temporary := array_tmp3[kkk] * expt(glob_h , (order_d)) * factorial_3((kkk - 1),(kkk + order_d - 1)); > array_y[kkk + order_d] := temporary; > array_y_higher[1,kkk + order_d] := temporary; > term := kkk + order_d - 1; > adj2 := kkk + order_d - 1; > adj3 := 2; > while (term >= 1) do # do number 2 > if (adj3 <= order_d + 1) then # if number 3 > if (adj2 > 0) then # if number 4 > temporary := temporary / glob_h * convfp(adj2); > else > temporary := temporary; > fi;# end if 4; > array_y_higher[adj3,term] := temporary; > fi;# end if 3; > term := term - 1; > adj2 := adj2 - 1; > adj3 := adj3 + 1; > od;# end do number 2 > 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 glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, 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_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_max_h, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_max_minutes, array_const_1, array_const_0D0, array_const_2D0, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1_g, array_tmp1, array_tmp2_c1, array_tmp2_a1, array_tmp2_a2, array_tmp2, array_tmp3, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; array_tmp1[1] := sin(array_x[1]); array_tmp1_g[1] := cos(array_x[1]); if glob_iter < 2 then end if; array_tmp2[1] := expt(array_const_2D0[1], array_tmp1[1]); array_tmp2_c1[1] := ln(array_const_2D0[1]); array_tmp3[1] := array_const_0D0[1] + array_tmp2[1]; if not array_y_set_initial[1, 2] then if 1 <= glob_max_terms then temporary := array_tmp3[1]*expt(glob_h, 1)*factorial_3(0, 1); array_y[2] := temporary; array_y_higher[1, 2] := temporary; temporary := temporary*1.0/glob_h; array_y_higher[2, 1] := temporary end if end if; kkk := 2; array_tmp1[2] := array_tmp1_g[1]*array_x[2]; array_tmp1_g[2] := -array_tmp1[1]*array_x[2]; array_tmp2[2] := att(1, array_tmp2, array_tmp1, 1)*array_tmp2_c1[1]; array_tmp3[2] := array_tmp2[2]; if not array_y_set_initial[1, 3] then if 2 <= glob_max_terms then temporary := array_tmp3[2]*expt(glob_h, 1)*factorial_3(1, 2); array_y[3] := temporary; array_y_higher[1, 3] := temporary; temporary := temporary*2.0/glob_h; array_y_higher[2, 2] := temporary end if end if; kkk := 3; array_tmp1[3] := 1/2*array_tmp1_g[2]*array_x[2]; array_tmp1_g[3] := -1/2*array_tmp1[2]*array_x[2]; array_tmp2[3] := att(2, array_tmp2, array_tmp1, 1)*array_tmp2_c1[1]; array_tmp3[3] := array_tmp2[3]; if not array_y_set_initial[1, 4] then if 3 <= glob_max_terms then temporary := array_tmp3[3]*expt(glob_h, 1)*factorial_3(2, 3); array_y[4] := temporary; array_y_higher[1, 4] := temporary; temporary := temporary*3.0/glob_h; array_y_higher[2, 3] := temporary end if end if; kkk := 4; array_tmp1[4] := 1/3*array_tmp1_g[3]*array_x[2]; array_tmp1_g[4] := -1/3*array_tmp1[3]*array_x[2]; array_tmp2[4] := att(3, array_tmp2, array_tmp1, 1)*array_tmp2_c1[1]; array_tmp3[4] := array_tmp2[4]; if not array_y_set_initial[1, 5] then if 4 <= glob_max_terms then temporary := array_tmp3[4]*expt(glob_h, 1)*factorial_3(3, 4); array_y[5] := temporary; array_y_higher[1, 5] := temporary; temporary := temporary*4.0/glob_h; array_y_higher[2, 4] := temporary end if end if; kkk := 5; array_tmp1[5] := 1/4*array_tmp1_g[4]*array_x[2]; array_tmp1_g[5] := -1/4*array_tmp1[4]*array_x[2]; array_tmp2[5] := att(4, array_tmp2, array_tmp1, 1)*array_tmp2_c1[1]; array_tmp3[5] := array_tmp2[5]; if not array_y_set_initial[1, 6] then if 5 <= glob_max_terms then temporary := array_tmp3[5]*expt(glob_h, 1)*factorial_3(4, 5); array_y[6] := temporary; array_y_higher[1, 6] := temporary; temporary := temporary*5.0/glob_h; array_y_higher[2, 5] := temporary end if end if; kkk := 6; while kkk <= glob_max_terms do array_tmp1[kkk] := array_tmp1_g[kkk - 1]*array_x[2]/(kkk - 1); array_tmp1_g[kkk] := -array_tmp1[kkk - 1]*array_x[2]/(kkk - 1); array_tmp2[kkk] := att(kkk - 1, array_tmp2, array_tmp1, 1)*array_tmp2_c1[1]; array_tmp3[kkk] := array_tmp2[kkk]; order_d := 1; if kkk + order_d + 1 <= glob_max_terms then if not array_y_set_initial[1, kkk + order_d] then temporary := array_tmp3[kkk]*expt(glob_h, order_d)* factorial_3(kkk - 1, kkk + order_d - 1); array_y[kkk + order_d] := temporary; array_y_higher[1, kkk + order_d] := temporary; term := kkk + order_d - 1; adj2 := kkk + order_d - 1; adj3 := 2; while 1 <= term do if adj3 <= order_d + 1 then if 0 < adj2 then temporary := temporary*convfp(adj2)/glob_h else temporary := temporary end if; array_y_higher[adj3, term] := 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 > #BEGIN ATS LIBRARY BLOCK > # Begin Function number 2 > omniout_str := proc(iolevel,str) > global glob_iolevel; > if (glob_iolevel >= iolevel) then # if number 1 > printf("%s\n",str); > fi;# end if 1; > end; omniout_str := proc(iolevel, str) global glob_iolevel; if iolevel <= glob_iolevel then printf("%s\n", str) end if end proc > # End Function number 2 > # Begin Function number 3 > omniout_str_noeol := proc(iolevel,str) > global glob_iolevel; > if (glob_iolevel >= iolevel) then # if number 1 > printf("%s",str); > fi;# end if 1; > end; omniout_str_noeol := proc(iolevel, str) global glob_iolevel; if iolevel <= glob_iolevel then printf("%s", str) end if end proc > # End Function number 3 > # Begin Function number 4 > omniout_labstr := proc(iolevel,label,str) > global glob_iolevel; > if (glob_iolevel >= iolevel) then # if number 1 > print(label,str); > fi;# end if 1; > end; omniout_labstr := proc(iolevel, label, str) global glob_iolevel; if iolevel <= glob_iolevel then print(label, str) end if end proc > # End Function number 4 > # Begin Function number 5 > omniout_float := proc(iolevel,prelabel,prelen,value,vallen,postlabel) > global glob_iolevel; > if (glob_iolevel >= iolevel) then # if number 1 > if vallen = 4 then > printf("%-30s = %-42.4g %s \n",prelabel,value, postlabel); > else > printf("%-30s = %-42.32g %s \n",prelabel,value, postlabel); > fi;# end if 1; > fi;# end if 0; > end; omniout_float := proc(iolevel, prelabel, prelen, value, vallen, postlabel) global glob_iolevel; if iolevel <= glob_iolevel then if vallen = 4 then printf("%-30s = %-42.4g %s \n", prelabel, value, postlabel) else printf("%-30s = %-42.32g %s \n", prelabel, value, postlabel) end if end if end proc > # End Function number 5 > # Begin Function number 6 > omniout_int := proc(iolevel,prelabel,prelen,value,vallen,postlabel) > global glob_iolevel; > if (glob_iolevel >= iolevel) then # if number 0 > if vallen = 5 then # if number 1 > printf("%-30s = %-32d %s\n",prelabel,value, postlabel); > else > printf("%-30s = %-32d %s \n",prelabel,value, postlabel); > fi;# end if 1; > fi;# end if 0; > end; omniout_int := proc(iolevel, prelabel, prelen, value, vallen, postlabel) global glob_iolevel; if iolevel <= glob_iolevel then if vallen = 5 then printf("%-30s = %-32d %s\n", prelabel, value, postlabel) else printf("%-30s = %-32d %s \n", prelabel, value, postlabel) end if end if end proc > # End Function number 6 > # Begin Function number 7 > omniout_float_arr := proc(iolevel,prelabel,elemnt,prelen,value,vallen,postlabel) > global glob_iolevel; > if (glob_iolevel >= iolevel) then # if number 0 > print(prelabel,"[",elemnt,"]",value, postlabel); > fi;# end if 0; > end; omniout_float_arr := proc( iolevel, prelabel, elemnt, prelen, value, vallen, postlabel) global glob_iolevel; if iolevel <= glob_iolevel then print(prelabel, "[", elemnt, "]", value, postlabel) end if end proc > # End Function number 7 > # Begin Function number 8 > dump_series := proc(iolevel,dump_label,series_name,arr_series,numb) > global glob_iolevel; > local i; > if (glob_iolevel >= iolevel) then # if number 0 > i := 1; > while (i <= numb) do # do number 1 > print(dump_label,series_name > ,i,arr_series[i]); > i := i + 1; > od;# end do number 1 > fi;# end if 0 > end; dump_series := proc(iolevel, dump_label, series_name, arr_series, numb) local i; global glob_iolevel; if iolevel <= glob_iolevel then i := 1; while i <= numb do print(dump_label, series_name, i, arr_series[i]); i := i + 1 end do end if end proc > # End Function number 8 > # Begin Function number 9 > dump_series_2 := proc(iolevel,dump_label,series_name2,arr_series2,numb,subnum,arr_x) > global glob_iolevel; > local i,sub,ts_term; > if (glob_iolevel >= iolevel) then # if number 0 > sub := 1; > while (sub <= subnum) do # do number 1 > i := 1; > while (i <= numb) do # do number 2 > print(dump_label,series_name2,sub,i,arr_series2[sub,i]); > od;# end do number 2; > sub := sub + 1; > od;# end do number 1; > fi;# end if 0; > end; dump_series_2 := proc( iolevel, dump_label, series_name2, arr_series2, numb, subnum, arr_x) local i, sub, ts_term; global glob_iolevel; if iolevel <= glob_iolevel then sub := 1; while sub <= subnum do i := 1; while i <= numb do print(dump_label, series_name2, sub, i, arr_series2[sub, i]) end do; sub := sub + 1 end do end if end proc > # End Function number 9 > # Begin Function number 10 > cs_info := proc(iolevel,str) > global glob_iolevel,glob_correct_start_flag,glob_h,glob_reached_optimal_h; > if (glob_iolevel >= iolevel) then # if number 0 > print("cs_info " , str , " glob_correct_start_flag = " , glob_correct_start_flag , "glob_h := " , glob_h , "glob_reached_optimal_h := " , glob_reached_optimal_h) > fi;# end if 0; > end; cs_info := proc(iolevel, str) global glob_iolevel, glob_correct_start_flag, glob_h, glob_reached_optimal_h; if iolevel <= glob_iolevel then print("cs_info ", str, " glob_correct_start_flag = ", glob_correct_start_flag, "glob_h := ", glob_h, "glob_reached_optimal_h := ", glob_reached_optimal_h) end if end proc > # End Function number 10 > # Begin Function number 11 > logitem_time := proc(fd,secs_in) > global glob_sec_in_day, glob_sec_in_hour, glob_sec_in_minute, glob_sec_in_year; > local days_int, hours_int,minutes_int, sec_int, sec_temp, years_int; > fprintf(fd,""); > if (secs_in >= 0) then # if number 0 > years_int := trunc(secs_in / glob_sec_in_year); > sec_temp := (trunc(secs_in) mod trunc(glob_sec_in_year)); > days_int := trunc(sec_temp / glob_sec_in_day) ; > sec_temp := (sec_temp mod trunc(glob_sec_in_day)) ; > hours_int := trunc(sec_temp / glob_sec_in_hour); > sec_temp := (sec_temp mod trunc(glob_sec_in_hour)); > minutes_int := trunc(sec_temp / glob_sec_in_minute); > sec_int := (sec_temp mod trunc(glob_sec_in_minute)); > if (years_int > 0) then # if number 1 > fprintf(fd,"%d Years %d Days %d Hours %d Minutes %d Seconds",years_int,days_int,hours_int,minutes_int,sec_int); > elif > (days_int > 0) then # if number 2 > fprintf(fd,"%d Days %d Hours %d Minutes %d Seconds",days_int,hours_int,minutes_int,sec_int); > elif > (hours_int > 0) then # if number 3 > fprintf(fd,"%d Hours %d Minutes %d Seconds",hours_int,minutes_int,sec_int); > elif > (minutes_int > 0) then # if number 4 > fprintf(fd,"%d Minutes %d Seconds",minutes_int,sec_int); > else > fprintf(fd,"%d Seconds",sec_int); > fi;# end if 4 > else > fprintf(fd," Unknown"); > fi;# end if 3 > fprintf(fd,"\n"); > end; logitem_time := proc(fd, secs_in) local days_int, hours_int, minutes_int, sec_int, sec_temp, years_int; global glob_sec_in_day, glob_sec_in_hour, glob_sec_in_minute, glob_sec_in_year; fprintf(fd, ""); if 0 <= secs_in then years_int := trunc(secs_in/glob_sec_in_year); sec_temp := trunc(secs_in) mod trunc(glob_sec_in_year); days_int := trunc(sec_temp/glob_sec_in_day); sec_temp := sec_temp mod trunc(glob_sec_in_day); hours_int := trunc(sec_temp/glob_sec_in_hour); sec_temp := sec_temp mod trunc(glob_sec_in_hour); minutes_int := trunc(sec_temp/glob_sec_in_minute); sec_int := sec_temp mod 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, " Unknown") end if; fprintf(fd, "\n") end proc > # End Function number 11 > # Begin Function number 12 > omniout_timestr := proc(secs_in) > global glob_sec_in_day, glob_sec_in_hour, glob_sec_in_minute, glob_sec_in_year; > local days_int, hours_int,minutes_int, sec_int, sec_temp, years_int; > if (secs_in >= 0) then # if number 3 > years_int := trunc(secs_in / glob_sec_in_year); > sec_temp := (trunc(secs_in) mod trunc(glob_sec_in_year)); > days_int := trunc(sec_temp / glob_sec_in_day) ; > sec_temp := (sec_temp mod trunc(glob_sec_in_day)) ; > hours_int := trunc(sec_temp / glob_sec_in_hour); > sec_temp := (sec_temp mod trunc(glob_sec_in_hour)); > minutes_int := trunc(sec_temp / glob_sec_in_minute); > sec_int := (sec_temp mod trunc(glob_sec_in_minute)); > if (years_int > 0) then # if number 4 > printf(" = %d Years %d Days %d Hours %d Minutes %d Seconds\n",years_int,days_int,hours_int,minutes_int,sec_int); > elif > (days_int > 0) then # if number 5 > printf(" = %d Days %d Hours %d Minutes %d Seconds\n",days_int,hours_int,minutes_int,sec_int); > elif > (hours_int > 0) then # if number 6 > printf(" = %d Hours %d Minutes %d Seconds\n",hours_int,minutes_int,sec_int); > elif > (minutes_int > 0) then # if number 7 > printf(" = %d Minutes %d Seconds\n",minutes_int,sec_int); > else > printf(" = %d Seconds\n",sec_int); > fi;# end if 7 > else > printf(" Unknown\n"); > fi;# end if 6 > end; omniout_timestr := proc(secs_in) local days_int, hours_int, minutes_int, sec_int, sec_temp, years_int; global glob_sec_in_day, glob_sec_in_hour, glob_sec_in_minute, glob_sec_in_year; if 0 <= secs_in then years_int := trunc(secs_in/glob_sec_in_year); sec_temp := trunc(secs_in) mod trunc(glob_sec_in_year); days_int := trunc(sec_temp/glob_sec_in_day); sec_temp := sec_temp mod trunc(glob_sec_in_day); hours_int := trunc(sec_temp/glob_sec_in_hour); sec_temp := sec_temp mod trunc(glob_sec_in_hour); minutes_int := trunc(sec_temp/glob_sec_in_minute); sec_int := sec_temp mod 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(" Unknown\n") end if end proc > # End Function number 12 > # Begin Function number 13 > ats := proc(mmm_ats,arr_a,arr_b,jjj_ats) > local iii_ats, lll_ats,ma_ats, ret_ats; > ret_ats := 0.0; > if (jjj_ats <= mmm_ats) then # if number 6 > ma_ats := mmm_ats + 1; > iii_ats := jjj_ats; > while (iii_ats <= mmm_ats) do # do number 1 > lll_ats := ma_ats - iii_ats; > ret_ats := ret_ats + arr_a[iii_ats]*arr_b[lll_ats]; > iii_ats := iii_ats + 1; > od;# end do number 1 > fi;# end if 6; > ret_ats; > end; ats := proc(mmm_ats, arr_a, arr_b, jjj_ats) local iii_ats, lll_ats, ma_ats, ret_ats; ret_ats := 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; ret_ats := ret_ats + arr_a[iii_ats]*arr_b[lll_ats]; iii_ats := iii_ats + 1 end do end if; ret_ats end proc > # End Function number 13 > # Begin Function number 14 > att := proc(mmm_att,arr_aa,arr_bb,jjj_att) > global glob_max_terms; > local al_att, iii_att,lll_att, ma_att, ret_att; > ret_att := 0.0; > if (jjj_att <= mmm_att) then # if number 6 > ma_att := mmm_att + 2; > iii_att := jjj_att; > while (iii_att <= mmm_att) do # do number 1 > lll_att := ma_att - iii_att; > al_att := (lll_att - 1); > if (lll_att <= glob_max_terms) then # if number 7 > ret_att := ret_att + arr_aa[iii_att]*arr_bb[lll_att]* convfp(al_att); > fi;# end if 7; > iii_att := iii_att + 1; > od;# end do number 1; > ret_att := ret_att / convfp(mmm_att) ; > fi;# end if 6; > ret_att; > end; att := proc(mmm_att, arr_aa, arr_bb, jjj_att) local al_att, iii_att, lll_att, ma_att, ret_att; global glob_max_terms; ret_att := 0.; if jjj_att <= mmm_att then ma_att := mmm_att + 2; iii_att := jjj_att; while iii_att <= mmm_att do lll_att := ma_att - iii_att; al_att := lll_att - 1; if lll_att <= glob_max_terms then ret_att := ret_att + arr_aa[iii_att]*arr_bb[lll_att]*convfp(al_att) end if; iii_att := iii_att + 1 end do; ret_att := ret_att/convfp(mmm_att) end if; ret_att end proc > # End Function number 14 > # Begin Function number 15 > display_pole_debug := proc(typ,radius,order2) > global ALWAYS,glob_display_flag, glob_large_float, array_pole; > if (typ = 1) then # if number 6 > omniout_str(ALWAYS,"Real"); > else > omniout_str(ALWAYS,"Complex"); > fi;# end if 6; > omniout_float(ALWAYS,"DBG Radius of convergence ",4, radius,4," "); > omniout_float(ALWAYS,"DBG Order of pole ",4, order2,4," "); > end; display_pole_debug := proc(typ, radius, order2) global ALWAYS, glob_display_flag, glob_large_float, array_pole; if typ = 1 then omniout_str(ALWAYS, "Real") else omniout_str(ALWAYS, "Complex") end if; omniout_float(ALWAYS, "DBG Radius of convergence ", 4, radius, 4, " "); omniout_float(ALWAYS, "DBG Order of pole ", 4, order2, 4, " ") end proc > # End Function number 15 > # Begin Function number 16 > display_pole := proc() > global ALWAYS,glob_display_flag, glob_large_float, array_pole; > if ((array_pole[1] <> glob_large_float) and (array_pole[1] > 0.0) and (array_pole[2] <> glob_large_float) and (array_pole[2]> 0.0) and glob_display_flag) then # if number 6 > omniout_float(ALWAYS,"Radius of convergence ",4, array_pole[1],4," "); > omniout_float(ALWAYS,"Order of pole ",4, array_pole[2],4," "); > fi;# end if 6 > end; display_pole := proc() global ALWAYS, glob_display_flag, glob_large_float, array_pole; if array_pole[1] <> glob_large_float and 0. < array_pole[1] and array_pole[2] <> glob_large_float and 0. < array_pole[2] and glob_display_flag then omniout_float(ALWAYS, "Radius of convergence ", 4, array_pole[1], 4, " "); omniout_float(ALWAYS, "Order of pole ", 4, array_pole[2], 4, " ") end if end proc > # End Function number 16 > # Begin Function number 17 > 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 17 > # Begin Function number 18 > 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 18 > # Begin Function number 19 > 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 19 > # Begin Function number 20 > logitem_good_digits := proc(file,rel_error) > global glob_small_float; > local good_digits; > fprintf(file,""); > if (rel_error <> -1.0) then # if number 6 > if (rel_error > + 0.0000000000000000000000000000000001) then # if number 7 > good_digits := 1-trunc(log10(rel_error)); > fprintf(file,"%d",good_digits); > else > good_digits := Digits; > fprintf(file,"%d",good_digits); > fi;# end if 7; > else > fprintf(file,"Unknown"); > fi;# end if 6; > fprintf(file,""); > end; logitem_good_digits := proc(file, rel_error) local good_digits; global glob_small_float; fprintf(file, ""); if rel_error <> -1.0 then if 0.1*10^(-33) < rel_error then good_digits := 1 - trunc(log10(rel_error)); fprintf(file, "%d", good_digits) else good_digits := Digits; fprintf(file, "%d", good_digits) end if else fprintf(file, "Unknown") end if; fprintf(file, "") end proc > # End Function number 20 > # Begin Function number 21 > log_revs := proc(file,revs) > fprintf(file,revs); > end; log_revs := proc(file, revs) fprintf(file, revs) end proc > # End Function number 21 > # Begin Function number 22 > 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 22 > # Begin Function number 23 > logitem_pole := proc(file,pole) > fprintf(file,""); > if (pole = 0) then # if number 6 > fprintf(file,"NA"); > elif > (pole = 1) then # if number 7 > fprintf(file,"Real"); > elif > (pole = 2) then # if number 8 > fprintf(file,"Complex"); > else > fprintf(file,"No Pole"); > fi;# end if 8 > fprintf(file,""); > end; logitem_pole := proc(file, pole) fprintf(file, ""); if pole = 0 then fprintf(file, "NA") elif pole = 1 then fprintf(file, "Real") elif pole = 2 then fprintf(file, "Complex") else fprintf(file, "No Pole") end if; fprintf(file, "") end proc > # End Function number 23 > # Begin Function number 24 > logstart := proc(file) > fprintf(file,""); > end; logstart := proc(file) fprintf(file, "") end proc > # End Function number 24 > # Begin Function number 25 > logend := proc(file) > fprintf(file,"\n"); > end; logend := proc(file) fprintf(file, "\n") end proc > # End Function number 25 > # Begin Function number 26 > chk_data := proc() > global glob_max_iter,ALWAYS, glob_max_terms; > local errflag; > errflag := false; > if ((glob_max_terms < 15) or (glob_max_terms > 512)) then # if number 8 > omniout_str(ALWAYS,"Illegal max_terms = -- Using 30"); > glob_max_terms := 30; > fi;# end if 8; > if (glob_max_iter < 2) then # if number 8 > omniout_str(ALWAYS,"Illegal max_iter"); > errflag := true; > fi;# end if 8; > if (errflag) then # if number 8 > quit; > fi;# end if 8 > end; chk_data := proc() local errflag; global glob_max_iter, ALWAYS, glob_max_terms; errflag := false; if glob_max_terms < 15 or 512 < glob_max_terms then omniout_str(ALWAYS, "Illegal max_terms = -- Using 30"); glob_max_terms := 30 end if; 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 26 > # Begin Function number 27 > comp_expect_sec := proc(t_end2,t_start2,t2,clock_sec2) > global glob_small_float; > local ms2, rrr, sec_left, sub1, sub2; > ; > ms2 := clock_sec2; > sub1 := (t_end2-t_start2); > sub2 := (t2-t_start2); > if (sub1 = 0.0) then # if number 8 > sec_left := 0.0; > else > if (sub2 > 0.0) then # if number 9 > rrr := (sub1/sub2); > sec_left := rrr * ms2 - ms2; > else > sec_left := 0.0; > fi;# end if 9 > fi;# end if 8; > 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 := clock_sec2; sub1 := t_end2 - t_start2; sub2 := t2 - t_start2; if sub1 = 0. then sec_left := 0. else if 0. < sub2 then rrr := sub1/sub2; sec_left := rrr*ms2 - ms2 else sec_left := 0. end if end if; sec_left end proc > # End Function number 27 > # Begin Function number 28 > 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 8 > rrr := (100.0*sub2)/sub1; > else > rrr := 0.0; > fi;# end if 8; > 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 := 100.0*sub2/sub1 else rrr := 0. end if; rrr end proc > # End Function number 28 > # Begin Function number 29 > factorial_2 := proc(nnn) > nnn!; > end; factorial_2 := proc(nnn) nnn! end proc > # End Function number 29 > # Begin Function number 30 > factorial_1 := proc(nnn) > global glob_max_terms,array_fact_1; > local ret; > if (nnn <= glob_max_terms) then # if number 8 > if (array_fact_1[nnn] = 0) then # if number 9 > ret := factorial_2(nnn); > array_fact_1[nnn] := ret; > else > ret := array_fact_1[nnn]; > fi;# end if 9; > else > ret := factorial_2(nnn); > fi;# end if 8; > ret; > end; factorial_1 := proc(nnn) local ret; global glob_max_terms, array_fact_1; if nnn <= glob_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 30 > # Begin Function number 31 > factorial_3 := proc(mmm,nnn) > global glob_max_terms,array_fact_2; > local ret; > if ((nnn <= glob_max_terms) and (mmm <= glob_max_terms)) then # if number 8 > if (array_fact_2[mmm,nnn] = 0) then # if number 9 > ret := factorial_1(mmm)/factorial_1(nnn); > array_fact_2[mmm,nnn] := ret; > else > ret := array_fact_2[mmm,nnn]; > fi;# end if 9; > else > ret := factorial_2(mmm)/factorial_2(nnn); > fi;# end if 8; > ret; > end; factorial_3 := proc(mmm, nnn) local ret; global glob_max_terms, array_fact_2; if nnn <= glob_max_terms and mmm <= glob_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 31 > # Begin Function number 32 > convfp := proc(mmm) > (mmm); > end; convfp := proc(mmm) mmm end proc > # End Function number 32 > # Begin Function number 33 > convfloat := proc(mmm) > (mmm); > end; convfloat := proc(mmm) mmm end proc > # End Function number 33 > # Begin Function number 34 > elapsed_time_seconds := proc() > time(); > end; elapsed_time_seconds := proc() time() end proc > # End Function number 34 > # Begin Function number 35 > omniabs := proc(x) > abs(x); > end; omniabs := proc(x) abs(x) end proc > # End Function number 35 > # Begin Function number 36 > expt := proc(x,y) > (x^y); > end; expt := proc(x, y) x^y end proc > # End Function number 36 > # Begin Function number 37 > 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; > omniout_float(ALWAYS,"glob_desired_digits_correct",32,glob_desired_digits_correct,32,""); > desired_abs_gbl_error := expt(10.0,- glob_desired_digits_correct) * omniabs(estimated_answer); > 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 := omniabs(desired_abs_gbl_error / estimated_steps); > 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; omniout_float(ALWAYS, "glob_desired_digits_correct", 32, glob_desired_digits_correct, 32, ""); desired_abs_gbl_error := expt(10.0, -glob_desired_digits_correct)*omniabs(estimated_answer); 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 := omniabs(desired_abs_gbl_error/estimated_steps); omniout_float(ALWAYS, "step_error", 32, step_error, 32, ""); step_error end proc > # End Function number 37 > #END ATS LIBRARY BLOCK > #BEGIN USER DEF BLOCK > #BEGIN USER DEF BLOCK > exact_soln_y := proc(x) > return(0.0); > end; exact_soln_y := proc(x) return 0. end proc > #END USER DEF BLOCK > #END USER DEF BLOCK > #END OUTFILE5 > # Begin Function number 2 > main := proc() > #BEGIN OUTFIEMAIN > local d1,d2,d3,d4,est_err_2,niii,done_once, > 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, max_terms, opt_iter, tmp,subiter, est_needed_step_err,value3,min_value,est_answer,best_h,found_h,repeat_it; > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > 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_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_max_h, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_2D0, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1_g, > array_tmp1, > array_tmp2_c1, > array_tmp2_a1, > array_tmp2_a2, > array_tmp2, > array_tmp3, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > glob_last; > ALWAYS := 1; > INFO := 2; > DEBUGL := 3; > DEBUGMASSIVE := 4; > glob_iolevel := INFO; > glob_max_terms := 30; > glob_iolevel := 5; > ALWAYS := 1; > INFO := 2; > DEBUGL := 3; > DEBUGMASSIVE := 4; > MAX_UNCHANGED := 10; > glob_check_sign := 1.0; > glob_desired_digits_correct := 8.0; > glob_max_value3 := 0.0; > glob_ratio_of_radius := 0.01; > glob_percent_done := 0.0; > glob_subiter_method := 3; > glob_total_exp_sec := 0.1; > glob_optimal_expect_sec := 0.1; > glob_html_log := true; > glob_good_digits := 0; > glob_max_opt_iter := 10; > glob_dump := false; > glob_djd_debug := true; > glob_display_flag := true; > glob_djd_debug2 := true; > 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_almost_1 := 0.9990; > glob_clock_sec := 0.0; > glob_clock_start_sec := 0.0; > 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_disp_incr := 0.1; > glob_h := 0.1; > glob_max_h := 0.1; > glob_large_float := 9.0e100; > glob_last_good_h := 0.1; > glob_look_poles := false; > glob_neg_h := false; > glob_display_interval := 0.0; > glob_next_display := 0.0; > glob_dump_analytic := false; > glob_abserr := 0.1e-10; > glob_relerr := 0.1e-10; > glob_max_hours := 0.0; > glob_max_iter := 1000; > glob_max_rel_trunc_err := 0.1e-10; > glob_max_trunc_err := 0.1e-10; > glob_no_eqs := 0; > glob_optimal_clock_start_sec := 0.0; > glob_optimal_start := 0.0; > glob_small_float := 0.1e-200; > glob_smallish_float := 0.1e-100; > glob_unchanged_h_cnt := 0; > glob_warned := false; > glob_warned2 := false; > glob_max_sec := 10000.0; > glob_orig_start_sec := 0.0; > glob_start := 0; > glob_curr_iter_when_opt := 0; > glob_current_iter := 0; > glob_iter := 0; > glob_normmax := 0.0; > glob_max_minutes := 0.0; > #Write Set Defaults > glob_orig_start_sec := elapsed_time_seconds(); > MAX_UNCHANGED := 10; > glob_curr_iter_when_opt := 0; > glob_display_flag := true; > glob_no_eqs := 1; > glob_iter := -1; > opt_iter := -1; > glob_max_iter := 50000; > glob_max_hours := 0.0; > glob_max_minutes := 15.0; > omniout_str(ALWAYS,"##############ECHO OF PROBLEM#################"); > omniout_str(ALWAYS,"##############temp/expt_c_sinpostode.ode#################"); > omniout_str(ALWAYS,"diff ( y , x , 1 ) = expt(2.0 , sin(x));"); > omniout_str(ALWAYS,"!"); > omniout_str(ALWAYS,"#BEGIN FIRST INPUT BLOCK"); > omniout_str(ALWAYS,"Digits:=32;"); > omniout_str(ALWAYS,"max_terms:=30;"); > omniout_str(ALWAYS,"!"); > omniout_str(ALWAYS,"#END FIRST INPUT BLOCK"); > omniout_str(ALWAYS,"#BEGIN SECOND INPUT BLOCK"); > omniout_str(ALWAYS,"x_start := 0.1;"); > omniout_str(ALWAYS,"x_end := 5.0 ;"); > omniout_str(ALWAYS,"array_y_init[0 + 1] := exact_soln_y(x_start);"); > omniout_str(ALWAYS,"glob_look_poles := true;"); > omniout_str(ALWAYS,"glob_max_iter := 1000000;"); > omniout_str(ALWAYS,"#END SECOND INPUT BLOCK"); > omniout_str(ALWAYS,"#BEGIN OVERRIDE BLOCK"); > omniout_str(ALWAYS,"glob_desired_digits_correct:=10;"); > omniout_str(ALWAYS,"glob_display_interval:=0.001;"); > omniout_str(ALWAYS,"glob_look_poles:=true;"); > omniout_str(ALWAYS,"glob_max_iter:=10000000;"); > omniout_str(ALWAYS,"glob_max_minutes:=3;"); > omniout_str(ALWAYS,"glob_subiter_method:=3;"); > omniout_str(ALWAYS,"#END OVERRIDE BLOCK"); > omniout_str(ALWAYS,"!"); > omniout_str(ALWAYS,"#BEGIN USER DEF BLOCK"); > omniout_str(ALWAYS,"exact_soln_y := proc(x)"); > omniout_str(ALWAYS,"return(0.0);"); > 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 := 1.0e-200; > glob_smallish_float := 1.0e-64; > glob_large_float := 1.0e100; > glob_almost_1 := 0.99; > #BEGIN FIRST INPUT BLOCK > #BEGIN FIRST INPUT BLOCK > Digits:=32; > max_terms:=30; > #END FIRST INPUT BLOCK > #START OF INITS AFTER INPUT BLOCK > glob_max_terms := max_terms; > glob_html_log := true; > #END OF INITS AFTER INPUT BLOCK > array_y_init:= Array(0..(max_terms + 1),[]); > array_norms:= Array(0..(max_terms + 1),[]); > array_fact_1:= Array(0..(max_terms + 1),[]); > array_pole:= Array(0..(max_terms + 1),[]); > array_1st_rel_error:= Array(0..(max_terms + 1),[]); > array_last_rel_error:= Array(0..(max_terms + 1),[]); > array_type_pole:= Array(0..(max_terms + 1),[]); > array_y:= Array(0..(max_terms + 1),[]); > array_x:= Array(0..(max_terms + 1),[]); > array_tmp0:= Array(0..(max_terms + 1),[]); > array_tmp1_g:= Array(0..(max_terms + 1),[]); > array_tmp1:= Array(0..(max_terms + 1),[]); > array_tmp2_c1:= Array(0..(max_terms + 1),[]); > array_tmp2_a1:= Array(0..(max_terms + 1),[]); > array_tmp2_a2:= Array(0..(max_terms + 1),[]); > array_tmp2:= Array(0..(max_terms + 1),[]); > array_tmp3:= Array(0..(max_terms + 1),[]); > array_m1:= Array(0..(max_terms + 1),[]); > array_y_higher := Array(0..(2+ 1) ,(0..max_terms+ 1),[]); > array_y_higher_work := Array(0..(2+ 1) ,(0..max_terms+ 1),[]); > array_y_higher_work2 := Array(0..(2+ 1) ,(0..max_terms+ 1),[]); > array_y_set_initial := Array(0..(2+ 1) ,(0..max_terms+ 1),[]); > array_poles := Array(0..(1+ 1) ,(0..3+ 1),[]); > array_real_pole := Array(0..(1+ 1) ,(0..3+ 1),[]); > array_complex_pole := Array(0..(1+ 1) ,(0..3+ 1),[]); > array_fact_2 := Array(0..(max_terms+ 1) ,(0..max_terms+ 1),[]); > term := 1; > while (term <= max_terms) do # do number 2 > array_y_init[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_norms[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_fact_1[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_pole[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_1st_rel_error[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_last_rel_error[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_type_pole[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_y[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_x[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_tmp0[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_tmp1_g[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_tmp1[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_tmp2_c1[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_tmp2_a1[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_tmp2_a2[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_tmp2[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_tmp3[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_m1[term] := 0.0; > term := term + 1; > od;# end do number 2; > ord := 1; > while (ord <=2) do # do number 2 > term := 1; > while (term <= max_terms) do # do number 3 > array_y_higher[ord,term] := 0.0; > term := term + 1; > od;# end do number 3; > ord := ord + 1; > od;# end do number 2; > ord := 1; > while (ord <=2) do # do number 2 > term := 1; > while (term <= max_terms) do # do number 3 > array_y_higher_work[ord,term] := 0.0; > term := term + 1; > od;# end do number 3; > ord := ord + 1; > od;# end do number 2; > ord := 1; > while (ord <=2) do # do number 2 > term := 1; > while (term <= max_terms) do # do number 3 > array_y_higher_work2[ord,term] := 0.0; > term := term + 1; > od;# end do number 3; > ord := ord + 1; > od;# end do number 2; > ord := 1; > while (ord <=2) do # do number 2 > term := 1; > while (term <= max_terms) do # do number 3 > array_y_set_initial[ord,term] := 0.0; > term := term + 1; > od;# end do number 3; > ord := ord + 1; > od;# end do number 2; > ord := 1; > while (ord <=1) do # do number 2 > term := 1; > while (term <= 3) do # do number 3 > array_poles[ord,term] := 0.0; > term := term + 1; > od;# end do number 3; > ord := ord + 1; > od;# end do number 2; > ord := 1; > while (ord <=1) do # do number 2 > term := 1; > while (term <= 3) do # do number 3 > array_real_pole[ord,term] := 0.0; > term := term + 1; > od;# end do number 3; > ord := ord + 1; > od;# end do number 2; > ord := 1; > while (ord <=1) do # do number 2 > term := 1; > while (term <= 3) do # do number 3 > array_complex_pole[ord,term] := 0.0; > term := term + 1; > od;# end do number 3; > ord := ord + 1; > od;# end do number 2; > ord := 1; > while (ord <=max_terms) do # do number 2 > term := 1; > while (term <= max_terms) do # do number 3 > array_fact_2[ord,term] := 0.0; > term := term + 1; > od;# end do number 3; > ord := ord + 1; > od;# end do number 2; > #BEGIN ARRAYS DEFINED AND INITIALIZATED > array_y := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_y[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_x := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_x[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_tmp0 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_tmp0[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_tmp1_g := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_tmp1_g[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_tmp1 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_tmp1[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_tmp2_c1 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_tmp2_c1[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_tmp2_a1 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_tmp2_a1[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_tmp2_a2 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_tmp2_a2[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_tmp2 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_tmp2[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_tmp3 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_tmp3[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_m1 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_m1[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_const_1 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_const_1[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_const_1[1] := 1; > array_const_0D0 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_const_0D0[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_const_0D0[1] := 0.0; > array_const_2D0 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_const_2D0[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_const_2D0[1] := 2.0; > array_m1 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms) do # do number 2 > array_m1[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_m1[1] := -1.0; > #END ARRAYS DEFINED AND INITIALIZATED > #Initing Factorial Tables > iiif := 0; > while (iiif <= glob_max_terms) do # do number 2 > jjjf := 0; > while (jjjf <= glob_max_terms) do # do number 3 > array_fact_1[iiif] := 0; > array_fact_2[iiif,jjjf] := 0; > jjjf := jjjf + 1; > od;# end do number 3; > iiif := iiif + 1; > od;# end do number 2; > #Done Initing Factorial Tables > #TOP SECOND INPUT BLOCK > #BEGIN SECOND INPUT BLOCK > #END FIRST INPUT BLOCK > #BEGIN SECOND INPUT BLOCK > x_start := 0.1; > x_end := 5.0 ; > array_y_init[0 + 1] := exact_soln_y(x_start); > glob_look_poles := true; > glob_max_iter := 1000000; > #END SECOND INPUT BLOCK > #BEGIN OVERRIDE BLOCK > glob_desired_digits_correct:=10; > glob_display_interval:=0.001; > glob_look_poles:=true; > glob_max_iter:=10000000; > glob_max_minutes:=3; > glob_subiter_method:=3; > #END OVERRIDE BLOCK > #END SECOND INPUT BLOCK > #BEGIN INITS AFTER SECOND INPUT BLOCK > glob_last_good_h := glob_h; > glob_max_terms := max_terms; > glob_max_sec := convfloat(60.0) * convfloat(glob_max_minutes) + convfloat(3600.0) * convfloat(glob_max_hours); > if (glob_h > 0.0) then # if number 1 > glob_neg_h := false; > glob_display_interval := omniabs(glob_display_interval); > else > glob_neg_h := true; > glob_display_interval := -omniabs(glob_display_interval); > fi;# end if 1; > chk_data(); > #AFTER INITS AFTER SECOND INPUT BLOCK > array_y_set_initial[1,1] := true; > array_y_set_initial[1,2] := false; > array_y_set_initial[1,3] := false; > array_y_set_initial[1,4] := false; > array_y_set_initial[1,5] := false; > array_y_set_initial[1,6] := false; > array_y_set_initial[1,7] := false; > array_y_set_initial[1,8] := false; > array_y_set_initial[1,9] := false; > array_y_set_initial[1,10] := false; > array_y_set_initial[1,11] := false; > array_y_set_initial[1,12] := false; > array_y_set_initial[1,13] := false; > array_y_set_initial[1,14] := false; > array_y_set_initial[1,15] := false; > array_y_set_initial[1,16] := false; > array_y_set_initial[1,17] := false; > array_y_set_initial[1,18] := false; > array_y_set_initial[1,19] := false; > array_y_set_initial[1,20] := false; > array_y_set_initial[1,21] := false; > array_y_set_initial[1,22] := false; > array_y_set_initial[1,23] := false; > array_y_set_initial[1,24] := false; > array_y_set_initial[1,25] := false; > array_y_set_initial[1,26] := false; > array_y_set_initial[1,27] := false; > array_y_set_initial[1,28] := false; > array_y_set_initial[1,29] := false; > array_y_set_initial[1,30] := false; > #BEGIN OPTIMIZE CODE > omniout_str(ALWAYS,"START of Optimize"); > #Start Series -- INITIALIZE FOR OPTIMIZE > glob_check_sign := check_sign(x_start,x_end); > glob_h := check_sign(x_start,x_end); > if (glob_display_interval < glob_h) then # if number 2 > glob_h := glob_display_interval; > fi;# end if 2; > if (glob_max_h < glob_h) then # if number 2 > glob_h := glob_max_h; > fi;# end if 2; > found_h := -1.0; > best_h := 0.0; > min_value := glob_large_float; > est_answer := est_size_answer(); > opt_iter := 1; > while ((opt_iter <= 20) and (found_h < 0.0)) do # do number 2 > omniout_int(ALWAYS,"opt_iter",32,opt_iter,4,""); > array_x[1] := x_start; > array_x[2] := glob_h; > glob_next_display := x_start; > order_diff := 1; > #Start Series array_y > term_no := 1; > while (term_no <= order_diff) do # do number 3 > array_y[term_no] := array_y_init[term_no] * expt(glob_h , (term_no - 1)) / factorial_1(term_no - 1); > term_no := term_no + 1; > od;# end do number 3; > rows := order_diff; > r_order := 1; > while (r_order <= rows) do # do number 3 > term_no := 1; > while (term_no <= (rows - r_order + 1)) do # do number 4 > it := term_no + r_order - 1; > array_y_higher[r_order,term_no] := array_y_init[it]* expt(glob_h , (term_no - 1)) / ((factorial_1(term_no - 1))); > term_no := term_no + 1; > od;# end do number 4; > r_order := r_order + 1; > od;# end do number 3 > ; > atomall(); > est_needed_step_err := estimated_needed_step_error(x_start,x_end,glob_h,est_answer); > omniout_float(ALWAYS,"est_needed_step_err",32,est_needed_step_err,16,""); > value3 := test_suggested_h(); > omniout_float(ALWAYS,"value3",32,value3,32,""); > if ((value3 < est_needed_step_err) and (found_h < 0.0)) then # if number 2 > best_h := glob_h; > found_h := 1.0; > fi;# end if 2; > omniout_float(ALWAYS,"best_h",32,best_h,32,""); > opt_iter := opt_iter + 1; > glob_h := glob_h * 0.5; > od;# end do number 2; > if (found_h > 0.0) then # if number 2 > glob_h := best_h ; > else > omniout_str(ALWAYS,"No increment to obtain desired accuracy found"); > fi;# end if 2; > #END OPTIMIZE CODE > if (glob_html_log) then # if number 2 > html_log_file := fopen("html/entry.html",WRITE,TEXT); > fi;# end if 2; > #BEGIN SOLUTION CODE > if (found_h > 0.0) then # if number 2 > omniout_str(ALWAYS,"START of Soultion"); > #Start Series -- INITIALIZE FOR SOLUTION > array_x[1] := x_start; > array_x[2] := glob_h; > glob_next_display := x_start; > order_diff := 1; > #Start Series array_y > term_no := 1; > while (term_no <= order_diff) do # do number 2 > array_y[term_no] := array_y_init[term_no] * expt(glob_h , (term_no - 1)) / factorial_1(term_no - 1); > term_no := term_no + 1; > od;# end do number 2; > rows := order_diff; > r_order := 1; > while (r_order <= rows) do # do number 2 > term_no := 1; > while (term_no <= (rows - r_order + 1)) do # do number 3 > it := term_no + r_order - 1; > array_y_higher[r_order,term_no] := array_y_init[it]* expt(glob_h , (term_no - 1)) / ((factorial_1(term_no - 1))); > term_no := term_no + 1; > od;# end do number 3; > r_order := r_order + 1; > od;# end do number 2 > ; > current_iter := 1; > glob_clock_start_sec := elapsed_time_seconds(); > glob_clock_sec := elapsed_time_seconds(); > glob_current_iter := 0; > glob_iter := 0; > omniout_str(DEBUGL," "); > glob_reached_optimal_h := true; > glob_optimal_clock_start_sec := elapsed_time_seconds(); > while ((glob_current_iter < glob_max_iter) and ((glob_check_sign * array_x[1]) < (glob_check_sign * x_end )) and ((convfloat(glob_clock_sec) - convfloat(glob_orig_start_sec)) < convfloat(glob_max_sec))) do # do number 2 > #left paren 0001C > if (reached_interval()) then # if number 3 > omniout_str(INFO," "); > omniout_str(INFO,"TOP MAIN SOLVE Loop"); > fi;# end if 3; > glob_iter := glob_iter + 1; > glob_clock_sec := elapsed_time_seconds(); > glob_current_iter := glob_current_iter + 1; > atomall(); > display_alot(current_iter); > if (glob_look_poles) then # if number 3 > #left paren 0004C > check_for_pole(); > fi;# end if 3;#was right paren 0004C > if (reached_interval()) then # if number 3 > glob_next_display := glob_next_display + glob_display_interval; > fi;# end if 3; > array_x[1] := array_x[1] + glob_h; > array_x[2] := glob_h; > #Jump Series array_y; > order_diff := 2; > #START PART 1 SUM AND ADJUST > #START SUM AND ADJUST EQ =1 > #sum_and_adjust array_y > #BEFORE ADJUST SUBSERIES EQ =1 > ord := 2; > calc_term := 1; > #adjust_subseriesarray_y > iii := glob_max_terms; > while (iii >= calc_term) do # do number 3 > array_y_higher_work[2,iii] := array_y_higher[2,iii] / expt(glob_h , (calc_term - 1)) / factorial_3(iii - calc_term , iii - 1); > iii := iii - 1; > od;# end do number 3; > #AFTER ADJUST SUBSERIES EQ =1 > #BEFORE SUM SUBSERIES EQ =1 > temp_sum := 0.0; > ord := 2; > calc_term := 1; > #sum_subseriesarray_y > iii := glob_max_terms; > while (iii >= calc_term) do # do number 3 > temp_sum := temp_sum + array_y_higher_work[ord,iii]; > iii := iii - 1; > od;# end do number 3; > array_y_higher_work2[ord,calc_term] := temp_sum * expt(glob_h , (calc_term - 1)) / (factorial_1(calc_term - 1)); > #AFTER SUM SUBSERIES EQ =1 > #BEFORE ADJUST SUBSERIES EQ =1 > ord := 1; > calc_term := 2; > #adjust_subseriesarray_y > iii := glob_max_terms; > while (iii >= calc_term) do # do number 3 > array_y_higher_work[1,iii] := array_y_higher[1,iii] / expt(glob_h , (calc_term - 1)) / factorial_3(iii - calc_term , iii - 1); > iii := iii - 1; > od;# end do number 3; > #AFTER ADJUST SUBSERIES EQ =1 > #BEFORE SUM SUBSERIES EQ =1 > temp_sum := 0.0; > ord := 1; > calc_term := 2; > #sum_subseriesarray_y > iii := glob_max_terms; > while (iii >= calc_term) do # do number 3 > temp_sum := temp_sum + array_y_higher_work[ord,iii]; > iii := iii - 1; > od;# end do number 3; > array_y_higher_work2[ord,calc_term] := temp_sum * expt(glob_h , (calc_term - 1)) / (factorial_1(calc_term - 1)); > #AFTER SUM SUBSERIES EQ =1 > #BEFORE ADJUST SUBSERIES EQ =1 > ord := 1; > calc_term := 1; > #adjust_subseriesarray_y > iii := glob_max_terms; > while (iii >= calc_term) do # do number 3 > array_y_higher_work[1,iii] := array_y_higher[1,iii] / expt(glob_h , (calc_term - 1)) / factorial_3(iii - calc_term , iii - 1); > iii := iii - 1; > od;# end do number 3; > #AFTER ADJUST SUBSERIES EQ =1 > #BEFORE SUM SUBSERIES EQ =1 > temp_sum := 0.0; > ord := 1; > calc_term := 1; > #sum_subseriesarray_y > iii := glob_max_terms; > while (iii >= calc_term) do # do number 3 > temp_sum := temp_sum + array_y_higher_work[ord,iii]; > iii := iii - 1; > od;# end do number 3; > array_y_higher_work2[ord,calc_term] := temp_sum * expt(glob_h , (calc_term - 1)) / (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 := glob_max_terms; > while (term_no >= 1) do # do number 3 > array_y[term_no] := array_y_higher_work2[1,term_no]; > ord := 1; > while (ord <= order_diff) do # do number 4 > array_y_higher[ord,term_no] := array_y_higher_work2[ord,term_no]; > ord := ord + 1; > od;# end do number 4; > term_no := term_no - 1; > od;# end do number 3; > #END PART 2 HEVE MOVED TERMS to REGULAR Array > ; > od;# end do number 2;#right paren 0001C > omniout_str(ALWAYS,"Finished!"); > if (glob_iter >= glob_max_iter) then # if number 3 > omniout_str(ALWAYS,"Maximum Iterations Reached before Solution Completed!"); > fi;# end if 3; > if (elapsed_time_seconds() - convfloat(glob_orig_start_sec) >= convfloat(glob_max_sec )) then # if number 3 > omniout_str(ALWAYS,"Maximum Time Reached before Solution Completed!"); > fi;# end if 3; > glob_clock_sec := elapsed_time_seconds(); > omniout_str(INFO,"diff ( y , x , 1 ) = expt(2.0 , sin(x));"); > omniout_int(INFO,"Iterations ",32,glob_iter,4," ") > ; > prog_report(x_start,x_end); > if (glob_html_log) then # if number 3 > logstart(html_log_file); > logitem_str(html_log_file,"2013-01-28T13:58:47-06:00") > ; > logitem_str(html_log_file,"Maple") > ; > logitem_str(html_log_file,"expt_c_sin") > ; > logitem_str(html_log_file,"diff ( y , x , 1 ) = expt(2.0 , sin(x));") > ; > logitem_float(html_log_file,x_start) > ; > logitem_float(html_log_file,x_end) > ; > logitem_float(html_log_file,array_x[1]) > ; > logitem_float(html_log_file,glob_h) > ; > logitem_integer(html_log_file,Digits) > ; > ; > logitem_good_digits(html_log_file,array_last_rel_error[1]) > ; > logitem_integer(html_log_file,glob_max_terms) > ; > logitem_float(html_log_file,array_1st_rel_error[1]) > ; > logitem_float(html_log_file,array_last_rel_error[1]) > ; > logitem_integer(html_log_file,glob_iter) > ; > logitem_pole(html_log_file,array_type_pole[1]) > ; > if (array_type_pole[1] = 1 or array_type_pole[1] = 2) then # if number 4 > logitem_float(html_log_file,array_pole[1]) > ; > logitem_float(html_log_file,array_pole[2]) > ; > 0; > else > logitem_str(html_log_file,"NA") > ; > logitem_str(html_log_file,"NA") > ; > 0; > fi;# end if 4; > logitem_time(html_log_file,convfloat(glob_clock_sec)) > ; > if (glob_percent_done < 100.0) then # if number 4 > logitem_time(html_log_file,convfloat(glob_total_exp_sec)) > ; > 0; > else > logitem_str(html_log_file,"Done") > ; > 0; > fi;# end if 4; > log_revs(html_log_file," 165 ") > ; > logitem_str(html_log_file,"expt_c_sin diffeq.mxt") > ; > logitem_str(html_log_file,"expt_c_sin maple results") > ; > logitem_str(html_log_file,"All Tests - All Languages") > ; > logend(html_log_file) > ; > ; > fi;# end if 3; > if (glob_html_log) then # if number 3 > fclose(html_log_file); > fi;# end if 3 > ; > ;; > fi;# end if 2 > #END OUTFILEMAIN > end; main := proc() local d1, d2, d3, d4, est_err_2, niii, done_once, 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, max_terms, opt_iter, tmp, subiter, est_needed_step_err, value3, min_value, est_answer, best_h, found_h, repeat_it; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, 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_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_max_h, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_max_minutes, array_const_1, array_const_0D0, array_const_2D0, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1_g, array_tmp1, array_tmp2_c1, array_tmp2_a1, array_tmp2_a2, array_tmp2, array_tmp3, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; glob_last; ALWAYS := 1; INFO := 2; DEBUGL := 3; DEBUGMASSIVE := 4; glob_iolevel := INFO; glob_max_terms := 30; glob_iolevel := 5; ALWAYS := 1; INFO := 2; DEBUGL := 3; DEBUGMASSIVE := 4; MAX_UNCHANGED := 10; glob_check_sign := 1.0; glob_desired_digits_correct := 8.0; glob_max_value3 := 0.; glob_ratio_of_radius := 0.01; glob_percent_done := 0.; glob_subiter_method := 3; glob_total_exp_sec := 0.1; glob_optimal_expect_sec := 0.1; glob_html_log := true; glob_good_digits := 0; glob_max_opt_iter := 10; glob_dump := false; glob_djd_debug := true; glob_display_flag := true; glob_djd_debug2 := true; 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_almost_1 := 0.9990; glob_clock_sec := 0.; glob_clock_start_sec := 0.; 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_disp_incr := 0.1; glob_h := 0.1; glob_max_h := 0.1; glob_large_float := 0.90*10^101; glob_last_good_h := 0.1; glob_look_poles := false; glob_neg_h := false; glob_display_interval := 0.; glob_next_display := 0.; glob_dump_analytic := false; glob_abserr := 0.1*10^(-10); glob_relerr := 0.1*10^(-10); glob_max_hours := 0.; glob_max_iter := 1000; glob_max_rel_trunc_err := 0.1*10^(-10); glob_max_trunc_err := 0.1*10^(-10); glob_no_eqs := 0; glob_optimal_clock_start_sec := 0.; glob_optimal_start := 0.; glob_small_float := 0.1*10^(-200); glob_smallish_float := 0.1*10^(-100); glob_unchanged_h_cnt := 0; glob_warned := false; glob_warned2 := false; glob_max_sec := 10000.0; glob_orig_start_sec := 0.; glob_start := 0; glob_curr_iter_when_opt := 0; glob_current_iter := 0; glob_iter := 0; glob_normmax := 0.; glob_max_minutes := 0.; glob_orig_start_sec := elapsed_time_seconds(); MAX_UNCHANGED := 10; glob_curr_iter_when_opt := 0; glob_display_flag := true; glob_no_eqs := 1; glob_iter := -1; opt_iter := -1; glob_max_iter := 50000; glob_max_hours := 0.; glob_max_minutes := 15.0; omniout_str(ALWAYS, "##############ECHO OF PROBLEM#################"); omniout_str(ALWAYS, "##############temp/expt_c_sinpostode.ode#################"); omniout_str(ALWAYS, "diff ( y , x , 1 ) = expt(2.0 , sin(x));"); omniout_str(ALWAYS, "!"); omniout_str(ALWAYS, "#BEGIN FIRST INPUT BLOCK"); omniout_str(ALWAYS, "Digits:=32;"); omniout_str(ALWAYS, "max_terms:=30;"); omniout_str(ALWAYS, "!"); omniout_str(ALWAYS, "#END FIRST INPUT BLOCK"); omniout_str(ALWAYS, "#BEGIN SECOND INPUT BLOCK"); omniout_str(ALWAYS, "x_start := 0.1;"); omniout_str(ALWAYS, "x_end := 5.0 ;"); omniout_str(ALWAYS, "array_y_init[0 + 1] := exact_soln_y(x_start);"); omniout_str(ALWAYS, "glob_look_poles := true;"); omniout_str(ALWAYS, "glob_max_iter := 1000000;"); omniout_str(ALWAYS, "#END SECOND INPUT BLOCK"); omniout_str(ALWAYS, "#BEGIN OVERRIDE BLOCK"); omniout_str(ALWAYS, "glob_desired_digits_correct:=10;"); omniout_str(ALWAYS, "glob_display_interval:=0.001;"); omniout_str(ALWAYS, "glob_look_poles:=true;"); omniout_str(ALWAYS, "glob_max_iter:=10000000;"); omniout_str(ALWAYS, "glob_max_minutes:=3;"); omniout_str(ALWAYS, "glob_subiter_method:=3;"); omniout_str(ALWAYS, "#END OVERRIDE BLOCK"); omniout_str(ALWAYS, "!"); omniout_str(ALWAYS, "#BEGIN USER DEF BLOCK"); omniout_str(ALWAYS, "exact_soln_y := proc(x)"); omniout_str(ALWAYS, "return(0.0);"); 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 := 0.10*10^(-199); glob_smallish_float := 0.10*10^(-63); glob_large_float := 0.10*10^101; glob_almost_1 := 0.99; Digits := 32; max_terms := 30; glob_max_terms := max_terms; glob_html_log := true; array_y_init := Array(0 .. max_terms + 1, []); array_norms := Array(0 .. max_terms + 1, []); array_fact_1 := Array(0 .. max_terms + 1, []); array_pole := Array(0 .. max_terms + 1, []); array_1st_rel_error := Array(0 .. max_terms + 1, []); array_last_rel_error := Array(0 .. max_terms + 1, []); array_type_pole := Array(0 .. max_terms + 1, []); array_y := Array(0 .. max_terms + 1, []); array_x := Array(0 .. max_terms + 1, []); array_tmp0 := Array(0 .. max_terms + 1, []); array_tmp1_g := Array(0 .. max_terms + 1, []); array_tmp1 := Array(0 .. max_terms + 1, []); array_tmp2_c1 := Array(0 .. max_terms + 1, []); array_tmp2_a1 := Array(0 .. max_terms + 1, []); array_tmp2_a2 := Array(0 .. max_terms + 1, []); array_tmp2 := Array(0 .. max_terms + 1, []); array_tmp3 := Array(0 .. max_terms + 1, []); array_m1 := Array(0 .. max_terms + 1, []); array_y_higher := Array(0 .. 3, 0 .. max_terms + 1, []); array_y_higher_work := Array(0 .. 3, 0 .. max_terms + 1, []); array_y_higher_work2 := Array(0 .. 3, 0 .. max_terms + 1, []); array_y_set_initial := Array(0 .. 3, 0 .. max_terms + 1, []); array_poles := Array(0 .. 2, 0 .. 4, []); array_real_pole := Array(0 .. 2, 0 .. 4, []); array_complex_pole := Array(0 .. 2, 0 .. 4, []); array_fact_2 := Array(0 .. max_terms + 1, 0 .. max_terms + 1, []); term := 1; while term <= max_terms do array_y_init[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_norms[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_fact_1[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_pole[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_1st_rel_error[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_last_rel_error[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_type_pole[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_y[term] := 0.; term := term + 1 end do ; term := 1; while term <= max_terms do array_x[term] := 0.; term := term + 1 end do ; term := 1; while term <= max_terms do array_tmp0[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_tmp1_g[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_tmp1[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_tmp2_c1[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_tmp2_a1[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_tmp2_a2[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_tmp2[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_tmp3[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_m1[term] := 0.; term := term + 1 end do; ord := 1; while ord <= 2 do term := 1; while term <= max_terms do array_y_higher[ord, term] := 0.; term := term + 1 end do; ord := ord + 1 end do; ord := 1; while ord <= 2 do term := 1; while term <= max_terms do array_y_higher_work[ord, term] := 0.; term := term + 1 end do; ord := ord + 1 end do; ord := 1; while ord <= 2 do term := 1; while term <= max_terms do array_y_higher_work2[ord, term] := 0.; term := term + 1 end do; ord := ord + 1 end do; ord := 1; while ord <= 2 do term := 1; while term <= max_terms do array_y_set_initial[ord, term] := 0.; term := term + 1 end do; ord := ord + 1 end do; ord := 1; while ord <= 1 do term := 1; while term <= 3 do array_poles[ord, term] := 0.; term := term + 1 end do; ord := ord + 1 end do; ord := 1; while ord <= 1 do term := 1; while term <= 3 do array_real_pole[ord, term] := 0.; term := term + 1 end do; ord := ord + 1 end do; ord := 1; while ord <= 1 do term := 1; while term <= 3 do array_complex_pole[ord, term] := 0.; term := term + 1 end do; ord := ord + 1 end do; ord := 1; while ord <= max_terms do term := 1; while term <= max_terms do array_fact_2[ord, term] := 0.; term := term + 1 end do; ord := ord + 1 end do; array_y := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_y[term] := 0.; term := term + 1 end do; array_x := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_x[term] := 0.; term := term + 1 end do; array_tmp0 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_tmp0[term] := 0.; term := term + 1 end do; array_tmp1_g := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_tmp1_g[term] := 0.; term := term + 1 end do; array_tmp1 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_tmp1[term] := 0.; term := term + 1 end do; array_tmp2_c1 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_tmp2_c1[term] := 0.; term := term + 1 end do; array_tmp2_a1 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_tmp2_a1[term] := 0.; term := term + 1 end do; array_tmp2_a2 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_tmp2_a2[term] := 0.; term := term + 1 end do; array_tmp2 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_tmp2[term] := 0.; term := term + 1 end do; array_tmp3 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_tmp3[term] := 0.; term := term + 1 end do; array_m1 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_m1[term] := 0.; term := term + 1 end do; array_const_1 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_const_1[term] := 0.; term := term + 1 end do; array_const_1[1] := 1; array_const_0D0 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_const_0D0[term] := 0.; term := term + 1 end do; array_const_0D0[1] := 0.; array_const_2D0 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_const_2D0[term] := 0.; term := term + 1 end do; array_const_2D0[1] := 2.0; array_m1 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms do array_m1[term] := 0.; term := term + 1 end do; array_m1[1] := -1.0; iiif := 0; while iiif <= glob_max_terms do jjjf := 0; while jjjf <= glob_max_terms do array_fact_1[iiif] := 0; array_fact_2[iiif, jjjf] := 0; jjjf := jjjf + 1 end do; iiif := iiif + 1 end do; x_start := 0.1; x_end := 5.0; array_y_init[1] := exact_soln_y(x_start); glob_look_poles := true; glob_max_iter := 1000000; glob_desired_digits_correct := 10; glob_display_interval := 0.001; glob_look_poles := true; glob_max_iter := 10000000; glob_max_minutes := 3; glob_subiter_method := 3; glob_last_good_h := glob_h; glob_max_terms := max_terms; glob_max_sec := convfloat(60.0)*convfloat(glob_max_minutes) + convfloat(3600.0)*convfloat(glob_max_hours); if 0. < glob_h then glob_neg_h := false; glob_display_interval := omniabs(glob_display_interval) else glob_neg_h := true; glob_display_interval := -omniabs(glob_display_interval) end if; chk_data(); array_y_set_initial[1, 1] := true; array_y_set_initial[1, 2] := false; array_y_set_initial[1, 3] := false; array_y_set_initial[1, 4] := false; array_y_set_initial[1, 5] := false; array_y_set_initial[1, 6] := false; array_y_set_initial[1, 7] := false; array_y_set_initial[1, 8] := false; array_y_set_initial[1, 9] := false; array_y_set_initial[1, 10] := false; array_y_set_initial[1, 11] := false; array_y_set_initial[1, 12] := false; array_y_set_initial[1, 13] := false; array_y_set_initial[1, 14] := false; array_y_set_initial[1, 15] := false; array_y_set_initial[1, 16] := false; array_y_set_initial[1, 17] := false; array_y_set_initial[1, 18] := false; array_y_set_initial[1, 19] := false; array_y_set_initial[1, 20] := false; array_y_set_initial[1, 21] := false; array_y_set_initial[1, 22] := false; array_y_set_initial[1, 23] := false; array_y_set_initial[1, 24] := false; array_y_set_initial[1, 25] := false; array_y_set_initial[1, 26] := false; array_y_set_initial[1, 27] := false; array_y_set_initial[1, 28] := false; array_y_set_initial[1, 29] := false; array_y_set_initial[1, 30] := false; omniout_str(ALWAYS, "START of Optimize"); glob_check_sign := check_sign(x_start, x_end); glob_h := check_sign(x_start, x_end); if glob_display_interval < glob_h then glob_h := glob_display_interval end if; if glob_max_h < glob_h then glob_h := glob_max_h end if; found_h := -1.0; best_h := 0.; min_value := glob_large_float; est_answer := est_size_answer(); opt_iter := 1; while opt_iter <= 20 and found_h < 0. do omniout_int(ALWAYS, "opt_iter", 32, opt_iter, 4, ""); array_x[1] := x_start; array_x[2] := glob_h; glob_next_display := x_start; order_diff := 1; term_no := 1; while term_no <= order_diff do array_y[term_no] := array_y_init[term_no]* expt(glob_h, term_no - 1)/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; array_y_higher[r_order, term_no] := array_y_init[it]* expt(glob_h, term_no - 1)/factorial_1(term_no - 1); term_no := term_no + 1 end do; r_order := r_order + 1 end do; atomall(); est_needed_step_err := estimated_needed_step_error(x_start, x_end, glob_h, est_answer) ; omniout_float(ALWAYS, "est_needed_step_err", 32, est_needed_step_err, 16, ""); value3 := test_suggested_h(); omniout_float(ALWAYS, "value3", 32, value3, 32, ""); if value3 < est_needed_step_err and found_h < 0. then best_h := glob_h; found_h := 1.0 end if; omniout_float(ALWAYS, "best_h", 32, best_h, 32, ""); opt_iter := opt_iter + 1; glob_h := glob_h*0.5 end do; if 0. < found_h then glob_h := best_h else omniout_str(ALWAYS, "No increment to obtain desired accuracy found") end if; if glob_html_log then html_log_file := fopen("html/entry.html", WRITE, TEXT) end if; if 0. < found_h then omniout_str(ALWAYS, "START of Soultion"); array_x[1] := x_start; array_x[2] := glob_h; glob_next_display := x_start; order_diff := 1; term_no := 1; while term_no <= order_diff do array_y[term_no] := array_y_init[term_no]* expt(glob_h, term_no - 1)/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; array_y_higher[r_order, term_no] := array_y_init[it]* expt(glob_h, term_no - 1)/factorial_1(term_no - 1); 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_current_iter := 0; glob_iter := 0; omniout_str(DEBUGL, " "); glob_reached_optimal_h := true; glob_optimal_clock_start_sec := elapsed_time_seconds(); while glob_current_iter < glob_max_iter and glob_check_sign*array_x[1] < glob_check_sign*x_end and convfloat(glob_clock_sec) - convfloat(glob_orig_start_sec) < convfloat(glob_max_sec) do if reached_interval() then omniout_str(INFO, " "); omniout_str(INFO, "TOP MAIN SOLVE Loop") end if; glob_iter := glob_iter + 1; glob_clock_sec := elapsed_time_seconds(); glob_current_iter := glob_current_iter + 1; atomall(); display_alot(current_iter); if glob_look_poles then check_for_pole() end if; if reached_interval() then glob_next_display := glob_next_display + glob_display_interval end if; array_x[1] := array_x[1] + glob_h; array_x[2] := glob_h; order_diff := 2; ord := 2; calc_term := 1; iii := glob_max_terms; while calc_term <= iii do array_y_higher_work[2, iii] := array_y_higher[2, iii]/( expt(glob_h, calc_term - 1)* factorial_3(iii - calc_term, iii - 1)); iii := iii - 1 end do; temp_sum := 0.; ord := 2; calc_term := 1; iii := glob_max_terms; while calc_term <= iii do temp_sum := temp_sum + array_y_higher_work[ord, iii]; iii := iii - 1 end do; array_y_higher_work2[ord, calc_term] := temp_sum* expt(glob_h, calc_term - 1)/factorial_1(calc_term - 1); ord := 1; calc_term := 2; iii := glob_max_terms; while calc_term <= iii do array_y_higher_work[1, iii] := array_y_higher[1, iii]/( expt(glob_h, calc_term - 1)* factorial_3(iii - calc_term, iii - 1)); iii := iii - 1 end do; temp_sum := 0.; ord := 1; calc_term := 2; iii := glob_max_terms; while calc_term <= iii do temp_sum := temp_sum + array_y_higher_work[ord, iii]; iii := iii - 1 end do; array_y_higher_work2[ord, calc_term] := temp_sum* expt(glob_h, calc_term - 1)/factorial_1(calc_term - 1); ord := 1; calc_term := 1; iii := glob_max_terms; while calc_term <= iii do array_y_higher_work[1, iii] := array_y_higher[1, iii]/( expt(glob_h, calc_term - 1)* factorial_3(iii - calc_term, iii - 1)); iii := iii - 1 end do; temp_sum := 0.; ord := 1; calc_term := 1; iii := glob_max_terms; while calc_term <= iii do temp_sum := temp_sum + array_y_higher_work[ord, iii]; iii := iii - 1 end do; array_y_higher_work2[ord, calc_term] := temp_sum* expt(glob_h, calc_term - 1)/factorial_1(calc_term - 1); term_no := glob_max_terms; while 1 <= term_no do array_y[term_no] := array_y_higher_work2[1, term_no]; ord := 1; while ord <= order_diff do array_y_higher[ord, term_no] := array_y_higher_work2[ord, term_no]; ord := ord + 1 end do; term_no := term_no - 1 end do end do; omniout_str(ALWAYS, "Finished!"); if glob_max_iter <= glob_iter then omniout_str(ALWAYS, "Maximum Iterations Reached before Solution Completed!") end if; if convfloat(glob_max_sec) <= elapsed_time_seconds() - convfloat(glob_orig_start_sec) then omniout_str(ALWAYS, "Maximum Time Reached before Solution Completed!") end if; glob_clock_sec := elapsed_time_seconds(); omniout_str(INFO, "diff ( y , x , 1 ) = expt(2.0 , sin(x));"); omniout_int(INFO, "Iterations ", 32, glob_iter, 4, " "); prog_report(x_start, x_end); if glob_html_log then logstart(html_log_file); logitem_str(html_log_file, "2013-01-28T13:58:47-06:00"); logitem_str(html_log_file, "Maple"); logitem_str(html_log_file, "expt_c_sin"); logitem_str(html_log_file, "diff ( y , x , 1 ) = expt(2.0 , sin(x));"); logitem_float(html_log_file, x_start); logitem_float(html_log_file, x_end); logitem_float(html_log_file, array_x[1]); logitem_float(html_log_file, glob_h); logitem_integer(html_log_file, Digits); logitem_good_digits(html_log_file, array_last_rel_error[1]); logitem_integer(html_log_file, glob_max_terms); logitem_float(html_log_file, array_1st_rel_error[1]); logitem_float(html_log_file, array_last_rel_error[1]); logitem_integer(html_log_file, glob_iter); logitem_pole(html_log_file, array_type_pole[1]); if array_type_pole[1] = 1 or array_type_pole[1] = 2 then logitem_float(html_log_file, array_pole[1]); logitem_float(html_log_file, array_pole[2]); 0 else logitem_str(html_log_file, "NA"); logitem_str(html_log_file, "NA"); 0 end if; logitem_time(html_log_file, convfloat(glob_clock_sec)); if glob_percent_done < 100.0 then logitem_time(html_log_file, convfloat(glob_total_exp_sec)); 0 else logitem_str(html_log_file, "Done"); 0 end if; log_revs(html_log_file, " 165 "); logitem_str(html_log_file, "expt_c_sin diffeq.mxt"); logitem_str(html_log_file, "expt_c_sin maple results"); logitem_str(html_log_file, "All Tests - All Languages"); logend(html_log_file) end if; if glob_html_log then fclose(html_log_file) end if end if end proc > # End Function number 12 > main(); ##############ECHO OF PROBLEM################# ##############temp/expt_c_sinpostode.ode################# diff ( y , x , 1 ) = expt(2.0 , sin(x)); ! #BEGIN FIRST INPUT BLOCK Digits:=32; max_terms:=30; ! #END FIRST INPUT BLOCK #BEGIN SECOND INPUT BLOCK x_start := 0.1; x_end := 5.0 ; array_y_init[0 + 1] := exact_soln_y(x_start); glob_look_poles := true; glob_max_iter := 1000000; #END SECOND INPUT BLOCK #BEGIN OVERRIDE BLOCK glob_desired_digits_correct:=10; glob_display_interval:=0.001; glob_look_poles:=true; glob_max_iter:=10000000; glob_max_minutes:=3; glob_subiter_method:=3; #END OVERRIDE BLOCK ! #BEGIN USER DEF BLOCK exact_soln_y := proc(x) return(0.0); end; #END USER DEF BLOCK #######END OF ECHO OF PROBLEM################# START of Optimize min_size = 0 min_size = 1 opt_iter = 1 glob_desired_digits_correct = 10 desired_abs_gbl_error = 1.0000000000000000000000000000000e-10 range = 4.9 estimated_steps = 4900 step_error = 2.0408163265306122448979591836735e-14 est_needed_step_err = 2.0408163265306122448979591836735e-14 hn_div_ho = 0.5 hn_div_ho_2 = 0.25 hn_div_ho_3 = 0.125 value3 = 4.1274112956085663664504088766457e-91 max_value3 = 4.1274112956085663664504088766457e-91 value3 = 4.1274112956085663664504088766457e-91 best_h = 0.001 START of Soultion TOP MAIN SOLVE Loop x[1] = 0.1 y[1] (analytic) = 0 y[1] (numeric) = 0 absolute error = 0 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.306 Order of pole = 8.008 TOP MAIN SOLVE Loop x[1] = 0.101 y[1] (analytic) = 0 y[1] (numeric) = 0.0010720193380329349192810116440312 absolute error = 0.0010720193380329349192810116440312 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.306 Order of pole = 8.009 TOP MAIN SOLVE Loop x[1] = 0.102 y[1] (analytic) = 0 y[1] (numeric) = 0.0021447782113560983063592174385777 absolute error = 0.0021447782113560983063592174385777 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.306 Order of pole = 8.01 TOP MAIN SOLVE Loop x[1] = 0.103 y[1] (analytic) = 0 y[1] (numeric) = 0.0032182770547439766027503246911545 absolute error = 0.0032182770547439766027503246911545 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.305 Order of pole = 8.011 TOP MAIN SOLVE Loop x[1] = 0.104 y[1] (analytic) = 0 y[1] (numeric) = 0.0042925163024262427451174030068774 absolute error = 0.0042925163024262427451174030068774 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.305 Order of pole = 8.013 TOP MAIN SOLVE Loop memory used=3.8MB, alloc=2.9MB, time=0.31 x[1] = 0.105 y[1] (analytic) = 0 y[1] (numeric) = 0.005367496388085832497026257379124 absolute error = 0.005367496388085832497026257379124 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.305 Order of pole = 8.014 TOP MAIN SOLVE Loop x[1] = 0.106 y[1] (analytic) = 0 y[1] (numeric) = 0.0064432177448570187658148191232822 absolute error = 0.0064432177448570187658148191232822 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.305 Order of pole = 8.015 TOP MAIN SOLVE Loop x[1] = 0.107 y[1] (analytic) = 0 y[1] (numeric) = 0.0075196808053234839104417071837103 absolute error = 0.0075196808053234839104417071837103 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.305 Order of pole = 8.017 TOP MAIN SOLVE Loop x[1] = 0.108 y[1] (analytic) = 0 y[1] (numeric) = 0.0085968860015163900462065881242551 absolute error = 0.0085968860015163900462065881242551 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.305 Order of pole = 8.018 TOP MAIN SOLVE Loop x[1] = 0.109 y[1] (analytic) = 0 y[1] (numeric) = 0.009674833764912447352262461605051 absolute error = 0.009674833764912447352262461605051 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.305 Order of pole = 8.019 TOP MAIN SOLVE Loop x[1] = 0.11 y[1] (analytic) = 0 y[1] (numeric) = 0.0107535245264319803878675191323 absolute error = 0.0107535245264319803878675191323 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.305 Order of pole = 8.021 TOP MAIN SOLVE Loop x[1] = 0.111 y[1] (analytic) = 0 y[1] (numeric) = 0.01183295871643699242335176712182 absolute error = 0.01183295871643699242335176712182 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.304 Order of pole = 8.022 TOP MAIN SOLVE Loop x[1] = 0.112 y[1] (analytic) = 0 y[1] (numeric) = 0.012913136764729227791801170618912 absolute error = 0.012913136764729227791801170618912 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.304 Order of pole = 8.024 TOP MAIN SOLVE Loop x[1] = 0.113 y[1] (analytic) = 0 y[1] (numeric) = 0.013994059100548232267489661143206 absolute error = 0.013994059100548232267489661143206 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.304 Order of pole = 8.025 TOP MAIN SOLVE Loop x[1] = 0.114 y[1] (analytic) = 0 y[1] (numeric) = 0.015075726152569411477116960853303 absolute error = 0.015075726152569411477116960853303 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.304 Order of pole = 8.027 TOP MAIN SOLVE Loop memory used=7.6MB, alloc=3.9MB, time=0.68 x[1] = 0.115 y[1] (analytic) = 0 y[1] (numeric) = 0.016158138348902087349937805327006 absolute error = 0.016158138348902087349937805327006 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.304 Order of pole = 8.028 TOP MAIN SOLVE Loop x[1] = 0.116 y[1] (analytic) = 0 y[1] (numeric) = 0.017241296117087552612895798502605 absolute error = 0.017241296117087552612895798502605 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.304 Order of pole = 8.03 TOP MAIN SOLVE Loop x[1] = 0.117 y[1] (analytic) = 0 y[1] (numeric) = 0.01832519988409712333690280549799 absolute error = 0.01832519988409712333690280549799 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.304 Order of pole = 8.032 TOP MAIN SOLVE Loop x[1] = 0.118 y[1] (analytic) = 0 y[1] (numeric) = 0.019409850076330189540432481889228 absolute error = 0.019409850076330189540432481889228 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.304 Order of pole = 8.033 TOP MAIN SOLVE Loop x[1] = 0.119 y[1] (analytic) = 0 y[1] (numeric) = 0.020495247119612263856624251359832 absolute error = 0.020495247119612263856624251359832 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.304 Order of pole = 8.035 TOP MAIN SOLVE Loop x[1] = 0.12 y[1] (analytic) = 0 y[1] (numeric) = 0.021581391439193028270121777196318 absolute error = 0.021581391439193028270121777196318 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.304 Order of pole = 8.037 TOP MAIN SOLVE Loop x[1] = 0.121 y[1] (analytic) = 0 y[1] (numeric) = 0.022668283459744378929897726674027 absolute error = 0.022668283459744378929897726674027 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.038 TOP MAIN SOLVE Loop x[1] = 0.122 y[1] (analytic) = 0 y[1] (numeric) = 0.023755923605358469044344400717896 absolute error = 0.023755923605358469044344400717896 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.04 TOP MAIN SOLVE Loop x[1] = 0.123 y[1] (analytic) = 0 y[1] (numeric) = 0.024844312299545749864937594103188 absolute error = 0.024844312299545749864937594103188 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.042 TOP MAIN SOLVE Loop x[1] = 0.124 y[1] (analytic) = 0 y[1] (numeric) = 0.025933449965233009764808863647594 absolute error = 0.025933449965233009764808863647594 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.044 TOP MAIN SOLVE Loop x[1] = 0.125 y[1] (analytic) = 0 y[1] (numeric) = 0.027023337024761411418589213104116 absolute error = 0.027023337024761411418589213104116 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.046 TOP MAIN SOLVE Loop memory used=11.4MB, alloc=4.1MB, time=1.06 x[1] = 0.126 y[1] (analytic) = 0 y[1] (numeric) = 0.028113973899884527089915053558241 absolute error = 0.028113973899884527089915053558241 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.048 TOP MAIN SOLVE Loop x[1] = 0.127 y[1] (analytic) = 0 y[1] (numeric) = 0.029205361011766372033015166826839 absolute error = 0.029205361011766372033015166826839 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.05 TOP MAIN SOLVE Loop x[1] = 0.128 y[1] (analytic) = 0 y[1] (numeric) = 0.030297498780979436014825286412618 absolute error = 0.030297498780979436014825286412618 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.052 TOP MAIN SOLVE Loop x[1] = 0.129 y[1] (analytic) = 0 y[1] (numeric) = 0.0313903876275027129641048157487 absolute error = 0.0313903876275027129641048157487 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.054 TOP MAIN SOLVE Loop x[1] = 0.13 y[1] (analytic) = 0 y[1] (numeric) = 0.032484027970719728754058126533752 absolute error = 0.032484027970719728754058126533752 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.056 TOP MAIN SOLVE Loop x[1] = 0.131 y[1] (analytic) = 0 y[1] (numeric) = 0.033578420229416567124990820669138 absolute error = 0.033578420229416567124990820669138 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.058 TOP MAIN SOLVE Loop x[1] = 0.132 y[1] (analytic) = 0 y[1] (numeric) = 0.034673564821779893753559297424689 absolute error = 0.034673564821779893753559297424689 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.06 TOP MAIN SOLVE Loop x[1] = 0.133 y[1] (analytic) = 0 y[1] (numeric) = 0.035769462165394978475199942737113 absolute error = 0.035769462165394978475199942737113 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.062 TOP MAIN SOLVE Loop x[1] = 0.134 y[1] (analytic) = 0 y[1] (numeric) = 0.036866112677243715666352249741866 absolute error = 0.036866112677243715666352249741866 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.064 TOP MAIN SOLVE Loop x[1] = 0.135 y[1] (analytic) = 0 y[1] (numeric) = 0.037963516773702642793118188511844 absolute error = 0.037963516773702642793118188511844 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.066 TOP MAIN SOLVE Loop x[1] = 0.136 y[1] (analytic) = 0 y[1] (numeric) = 0.039061674870540957133028168279776 absolute error = 0.039061674870540957133028168279776 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.069 TOP MAIN SOLVE Loop x[1] = 0.137 y[1] (analytic) = 0 y[1] (numeric) = 0.040160587382918530676611976910164 absolute error = 0.040160587382918530676611976910164 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.071 TOP MAIN SOLVE Loop memory used=15.2MB, alloc=4.3MB, time=1.45 x[1] = 0.138 y[1] (analytic) = 0 y[1] (numeric) = 0.04126025472538392321550113981456 absolute error = 0.04126025472538392321550113981456 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.073 TOP MAIN SOLVE Loop x[1] = 0.139 y[1] (analytic) = 0 y[1] (numeric) = 0.04236067731187239362381721362337 absolute error = 0.04236067731187239362381721362337 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.075 TOP MAIN SOLVE Loop x[1] = 0.14 y[1] (analytic) = 0 y[1] (numeric) = 0.043461855555703909339628618490016 absolute error = 0.043461855555703909339628618490016 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.078 TOP MAIN SOLVE Loop x[1] = 0.141 y[1] (analytic) = 0 y[1] (numeric) = 0.044563789869581154053286716659826 absolute error = 0.044563789869581154053286716659826 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.08 TOP MAIN SOLVE Loop x[1] = 0.142 y[1] (analytic) = 0 y[1] (numeric) = 0.045666480665587533609479963636314 absolute error = 0.045666480665587533609479963636314 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.082 TOP MAIN SOLVE Loop x[1] = 0.143 y[1] (analytic) = 0 y[1] (numeric) = 0.046769928355185180129873091670498 absolute error = 0.046769928355185180129873091670498 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.085 TOP MAIN SOLVE Loop x[1] = 0.144 y[1] (analytic) = 0 y[1] (numeric) = 0.047874133349212954363226433132531 absolute error = 0.047874133349212954363226433132531 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.087 TOP MAIN SOLVE Loop x[1] = 0.145 y[1] (analytic) = 0 y[1] (numeric) = 0.048979096057884446269918653346326 absolute error = 0.048979096057884446269918653346326 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.09 TOP MAIN SOLVE Loop x[1] = 0.146 y[1] (analytic) = 0 y[1] (numeric) = 0.050084816890785973847824338423173 absolute error = 0.050084816890785973847824338423173 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.092 TOP MAIN SOLVE Loop x[1] = 0.147 y[1] (analytic) = 0 y[1] (numeric) = 0.051191296256874580206526073264842 absolute error = 0.051191296256874580206526073264842 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.095 TOP MAIN SOLVE Loop x[1] = 0.148 y[1] (analytic) = 0 y[1] (numeric) = 0.052298534564476028896868847964719 absolute error = 0.052298534564476028896868847964719 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.097 TOP MAIN SOLVE Loop memory used=19.0MB, alloc=4.3MB, time=1.83 x[1] = 0.149 y[1] (analytic) = 0 y[1] (numeric) = 0.05340653222128279750289284706053 absolute error = 0.05340653222128279750289284706053 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.1 TOP MAIN SOLVE Loop x[1] = 0.15 y[1] (analytic) = 0 y[1] (numeric) = 0.054515289634352069503208905226701 absolute error = 0.054515289634352069503208905226701 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.102 TOP MAIN SOLVE Loop x[1] = 0.151 y[1] (analytic) = 0 y[1] (numeric) = 0.055624807210103724408909154780047 absolute error = 0.055624807210103724408909154780047 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.105 TOP MAIN SOLVE Loop x[1] = 0.152 y[1] (analytic) = 0 y[1] (numeric) = 0.056735085354318326185133644549936 absolute error = 0.056735085354318326185133644549936 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.108 TOP MAIN SOLVE Loop x[1] = 0.153 y[1] (analytic) = 0 y[1] (numeric) = 0.057846124472135109963441975973154 absolute error = 0.057846124472135109963441975973154 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.11 TOP MAIN SOLVE Loop x[1] = 0.154 y[1] (analytic) = 0 y[1] (numeric) = 0.05895792496804996705216728045333 absolute error = 0.05895792496804996705216728045333 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.113 TOP MAIN SOLVE Loop x[1] = 0.155 y[1] (analytic) = 0 y[1] (numeric) = 0.060070487245913428251958151812942 absolute error = 0.060070487245913428251958151812942 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.116 TOP MAIN SOLVE Loop x[1] = 0.156 y[1] (analytic) = 0 y[1] (numeric) = 0.061183811708928645483742448799664 absolute error = 0.061183811708928645483742448799664 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.119 TOP MAIN SOLVE Loop x[1] = 0.157 y[1] (analytic) = 0 y[1] (numeric) = 0.062297898759649371736375194824427 absolute error = 0.062297898759649371736375194824427 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.121 TOP MAIN SOLVE Loop x[1] = 0.158 y[1] (analytic) = 0 y[1] (numeric) = 0.063412748799977939341261125141201 absolute error = 0.063412748799977939341261125141201 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.124 TOP MAIN SOLVE Loop x[1] = 0.159 y[1] (analytic) = 0 y[1] (numeric) = 0.064528362231163236581270765262666 absolute error = 0.064528362231163236581270765262666 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.127 TOP MAIN SOLVE Loop x[1] = 0.16 y[1] (analytic) = 0 y[1] (numeric) = 0.065644739453798682641297268275036 absolute error = 0.065644739453798682641297268275036 relative error = -1 % Correct digits = -1 h = 0.001 memory used=22.8MB, alloc=4.3MB, time=2.22 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.13 TOP MAIN SOLVE Loop x[1] = 0.161 y[1] (analytic) = 0 y[1] (numeric) = 0.066761880867820200907829592601948 absolute error = 0.066761880867820200907829592601948 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.133 TOP MAIN SOLVE Loop x[1] = 0.162 y[1] (analytic) = 0 y[1] (numeric) = 0.06787978687250419062494596540322 absolute error = 0.06787978687250419062494596540322 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.136 TOP MAIN SOLVE Loop x[1] = 0.163 y[1] (analytic) = 0 y[1] (numeric) = 0.068998457866465496914159949910213 absolute error = 0.068998457866465496914159949910213 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.138 TOP MAIN SOLVE Loop x[1] = 0.164 y[1] (analytic) = 0 y[1] (numeric) = 0.070117894247655379165579817325354 absolute error = 0.070117894247655379165579817325354 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.141 TOP MAIN SOLVE Loop x[1] = 0.165 y[1] (analytic) = 0 y[1] (numeric) = 0.071238096413359477807870315178194 absolute error = 0.071238096413359477807870315178194 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.144 TOP MAIN SOLVE Loop x[1] = 0.166 y[1] (analytic) = 0 y[1] (numeric) = 0.072359064760195779464534323962168 absolute error = 0.072359064760195779464534323962168 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.147 TOP MAIN SOLVE Loop x[1] = 0.167 y[1] (analytic) = 0 y[1] (numeric) = 0.073480799684112580504060302202353 absolute error = 0.073480799684112580504060302202353 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.15 TOP MAIN SOLVE Loop x[1] = 0.168 y[1] (analytic) = 0 y[1] (numeric) = 0.07460330158038644899150983655117 absolute error = 0.07460330158038644899150983655117 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.153 TOP MAIN SOLVE Loop x[1] = 0.169 y[1] (analytic) = 0 y[1] (numeric) = 0.075726570843620185049148037801737 absolute error = 0.075726570843620185049148037801737 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.156 TOP MAIN SOLVE Loop x[1] = 0.17 y[1] (analytic) = 0 y[1] (numeric) = 0.076850607867740779633747955571862 absolute error = 0.076850607867740779633747955571862 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.304 Order of pole = 8.159 TOP MAIN SOLVE Loop x[1] = 0.171 y[1] (analytic) = 0 y[1] (numeric) = 0.077975413045997371738228623569249 absolute error = 0.077975413045997371738228623569249 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.304 Order of pole = 8.162 TOP MAIN SOLVE Loop memory used=26.7MB, alloc=4.3MB, time=2.62 x[1] = 0.172 y[1] (analytic) = 0 y[1] (numeric) = 0.079100986770959204025314793523087 absolute error = 0.079100986770959204025314793523087 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.304 Order of pole = 8.165 TOP MAIN SOLVE Loop x[1] = 0.173 y[1] (analytic) = 0 y[1] (numeric) = 0.080227329434513576900934868780736 absolute error = 0.080227329434513576900934868780736 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.304 Order of pole = 8.169 TOP MAIN SOLVE Loop x[1] = 0.174 y[1] (analytic) = 0 y[1] (numeric) = 0.081354441427863801035102007941702 absolute error = 0.081354441427863801035102007941702 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.304 Order of pole = 8.172 TOP MAIN SOLVE Loop x[1] = 0.175 y[1] (analytic) = 0 y[1] (numeric) = 0.082482323141527148338051834454672 absolute error = 0.082482323141527148338051834454672 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.304 Order of pole = 8.175 TOP MAIN SOLVE Loop x[1] = 0.176 y[1] (analytic) = 0 y[1] (numeric) = 0.083610974965332801399438659556276 absolute error = 0.083610974965332801399438659556276 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.304 Order of pole = 8.178 TOP MAIN SOLVE Loop x[1] = 0.177 y[1] (analytic) = 0 y[1] (numeric) = 0.084740397288419801398420603000875 absolute error = 0.084740397288419801398420603000875 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.304 Order of pole = 8.181 TOP MAIN SOLVE Loop x[1] = 0.178 y[1] (analytic) = 0 y[1] (numeric) = 0.085870590499234994492492478436495 absolute error = 0.085870590499234994492492478436495 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.304 Order of pole = 8.184 TOP MAIN SOLVE Loop x[1] = 0.179 y[1] (analytic) = 0 y[1] (numeric) = 0.087001554985530976692953797739699 absolute error = 0.087001554985530976692953797739699 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.304 Order of pole = 8.188 TOP MAIN SOLVE Loop x[1] = 0.18 y[1] (analytic) = 0 y[1] (numeric) = 0.088133291134364037234927740847435 absolute error = 0.088133291134364037234927740847435 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.304 Order of pole = 8.191 TOP MAIN SOLVE Loop x[1] = 0.181 y[1] (analytic) = 0 y[1] (numeric) = 0.089265799332092100449875434331616 absolute error = 0.089265799332092100449875434331616 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.304 Order of pole = 8.194 TOP MAIN SOLVE Loop x[1] = 0.182 y[1] (analytic) = 0 y[1] (numeric) = 0.090399079964372666148578382866356 absolute error = 0.090399079964372666148578382866356 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.305 Order of pole = 8.197 TOP MAIN SOLVE Loop x[1] = 0.183 y[1] (analytic) = 0 memory used=30.5MB, alloc=4.3MB, time=3.01 y[1] (numeric) = 0.091533133416160748522590402551588 absolute error = 0.091533133416160748522590402551588 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.305 Order of pole = 8.201 TOP MAIN SOLVE Loop x[1] = 0.184 y[1] (analytic) = 0 y[1] (numeric) = 0.092667960071706813572188913492409 absolute error = 0.092667960071706813572188913492409 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.305 Order of pole = 8.204 TOP MAIN SOLVE Loop x[1] = 0.185 y[1] (analytic) = 0 y[1] (numeric) = 0.093803560314554715068883960802469 absolute error = 0.093803560314554715068883960802469 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.305 Order of pole = 8.207 TOP MAIN SOLVE Loop x[1] = 0.186 y[1] (analytic) = 0 y[1] (numeric) = 0.094939934527539629060571848012407 absolute error = 0.094939934527539629060571848012407 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.305 Order of pole = 8.21 TOP MAIN SOLVE Loop x[1] = 0.187 y[1] (analytic) = 0 y[1] (numeric) = 0.096077083092785986927448784430601 absolute error = 0.096077083092785986927448784430601 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.305 Order of pole = 8.214 TOP MAIN SOLVE Loop x[1] = 0.188 y[1] (analytic) = 0 y[1] (numeric) = 0.097215006391705406996828468031982 absolute error = 0.097215006391705406996828468031982 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.305 Order of pole = 8.217 TOP MAIN SOLVE Loop x[1] = 0.189 y[1] (analytic) = 0 y[1] (numeric) = 0.098353704804994624725036047649445 absolute error = 0.098353704804994624725036047649445 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.305 Order of pole = 8.22 TOP MAIN SOLVE Loop x[1] = 0.19 y[1] (analytic) = 0 y[1] (numeric) = 0.099493178712633421454579432318478 absolute error = 0.099493178712633421454579432318478 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.305 Order of pole = 8.224 TOP MAIN SOLVE Loop x[1] = 0.191 y[1] (analytic) = 0 y[1] (numeric) = 0.10063342849388255175482744128532 absolute error = 0.10063342849388255175482744128532 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.305 Order of pole = 8.227 TOP MAIN SOLVE Loop x[1] = 0.192 y[1] (analytic) = 0 y[1] (numeric) = 0.10177445452728166935445281513762 absolute error = 0.10177445452728166935445281513762 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.306 Order of pole = 8.231 TOP MAIN SOLVE Loop x[1] = 0.193 y[1] (analytic) = 0 y[1] (numeric) = 0.10291625719064725167392663645862 absolute error = 0.10291625719064725167392663645862 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.306 Order of pole = 8.234 TOP MAIN SOLVE Loop x[1] = 0.194 y[1] (analytic) = 0 y[1] (numeric) = 0.10405883686107052296637923704528 absolute error = 0.10405883686107052296637923704528 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.306 Order of pole = 8.237 TOP MAIN SOLVE Loop memory used=34.3MB, alloc=4.4MB, time=3.40 x[1] = 0.195 y[1] (analytic) = 0 y[1] (numeric) = 0.10520219391491537607517119777004 absolute error = 0.10520219391491537607517119777004 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.306 Order of pole = 8.241 TOP MAIN SOLVE Loop x[1] = 0.196 y[1] (analytic) = 0 y[1] (numeric) = 0.10634632872781629281654657630703 absolute error = 0.10634632872781629281654657630703 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.306 Order of pole = 8.244 TOP MAIN SOLVE Loop x[1] = 0.197 y[1] (analytic) = 0 y[1] (numeric) = 0.10749124167467626299576902688806 absolute error = 0.10749124167467626299576902688806 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.306 Order of pole = 8.248 TOP MAIN SOLVE Loop x[1] = 0.198 y[1] (analytic) = 0 y[1] (numeric) = 0.10863693312966470206517000470147 absolute error = 0.10863693312966470206517000470147 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.306 Order of pole = 8.251 TOP MAIN SOLVE Loop x[1] = 0.199 y[1] (analytic) = 0 y[1] (numeric) = 0.10978340346621536743256677519738 absolute error = 0.10978340346621536743256677519738 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.306 Order of pole = 8.255 TOP MAIN SOLVE Loop x[1] = 0.2 y[1] (analytic) = 0 y[1] (numeric) = 0.11093065305702427342853647511501 absolute error = 0.11093065305702427342853647511501 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.306 Order of pole = 8.258 TOP MAIN SOLVE Loop x[1] = 0.201 y[1] (analytic) = 0 y[1] (numeric) = 0.11207868227404760494106099719903 absolute error = 0.11207868227404760494106099719903 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.307 Order of pole = 8.261 TOP MAIN SOLVE Loop x[1] = 0.202 y[1] (analytic) = 0 y[1] (numeric) = 0.11322749148849962972608599401912 absolute error = 0.11322749148849962972608599401912 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.307 Order of pole = 8.265 TOP MAIN SOLVE Loop x[1] = 0.203 y[1] (analytic) = 0 y[1] (numeric) = 0.11437708107085060940256581774673 absolute error = 0.11437708107085060940256581774673 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.307 Order of pole = 8.268 TOP MAIN SOLVE Loop x[1] = 0.204 y[1] (analytic) = 0 y[1] (numeric) = 0.11552745139082470914059473186997 absolute error = 0.11552745139082470914059473186997 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.307 Order of pole = 8.272 TOP MAIN SOLVE Loop x[1] = 0.205 y[1] (analytic) = 0 y[1] (numeric) = 0.11667860281739790605125324733668 absolute error = 0.11667860281739790605125324733668 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.307 Order of pole = 8.275 TOP MAIN SOLVE Loop x[1] = 0.206 y[1] (analytic) = 0 y[1] (numeric) = 0.11783053571879589628682694920027 absolute error = 0.11783053571879589628682694920027 relative error = -1 % Correct digits = -1 h = 0.001 memory used=38.1MB, alloc=4.4MB, time=3.80 Complex estimate of poles used for equation 1 Radius of convergence = 4.307 Order of pole = 8.279 TOP MAIN SOLVE Loop x[1] = 0.207 y[1] (analytic) = 0 y[1] (numeric) = 0.11898325046249200086008369019574 absolute error = 0.11898325046249200086008369019574 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.307 Order of pole = 8.282 TOP MAIN SOLVE Loop x[1] = 0.208 y[1] (analytic) = 0 y[1] (numeric) = 0.12013674741520507019132353448639 absolute error = 0.12013674741520507019132353448639 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.307 Order of pole = 8.286 TOP MAIN SOLVE Loop x[1] = 0.209 y[1] (analytic) = 0 y[1] (numeric) = 0.12129102694289738739194433778618 absolute error = 0.12129102694289738739194433778618 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.308 Order of pole = 8.289 TOP MAIN SOLVE Loop x[1] = 0.21 y[1] (analytic) = 0 y[1] (numeric) = 0.12244608941077257029329434886891 absolute error = 0.12244608941077257029329434886891 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.308 Order of pole = 8.293 TOP MAIN SOLVE Loop x[1] = 0.211 y[1] (analytic) = 0 y[1] (numeric) = 0.12360193518327347222961171181247 absolute error = 0.12360193518327347222961171181247 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.308 Order of pole = 8.296 TOP MAIN SOLVE Loop x[1] = 0.212 y[1] (analytic) = 0 y[1] (numeric) = 0.12475856462408008158387923788378 absolute error = 0.12475856462408008158387923788378 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.308 Order of pole = 8.3 TOP MAIN SOLVE Loop x[1] = 0.213 y[1] (analytic) = 0 y[1] (numeric) = 0.12591597809610742010545130043461 absolute error = 0.12591597809610742010545130043461 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.308 Order of pole = 8.303 TOP MAIN SOLVE Loop x[1] = 0.214 y[1] (analytic) = 0 y[1] (numeric) = 0.1270741759615034400083381852381 absolute error = 0.1270741759615034400083381852381 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.308 Order of pole = 8.307 TOP MAIN SOLVE Loop x[1] = 0.215 y[1] (analytic) = 0 y[1] (numeric) = 0.1282331585816469198590617020361 absolute error = 0.1282331585816469198590617020361 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.308 Order of pole = 8.31 TOP MAIN SOLVE Loop x[1] = 0.216 y[1] (analytic) = 0 y[1] (numeric) = 0.12939292631714535926302433037444 absolute error = 0.12939292631714535926302433037444 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.308 Order of pole = 8.314 TOP MAIN SOLVE Loop x[1] = 0.217 y[1] (analytic) = 0 y[1] (numeric) = 0.13055347952783287235836263376084 absolute error = 0.13055347952783287235836263376084 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.309 Order of pole = 8.317 TOP MAIN SOLVE Loop memory used=41.9MB, alloc=4.4MB, time=4.19 x[1] = 0.218 y[1] (analytic) = 0 y[1] (numeric) = 0.13171481857276808012628413047281 absolute error = 0.13171481857276808012628413047281 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.309 Order of pole = 8.321 TOP MAIN SOLVE Loop x[1] = 0.219 y[1] (analytic) = 0 y[1] (numeric) = 0.13287694381023200152691525665333 absolute error = 0.13287694381023200152691525665333 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.309 Order of pole = 8.324 TOP MAIN SOLVE Loop x[1] = 0.22 y[1] (analytic) = 0 y[1] (numeric) = 0.13403985559772594346971649734231 absolute error = 0.13403985559772594346971649734231 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.309 Order of pole = 8.328 TOP MAIN SOLVE Loop x[1] = 0.221 y[1] (analytic) = 0 y[1] (numeric) = 0.13520355429196938962754919348371 absolute error = 0.13520355429196938962754919348371 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.309 Order of pole = 8.331 TOP MAIN SOLVE Loop x[1] = 0.222 y[1] (analytic) = 0 y[1] (numeric) = 0.13636804024889788810350695740209 absolute error = 0.13636804024889788810350695740209 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.309 Order of pole = 8.335 TOP MAIN SOLVE Loop x[1] = 0.223 y[1] (analytic) = 0 y[1] (numeric) = 0.1375333138236609379596530454378 absolute error = 0.1375333138236609379596530454378 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.309 Order of pole = 8.338 TOP MAIN SOLVE Loop x[1] = 0.224 y[1] (analytic) = 0 y[1] (numeric) = 0.13869937537061987461683344404688 absolute error = 0.13869937537061987461683344404688 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.309 Order of pole = 8.342 TOP MAIN SOLVE Loop x[1] = 0.225 y[1] (analytic) = 0 y[1] (numeric) = 0.13986622524334575413476382438717 absolute error = 0.13986622524334575413476382438717 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.31 Order of pole = 8.345 TOP MAIN SOLVE Loop x[1] = 0.226 y[1] (analytic) = 0 y[1] (numeric) = 0.14103386379461723638161690990464 absolute error = 0.14103386379461723638161690990464 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.31 Order of pole = 8.349 TOP MAIN SOLVE Loop x[1] = 0.227 y[1] (analytic) = 0 y[1] (numeric) = 0.1422022913764184671023651813793 absolute error = 0.1422022913764184671023651813793 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.31 Order of pole = 8.352 TOP MAIN SOLVE Loop x[1] = 0.228 y[1] (analytic) = 0 y[1] (numeric) = 0.14337150833993695889516221396498 absolute error = 0.14337150833993695889516221396498 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.31 Order of pole = 8.356 TOP MAIN SOLVE Loop x[1] = 0.229 y[1] (analytic) = 0 y[1] (numeric) = 0.14454151503556147110507430063618 absolute error = 0.14454151503556147110507430063618 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.31 Order of pole = 8.359 memory used=45.7MB, alloc=4.4MB, time=4.59 TOP MAIN SOLVE Loop x[1] = 0.23 y[1] (analytic) = 0 y[1] (numeric) = 0.14571231181287988864450236581277 absolute error = 0.14571231181287988864450236581277 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.31 Order of pole = 8.363 TOP MAIN SOLVE Loop x[1] = 0.231 y[1] (analytic) = 0 y[1] (numeric) = 0.14688389902067709974966251144337 absolute error = 0.14688389902067709974966251144337 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.31 Order of pole = 8.366 TOP MAIN SOLVE Loop x[1] = 0.232 y[1] (analytic) = 0 y[1] (numeric) = 0.14805627700693287268252186516272 absolute error = 0.14805627700693287268252186516272 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.31 Order of pole = 8.37 TOP MAIN SOLVE Loop x[1] = 0.233 y[1] (analytic) = 0 y[1] (numeric) = 0.14922944611881973138761471597058 absolute error = 0.14922944611881973138761471597058 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.311 Order of pole = 8.373 TOP MAIN SOLVE Loop x[1] = 0.234 y[1] (analytic) = 0 y[1] (numeric) = 0.15040340670270083011319222687947 absolute error = 0.15040340670270083011319222687947 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.311 Order of pole = 8.377 TOP MAIN SOLVE Loop x[1] = 0.235 y[1] (analytic) = 0 y[1] (numeric) = 0.15157815910412782700618730581771 absolute error = 0.15157815910412782700618730581771 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.311 Order of pole = 8.38 TOP MAIN SOLVE Loop x[1] = 0.236 y[1] (analytic) = 0 y[1] (numeric) = 0.15275370366783875669050449542152 absolute error = 0.15275370366783875669050449542152 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.311 Order of pole = 8.383 TOP MAIN SOLVE Loop x[1] = 0.237 y[1] (analytic) = 0 y[1] (numeric) = 0.15393004073775590183817300887486 absolute error = 0.15393004073775590183817300887486 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.311 Order of pole = 8.387 TOP MAIN SOLVE Loop x[1] = 0.238 y[1] (analytic) = 0 y[1] (numeric) = 0.15510717065698366374292929232641 absolute error = 0.15510717065698366374292929232641 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.311 Order of pole = 8.39 TOP MAIN SOLVE Loop x[1] = 0.239 y[1] (analytic) = 0 y[1] (numeric) = 0.1562850937678064319058237342968 absolute error = 0.1562850937678064319058237342968 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.311 Order of pole = 8.394 TOP MAIN SOLVE Loop x[1] = 0.24 y[1] (analytic) = 0 y[1] (numeric) = 0.15746381041168645264247436855315 absolute error = 0.15746381041168645264247436855315 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.311 Order of pole = 8.397 TOP MAIN SOLVE Loop memory used=49.5MB, alloc=4.4MB, time=4.99 x[1] = 0.241 y[1] (analytic) = 0 y[1] (numeric) = 0.15864332092926169672161862883737 absolute error = 0.15864332092926169672161862883737 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.311 Order of pole = 8.4 TOP MAIN SOLVE Loop x[1] = 0.242 y[1] (analytic) = 0 y[1] (numeric) = 0.15982362566034372604464241125569 absolute error = 0.15982362566034372604464241125569 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.312 Order of pole = 8.404 TOP MAIN SOLVE Loop x[1] = 0.243 y[1] (analytic) = 0 y[1] (numeric) = 0.16100472494391555937579388273315 absolute error = 0.16100472494391555937579388273315 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.312 Order of pole = 8.407 TOP MAIN SOLVE Loop x[1] = 0.244 y[1] (analytic) = 0 y[1] (numeric) = 0.16218661911812953713281764137247 absolute error = 0.16218661911812953713281764137247 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.312 Order of pole = 8.41 TOP MAIN SOLVE Loop x[1] = 0.245 y[1] (analytic) = 0 y[1] (numeric) = 0.16336930852030518524777298649491 absolute error = 0.16336930852030518524777298649491 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.312 Order of pole = 8.414 TOP MAIN SOLVE Loop x[1] = 0.246 y[1] (analytic) = 0 y[1] (numeric) = 0.1645527934869270781078281922435 absolute error = 0.1645527934869270781078281922435 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.312 Order of pole = 8.417 TOP MAIN SOLVE Loop x[1] = 0.247 y[1] (analytic) = 0 y[1] (numeric) = 0.16573707435364270058585079855782 absolute error = 0.16573707435364270058585079855782 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.312 Order of pole = 8.42 TOP MAIN SOLVE Loop x[1] = 0.248 y[1] (analytic) = 0 y[1] (numeric) = 0.16692215145526030917064203674559 absolute error = 0.16692215145526030917064203674559 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.312 Order of pole = 8.423 TOP MAIN SOLVE Loop x[1] = 0.249 y[1] (analytic) = 0 y[1] (numeric) = 0.1681080251257467922066915934394 absolute error = 0.1681080251257467922066915934394 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.312 Order of pole = 8.427 TOP MAIN SOLVE Loop x[1] = 0.25 y[1] (analytic) = 0 y[1] (numeric) = 0.16929469569822552925335698609626 absolute error = 0.16929469569822552925335698609626 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.312 Order of pole = 8.43 TOP MAIN SOLVE Loop x[1] = 0.251 y[1] (analytic) = 0 y[1] (numeric) = 0.17048216350497424957339987503258 absolute error = 0.17048216350497424957339987503258 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.313 Order of pole = 8.433 TOP MAIN SOLVE Loop x[1] = 0.252 y[1] (analytic) = 0 y[1] (numeric) = 0.1716704288774228897608396709446 absolute error = 0.1716704288774228897608396709446 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.313 Order of pole = 8.436 TOP MAIN SOLVE Loop memory used=53.4MB, alloc=4.4MB, time=5.38 x[1] = 0.253 y[1] (analytic) = 0 y[1] (numeric) = 0.17285949214615145051811281260257 absolute error = 0.17285949214615145051811281260257 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.313 Order of pole = 8.44 TOP MAIN SOLVE Loop x[1] = 0.254 y[1] (analytic) = 0 y[1] (numeric) = 0.17404935364088785259255408658154 absolute error = 0.17404935364088785259255408658154 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.313 Order of pole = 8.443 TOP MAIN SOLVE Loop x[1] = 0.255 y[1] (analytic) = 0 y[1] (numeric) = 0.17524001369050579188224433915913 absolute error = 0.17524001369050579188224433915913 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.313 Order of pole = 8.446 TOP MAIN SOLVE Loop x[1] = 0.256 y[1] (analytic) = 0 y[1] (numeric) = 0.17643147262302259372129688952568 absolute error = 0.17643147262302259372129688952568 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.313 Order of pole = 8.449 TOP MAIN SOLVE Loop x[1] = 0.257 y[1] (analytic) = 0 y[1] (numeric) = 0.17762373076559706635468289286936 absolute error = 0.17762373076559706635468289286936 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.313 Order of pole = 8.452 TOP MAIN SOLVE Loop x[1] = 0.258 y[1] (analytic) = 0 y[1] (numeric) = 0.17881678844452735361272382137166 absolute error = 0.17881678844452735361272382137166 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.313 Order of pole = 8.455 TOP MAIN SOLVE Loop x[1] = 0.259 y[1] (analytic) = 0 y[1] (numeric) = 0.18001064598524878679540713033058 absolute error = 0.18001064598524878679540713033058 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.313 Order of pole = 8.458 TOP MAIN SOLVE Loop x[1] = 0.26 y[1] (analytic) = 0 y[1] (numeric) = 0.18120530371233173577670905517148 absolute error = 0.18120530371233173577670905517148 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.313 Order of pole = 8.461 TOP MAIN SOLVE Loop x[1] = 0.261 y[1] (analytic) = 0 y[1] (numeric) = 0.18240076194947945933913634266122 absolute error = 0.18240076194947945933913634266122 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.313 Order of pole = 8.464 TOP MAIN SOLVE Loop x[1] = 0.262 y[1] (analytic) = 0 y[1] (numeric) = 0.18359702101952595474872655586032 absolute error = 0.18359702101952595474872655586032 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.314 Order of pole = 8.467 TOP MAIN SOLVE Loop x[1] = 0.263 y[1] (analytic) = 0 y[1] (numeric) = 0.18479408124443380658077440688096 absolute error = 0.18479408124443380658077440688096 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.314 Order of pole = 8.47 TOP MAIN SOLVE Loop memory used=57.2MB, alloc=4.4MB, time=5.78 x[1] = 0.264 y[1] (analytic) = 0 y[1] (numeric) = 0.18599194294529203480657936401523 absolute error = 0.18599194294529203480657936401523 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.314 Order of pole = 8.473 TOP MAIN SOLVE Loop x[1] = 0.265 y[1] (analytic) = 0 y[1] (numeric) = 0.18719060644231394215153754990686 absolute error = 0.18719060644231394215153754990686 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.314 Order of pole = 8.476 TOP MAIN SOLVE Loop x[1] = 0.266 y[1] (analytic) = 0 y[1] (numeric) = 0.18839007205483496073492869480927 absolute error = 0.18839007205483496073492869480927 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.314 Order of pole = 8.479 TOP MAIN SOLVE Loop x[1] = 0.267 y[1] (analytic) = 0 y[1] (numeric) = 0.1895903401013104980017766332502 absolute error = 0.1895903401013104980017766332502 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.314 Order of pole = 8.482 TOP MAIN SOLVE Loop x[1] = 0.268 y[1] (analytic) = 0 y[1] (numeric) = 0.19079141089931378195718953325605 absolute error = 0.19079141089931378195718953325605 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.314 Order of pole = 8.485 TOP MAIN SOLVE Loop x[1] = 0.269 y[1] (analytic) = 0 y[1] (numeric) = 0.19199328476553370571361372432269 absolute error = 0.19199328476553370571361372432269 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.314 Order of pole = 8.488 TOP MAIN SOLVE Loop x[1] = 0.27 y[1] (analytic) = 0 y[1] (numeric) = 0.19319596201577267136146264320026 absolute error = 0.19319596201577267136146264320026 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.314 Order of pole = 8.491 TOP MAIN SOLVE Loop x[1] = 0.271 y[1] (analytic) = 0 y[1] (numeric) = 0.1943994429649444331736100449318 absolute error = 0.1943994429649444331736100449318 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.314 Order of pole = 8.494 TOP MAIN SOLVE Loop x[1] = 0.272 y[1] (analytic) = 0 y[1] (numeric) = 0.19560372792707194015426423009375 absolute error = 0.19560372792707194015426423009375 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.314 Order of pole = 8.496 TOP MAIN SOLVE Loop x[1] = 0.273 y[1] (analytic) = 0 y[1] (numeric) = 0.19680881721528517794276761747424 absolute error = 0.19680881721528517794276761747424 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.314 Order of pole = 8.499 TOP MAIN SOLVE Loop x[1] = 0.274 y[1] (analytic) = 0 y[1] (numeric) = 0.19801471114181901008289354413522 absolute error = 0.19801471114181901008289354413522 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.314 Order of pole = 8.502 TOP MAIN SOLVE Loop x[1] = 0.275 y[1] (analytic) = 0 y[1] (numeric) = 0.19922141001801101866823970157978 absolute error = 0.19922141001801101866823970157978 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.314 Order of pole = 8.505 TOP MAIN SOLVE Loop memory used=61.0MB, alloc=4.4MB, time=6.18 x[1] = 0.276 y[1] (analytic) = 0 y[1] (numeric) = 0.20042891415429934437434511722712 absolute error = 0.20042891415429934437434511722712 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.314 Order of pole = 8.507 TOP MAIN SOLVE Loop x[1] = 0.277 y[1] (analytic) = 0 y[1] (numeric) = 0.20163722386022052588818506422705 absolute error = 0.20163722386022052588818506422705 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.314 Order of pole = 8.51 TOP MAIN SOLVE Loop x[1] = 0.278 y[1] (analytic) = 0 y[1] (numeric) = 0.20284633944440733874572572946239 absolute error = 0.20284633944440733874572572946239 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.315 Order of pole = 8.513 TOP MAIN SOLVE Loop x[1] = 0.279 y[1] (analytic) = 0 y[1] (numeric) = 0.20405626121458663358824788903228 absolute error = 0.20405626121458663358824788903228 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.315 Order of pole = 8.515 TOP MAIN SOLVE Loop x[1] = 0.28 y[1] (analytic) = 0 y[1] (numeric) = 0.20526698947757717384817623222064 absolute error = 0.20526698947757717384817623222064 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.315 Order of pole = 8.518 TOP MAIN SOLVE Loop x[1] = 0.281 y[1] (analytic) = 0 y[1] (numeric) = 0.20647852453928747287517833857056 absolute error = 0.20647852453928747287517833857056 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.315 Order of pole = 8.52 TOP MAIN SOLVE Loop x[1] = 0.282 y[1] (analytic) = 0 y[1] (numeric) = 0.20769086670471363051332464784501 absolute error = 0.20769086670471363051332464784501 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.315 Order of pole = 8.523 TOP MAIN SOLVE Loop x[1] = 0.283 y[1] (analytic) = 0 y[1] (numeric) = 0.20890401627793716914012806899462 absolute error = 0.20890401627793716914012806899462 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.315 Order of pole = 8.525 TOP MAIN SOLVE Loop x[1] = 0.284 y[1] (analytic) = 0 y[1] (numeric) = 0.2101179735621228691783091514104 absolute error = 0.2101179735621228691783091514104 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.315 Order of pole = 8.528 TOP MAIN SOLVE Loop x[1] = 0.285 y[1] (analytic) = 0 y[1] (numeric) = 0.21133273885951660409115998934992 absolute error = 0.21133273885951660409115998934992 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.315 Order of pole = 8.53 TOP MAIN SOLVE Loop x[1] = 0.286 y[1] (analytic) = 0 y[1] (numeric) = 0.21254831247144317487240724812439 absolute error = 0.21254831247144317487240724812439 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.315 Order of pole = 8.533 TOP MAIN SOLVE Loop x[1] = 0.287 y[1] (analytic) = 0 y[1] (numeric) = 0.21376469469830414404150188805695 absolute error = 0.21376469469830414404150188805695 relative error = -1 % Correct digits = -1 h = 0.001 memory used=64.8MB, alloc=4.4MB, time=6.58 Complex estimate of poles used for equation 1 Radius of convergence = 4.315 Order of pole = 8.535 TOP MAIN SOLVE Loop x[1] = 0.288 y[1] (analytic) = 0 y[1] (numeric) = 0.21498188583957566915529031900265 absolute error = 0.21498188583957566915529031900265 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.315 Order of pole = 8.538 TOP MAIN SOLVE Loop x[1] = 0.289 y[1] (analytic) = 0 y[1] (numeric) = 0.21619988619380633584704884399243 absolute error = 0.21619988619380633584704884399243 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.315 Order of pole = 8.54 TOP MAIN SOLVE Loop x[1] = 0.29 y[1] (analytic) = 0 y[1] (numeric) = 0.21741869605861499040389034495975 absolute error = 0.21741869605861499040389034495975 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.315 Order of pole = 8.542 TOP MAIN SOLVE Loop x[1] = 0.291 y[1] (analytic) = 0 y[1] (numeric) = 0.21863831573068857189357922616154 absolute error = 0.21863831573068857189357922616154 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.315 Order of pole = 8.544 TOP MAIN SOLVE Loop x[1] = 0.292 y[1] (analytic) = 0 y[1] (numeric) = 0.21985874550577994385181766144738 absolute error = 0.21985874550577994385181766144738 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.315 Order of pole = 8.547 TOP MAIN SOLVE Loop x[1] = 0.293 y[1] (analytic) = 0 y[1] (numeric) = 0.22107998567870572554109318959302 absolute error = 0.22107998567870572554109318959302 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.315 Order of pole = 8.549 TOP MAIN SOLVE Loop x[1] = 0.294 y[1] (analytic) = 0 y[1] (numeric) = 0.22230203654334412279220466712748 absolute error = 0.22230203654334412279220466712748 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.315 Order of pole = 8.551 TOP MAIN SOLVE Loop x[1] = 0.295 y[1] (analytic) = 0 y[1] (numeric) = 0.22352489839263275843961052007733 absolute error = 0.22352489839263275843961052007733 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.315 Order of pole = 8.553 TOP MAIN SOLVE Loop x[1] = 0.296 y[1] (analytic) = 0 y[1] (numeric) = 0.22474857151856650236177013445673 absolute error = 0.22474857151856650236177013445673 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.315 Order of pole = 8.555 TOP MAIN SOLVE Loop x[1] = 0.297 y[1] (analytic) = 0 y[1] (numeric) = 0.2259730562121953011376760897765 absolute error = 0.2259730562121953011376760897765 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.315 Order of pole = 8.558 TOP MAIN SOLVE Loop x[1] = 0.298 y[1] (analytic) = 0 y[1] (numeric) = 0.22719835276362200733080176995859 absolute error = 0.22719835276362200733080176995859 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.315 Order of pole = 8.56 TOP MAIN SOLVE Loop memory used=68.6MB, alloc=4.4MB, time=6.98 x[1] = 0.299 y[1] (analytic) = 0 y[1] (numeric) = 0.22842446146200020841171568145141 absolute error = 0.22842446146200020841171568145141 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.315 Order of pole = 8.562 TOP MAIN SOLVE Loop x[1] = 0.3 y[1] (analytic) = 0 y[1] (numeric) = 0.22965138259553205533064056867425 absolute error = 0.22965138259553205533064056867425 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.315 Order of pole = 8.564 TOP MAIN SOLVE Loop x[1] = 0.301 y[1] (analytic) = 0 y[1] (numeric) = 0.23087911645146609075126214180197 absolute error = 0.23087911645146609075126214180197 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.315 Order of pole = 8.566 TOP MAIN SOLVE Loop x[1] = 0.302 y[1] (analytic) = 0 y[1] (numeric) = 0.23210766331609507695711892096107 absolute error = 0.23210766331609507695711892096107 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.315 Order of pole = 8.568 TOP MAIN SOLVE Loop x[1] = 0.303 y[1] (analytic) = 0 y[1] (numeric) = 0.23333702347475382344193135377023 absolute error = 0.23333702347475382344193135377023 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.315 Order of pole = 8.569 TOP MAIN SOLVE Loop x[1] = 0.304 y[1] (analytic) = 0 y[1] (numeric) = 0.23456719721181701419525497944819 absolute error = 0.23456719721181701419525497944819 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.315 Order of pole = 8.571 TOP MAIN SOLVE Loop x[1] = 0.305 y[1] (analytic) = 0 y[1] (numeric) = 0.235798184810697034694868992054 absolute error = 0.235798184810697034694868992054 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.315 Order of pole = 8.573 TOP MAIN SOLVE Loop x[1] = 0.306 y[1] (analytic) = 0 y[1] (numeric) = 0.23702998655384179861733809744285 absolute error = 0.23702998655384179861733809744285 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.315 Order of pole = 8.575 TOP MAIN SOLVE Loop x[1] = 0.307 y[1] (analytic) = 0 y[1] (numeric) = 0.23826260272273257427821206283956 absolute error = 0.23826260272273257427821206283956 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.314 Order of pole = 8.577 TOP MAIN SOLVE Loop x[1] = 0.308 y[1] (analytic) = 0 y[1] (numeric) = 0.2394960335978818108133538241732 absolute error = 0.2394960335978818108133538241732 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.314 Order of pole = 8.578 TOP MAIN SOLVE Loop x[1] = 0.309 y[1] (analytic) = 0 y[1] (numeric) = 0.24073027945883096411291344410385 absolute error = 0.24073027945883096411291344410385 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.314 Order of pole = 8.58 TOP MAIN SOLVE Loop x[1] = 0.31 y[1] (analytic) = 0 y[1] (numeric) = 0.24196534058414832251949160262783 absolute error = 0.24196534058414832251949160262783 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.314 Order of pole = 8.582 memory used=72.4MB, alloc=4.4MB, time=7.38 TOP MAIN SOLVE Loop x[1] = 0.311 y[1] (analytic) = 0 y[1] (numeric) = 0.24320121725142683230206265189223 absolute error = 0.24320121725142683230206265189223 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.314 Order of pole = 8.583 TOP MAIN SOLVE Loop x[1] = 0.312 y[1] (analytic) = 0 y[1] (numeric) = 0.24443790973728192291725357700476 absolute error = 0.24443790973728192291725357700476 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.314 Order of pole = 8.585 TOP MAIN SOLVE Loop x[1] = 0.313 y[1] (analytic) = 0 y[1] (numeric) = 0.24567541831734933206960147481107 absolute error = 0.24567541831734933206960147481107 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.314 Order of pole = 8.587 TOP MAIN SOLVE Loop x[1] = 0.314 y[1] (analytic) = 0 y[1] (numeric) = 0.24691374326628293058243839244895 absolute error = 0.24691374326628293058243839244895 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.314 Order of pole = 8.588 TOP MAIN SOLVE Loop x[1] = 0.315 y[1] (analytic) = 0 y[1] (numeric) = 0.24815288485775254709107855659659 absolute error = 0.24815288485775254709107855659659 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.314 Order of pole = 8.59 TOP MAIN SOLVE Loop x[1] = 0.316 y[1] (analytic) = 0 y[1] (numeric) = 0.24939284336444179257000917232997 absolute error = 0.24939284336444179257000917232997 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.314 Order of pole = 8.591 TOP MAIN SOLVE Loop x[1] = 0.317 y[1] (analytic) = 0 y[1] (numeric) = 0.25063361905804588470581207701036 absolute error = 0.25063361905804588470581207701036 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.314 Order of pole = 8.593 TOP MAIN SOLVE Loop x[1] = 0.318 y[1] (analytic) = 0 y[1] (numeric) = 0.2518752122092694721275695992556 absolute error = 0.2518752122092694721275695992556 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.314 Order of pole = 8.594 TOP MAIN SOLVE Loop x[1] = 0.319 y[1] (analytic) = 0 y[1] (numeric) = 0.25311762308782445850653399542559 absolute error = 0.25311762308782445850653399542559 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.314 Order of pole = 8.595 TOP MAIN SOLVE Loop x[1] = 0.32 y[1] (analytic) = 0 y[1] (numeric) = 0.25436085196242782653686581579055 absolute error = 0.25436085196242782653686581579055 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.314 Order of pole = 8.597 TOP MAIN SOLVE Loop x[1] = 0.321 y[1] (analytic) = 0 y[1] (numeric) = 0.25560489910079946180927248926692 absolute error = 0.25560489910079946180927248926692 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.313 Order of pole = 8.598 TOP MAIN SOLVE Loop memory used=76.2MB, alloc=4.4MB, time=7.78 x[1] = 0.322 y[1] (analytic) = 0 y[1] (numeric) = 0.25684976476965997658940430891641 absolute error = 0.25684976476965997658940430891641 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.313 Order of pole = 8.599 TOP MAIN SOLVE Loop x[1] = 0.323 y[1] (analytic) = 0 y[1] (numeric) = 0.25809544923472853351289084992453 absolute error = 0.25809544923472853351289084992453 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.313 Order of pole = 8.6 TOP MAIN SOLVE Loop x[1] = 0.324 y[1] (analytic) = 0 y[1] (numeric) = 0.25934195276072066920892665712126 absolute error = 0.25934195276072066920892665712126 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.313 Order of pole = 8.602 TOP MAIN SOLVE Loop x[1] = 0.325 y[1] (analytic) = 0 y[1] (numeric) = 0.26058927561134611786434079989339 absolute error = 0.26058927561134611786434079989339 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.313 Order of pole = 8.603 TOP MAIN SOLVE Loop x[1] = 0.326 y[1] (analytic) = 0 y[1] (numeric) = 0.26183741804930663474011060817983 absolute error = 0.26183741804930663474011060817983 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.313 Order of pole = 8.604 TOP MAIN SOLVE Loop x[1] = 0.327 y[1] (analytic) = 0 y[1] (numeric) = 0.26308638033629381965230557375185 absolute error = 0.26308638033629381965230557375185 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.313 Order of pole = 8.605 TOP MAIN SOLVE Loop x[1] = 0.328 y[1] (analytic) = 0 y[1] (numeric) = 0.26433616273298694042947302577357 absolute error = 0.26433616273298694042947302577357 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.313 Order of pole = 8.606 TOP MAIN SOLVE Loop x[1] = 0.329 y[1] (analytic) = 0 y[1] (numeric) = 0.26558676549905075635850276832686 absolute error = 0.26558676549905075635850276832686 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.313 Order of pole = 8.607 TOP MAIN SOLVE Loop x[1] = 0.33 y[1] (analytic) = 0 y[1] (numeric) = 0.26683818889313334163103339978249 absolute error = 0.26683818889313334163103339978249 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.312 Order of pole = 8.608 TOP MAIN SOLVE Loop x[1] = 0.331 y[1] (analytic) = 0 y[1] (numeric) = 0.2680904331728639088024885192175 absolute error = 0.2680904331728639088024885192175 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.312 Order of pole = 8.609 TOP MAIN SOLVE Loop x[1] = 0.332 y[1] (analytic) = 0 y[1] (numeric) = 0.26934349859485063227585646312968 absolute error = 0.26934349859485063227585646312968 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.312 Order of pole = 8.61 TOP MAIN SOLVE Loop x[1] = 0.333 y[1] (analytic) = 0 y[1] (numeric) = 0.27059738541467847182235260609545 absolute error = 0.27059738541467847182235260609545 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.312 Order of pole = 8.611 TOP MAIN SOLVE Loop memory used=80.1MB, alloc=4.4MB, time=8.19 x[1] = 0.334 y[1] (analytic) = 0 y[1] (numeric) = 0.27185209388690699615112860136766 absolute error = 0.27185209388690699615112860136766 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.312 Order of pole = 8.612 TOP MAIN SOLVE Loop x[1] = 0.335 y[1] (analytic) = 0 y[1] (numeric) = 0.27310762426506820654021823132643 absolute error = 0.27310762426506820654021823132643 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.312 Order of pole = 8.612 TOP MAIN SOLVE Loop x[1] = 0.336 y[1] (analytic) = 0 y[1] (numeric) = 0.2743639768016643605409347827888 absolute error = 0.2743639768016643605409347827888 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.312 Order of pole = 8.613 TOP MAIN SOLVE Loop x[1] = 0.337 y[1] (analytic) = 0 y[1] (numeric) = 0.27562115174816579576796005806202 absolute error = 0.27562115174816579576796005806202 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.312 Order of pole = 8.614 TOP MAIN SOLVE Loop x[1] = 0.338 y[1] (analytic) = 0 y[1] (numeric) = 0.2768791493550087537873902788997 absolute error = 0.2768791493550087537873902788997 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.311 Order of pole = 8.615 TOP MAIN SOLVE Loop x[1] = 0.339 y[1] (analytic) = 0 y[1] (numeric) = 0.27813796987159320411502923679971 absolute error = 0.27813796987159320411502923679971 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.311 Order of pole = 8.615 TOP MAIN SOLVE Loop x[1] = 0.34 y[1] (analytic) = 0 y[1] (numeric) = 0.27939761354628066833724408897561 absolute error = 0.27939761354628066833724408897561 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.311 Order of pole = 8.616 TOP MAIN SOLVE Loop x[1] = 0.341 y[1] (analytic) = 0 y[1] (numeric) = 0.28065808062639204436672419444837 absolute error = 0.28065808062639204436672419444837 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.311 Order of pole = 8.617 TOP MAIN SOLVE Loop x[1] = 0.342 y[1] (analytic) = 0 y[1] (numeric) = 0.28191937135820543084550832865014 absolute error = 0.28191937135820543084550832865014 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.311 Order of pole = 8.617 TOP MAIN SOLVE Loop x[1] = 0.343 y[1] (analytic) = 0 y[1] (numeric) = 0.2831814859869539517076705073144 absolute error = 0.2831814859869539517076705073144 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.311 Order of pole = 8.618 TOP MAIN SOLVE Loop x[1] = 0.344 y[1] (analytic) = 0 y[1] (numeric) = 0.28444442475682358091407949085421 absolute error = 0.28444442475682358091407949085421 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.31 Order of pole = 8.618 TOP MAIN SOLVE Loop memory used=83.9MB, alloc=4.4MB, time=8.58 x[1] = 0.345 y[1] (analytic) = 0 y[1] (numeric) = 0.28570818791095096737167182850975 absolute error = 0.28570818791095096737167182850975 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.31 Order of pole = 8.619 TOP MAIN SOLVE Loop x[1] = 0.346 y[1] (analytic) = 0 y[1] (numeric) = 0.28697277569142126004970303688388 absolute error = 0.28697277569142126004970303688388 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.31 Order of pole = 8.619 TOP MAIN SOLVE Loop x[1] = 0.347 y[1] (analytic) = 0 y[1] (numeric) = 0.28823818833926593330546618968715 absolute error = 0.28823818833926593330546618968715 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.31 Order of pole = 8.619 TOP MAIN SOLVE Loop x[1] = 0.348 y[1] (analytic) = 0 y[1] (numeric) = 0.28950442609446061243199182418635 absolute error = 0.28950442609446061243199182418635 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.31 Order of pole = 8.62 TOP MAIN SOLVE Loop x[1] = 0.349 y[1] (analytic) = 0 y[1] (numeric) = 0.29077148919592289944026764460009 absolute error = 0.29077148919592289944026764460009 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.309 Order of pole = 8.62 TOP MAIN SOLVE Loop x[1] = 0.35 y[1] (analytic) = 0 y[1] (numeric) = 0.29203937788151019908854102311532 absolute error = 0.29203937788151019908854102311532 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.309 Order of pole = 8.621 TOP MAIN SOLVE Loop x[1] = 0.351 y[1] (analytic) = 0 y[1] (numeric) = 0.29330809238801754517129176491542 absolute error = 0.29330809238801754517129176491542 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.309 Order of pole = 8.621 TOP MAIN SOLVE Loop x[1] = 0.352 y[1] (analytic) = 0 y[1] (numeric) = 0.29457763295117542708048701421834 absolute error = 0.29457763295117542708048701421834 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.309 Order of pole = 8.621 TOP MAIN SOLVE Loop x[1] = 0.353 y[1] (analytic) = 0 y[1] (numeric) = 0.29584799980564761665175453342596 absolute error = 0.29584799980564761665175453342596 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.309 Order of pole = 8.621 TOP MAIN SOLVE Loop x[1] = 0.354 y[1] (analytic) = 0 y[1] (numeric) = 0.29711919318502899530813488668801 absolute error = 0.29711919318502899530813488668801 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.308 Order of pole = 8.621 TOP MAIN SOLVE Loop x[1] = 0.355 y[1] (analytic) = 0 y[1] (numeric) = 0.29839121332184338151409730208855 absolute error = 0.29839121332184338151409730208855 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.308 Order of pole = 8.622 TOP MAIN SOLVE Loop x[1] = 0.356 y[1] (analytic) = 0 y[1] (numeric) = 0.29966406044754135855252817287405 absolute error = 0.29966406044754135855252817287405 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.308 Order of pole = 8.622 TOP MAIN SOLVE Loop memory used=87.7MB, alloc=4.4MB, time=8.98 x[1] = 0.357 y[1] (analytic) = 0 y[1] (numeric) = 0.30093773479249810263742528726233 absolute error = 0.30093773479249810263742528726233 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.308 Order of pole = 8.622 TOP MAIN SOLVE Loop x[1] = 0.358 y[1] (analytic) = 0 y[1] (numeric) = 0.30221223658601121137505494800389 absolute error = 0.30221223658601121137505494800389 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.308 Order of pole = 8.622 TOP MAIN SOLVE Loop x[1] = 0.359 y[1] (analytic) = 0 y[1] (numeric) = 0.30348756605629853258635315661382 absolute error = 0.30348756605629853258635315661382 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.307 Order of pole = 8.622 TOP MAIN SOLVE Loop x[1] = 0.36 y[1] (analytic) = 0 y[1] (numeric) = 0.30476372343049599350337599265618 absolute error = 0.30476372343049599350337599265618 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.307 Order of pole = 8.622 TOP MAIN SOLVE Loop x[1] = 0.361 y[1] (analytic) = 0 y[1] (numeric) = 0.30604070893465543035262821524483 absolute error = 0.30604070893465543035262821524483 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.307 Order of pole = 8.622 TOP MAIN SOLVE Loop x[1] = 0.362 y[1] (analytic) = 0 y[1] (numeric) = 0.30731852279374241833812295162727 absolute error = 0.30731852279374241833812295162727 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.307 Order of pole = 8.622 TOP MAIN SOLVE Loop x[1] = 0.363 y[1] (analytic) = 0 y[1] (numeric) = 0.30859716523163410203704911594259 absolute error = 0.30859716523163410203704911594259 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.306 Order of pole = 8.621 TOP MAIN SOLVE Loop x[1] = 0.364 y[1] (analytic) = 0 y[1] (numeric) = 0.30987663647111702622094691959173 absolute error = 0.30987663647111702622094691959173 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.306 Order of pole = 8.621 TOP MAIN SOLVE Loop x[1] = 0.365 y[1] (analytic) = 0 y[1] (numeric) = 0.31115693673388496711531549272963 absolute error = 0.31115693673388496711531549272963 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.306 Order of pole = 8.621 TOP MAIN SOLVE Loop x[1] = 0.366 y[1] (analytic) = 0 y[1] (numeric) = 0.31243806624053676411060023378438 absolute error = 0.31243806624053676411060023378438 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.306 Order of pole = 8.621 TOP MAIN SOLVE Loop x[1] = 0.367 y[1] (analytic) = 0 y[1] (numeric) = 0.31372002521057415193753104022922 absolute error = 0.31372002521057415193753104022922 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.305 Order of pole = 8.621 TOP MAIN SOLVE Loop x[1] = 0.368 y[1] (analytic) = 0 y[1] (numeric) = 0.31500281386239959331980604867878 absolute error = 0.31500281386239959331980604867878 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.305 Order of pole = 8.62 memory used=91.5MB, alloc=4.4MB, time=9.38 TOP MAIN SOLVE Loop x[1] = 0.369 y[1] (analytic) = 0 y[1] (numeric) = 0.31628643241331411211713892535186 absolute error = 0.31628643241331411211713892535186 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.305 Order of pole = 8.62 TOP MAIN SOLVE Loop x[1] = 0.37 y[1] (analytic) = 0 y[1] (numeric) = 0.31757088107951512697171109863841 absolute error = 0.31757088107951512697171109863841 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.305 Order of pole = 8.62 TOP MAIN SOLVE Loop x[1] = 0.371 y[1] (analytic) = 0 y[1] (numeric) = 0.31885616007609428547109361352825 absolute error = 0.31885616007609428547109361352825 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.304 Order of pole = 8.62 TOP MAIN SOLVE Loop x[1] = 0.372 y[1] (analytic) = 0 y[1] (numeric) = 0.32014226961703529884072651260232 absolute error = 0.32014226961703529884072651260232 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.304 Order of pole = 8.619 TOP MAIN SOLVE Loop x[1] = 0.373 y[1] (analytic) = 0 y[1] (numeric) = 0.3214292099152117771790668097531 absolute error = 0.3214292099152117771790668097531 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.304 Order of pole = 8.619 TOP MAIN SOLVE Loop x[1] = 0.374 y[1] (analytic) = 0 y[1] (numeric) = 0.32271698118238506524853922038843 absolute error = 0.32271698118238506524853922038843 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.304 Order of pole = 8.618 TOP MAIN SOLVE Loop x[1] = 0.375 y[1] (analytic) = 0 y[1] (numeric) = 0.32400558362920207883544684518031 absolute error = 0.32400558362920207883544684518031 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.618 TOP MAIN SOLVE Loop x[1] = 0.376 y[1] (analytic) = 0 y[1] (numeric) = 0.32529501746519314169202197304652 absolute error = 0.32529501746519314169202197304652 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.617 TOP MAIN SOLVE Loop x[1] = 0.377 y[1] (analytic) = 0 y[1] (numeric) = 0.32658528289876982307382007259605 absolute error = 0.32658528289876982307382007259605 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.617 TOP MAIN SOLVE Loop x[1] = 0.378 y[1] (analytic) = 0 y[1] (numeric) = 0.32787638013722277588568287932725 absolute error = 0.32787638013722277588568287932725 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.616 TOP MAIN SOLVE Loop x[1] = 0.379 y[1] (analytic) = 0 y[1] (numeric) = 0.32916830938671957544951925803877 absolute error = 0.32916830938671957544951925803877 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.302 Order of pole = 8.616 TOP MAIN SOLVE Loop memory used=95.3MB, alloc=4.4MB, time=9.78 x[1] = 0.38 y[1] (analytic) = 0 y[1] (numeric) = 0.33046107085230255890717522579507 absolute error = 0.33046107085230255890717522579507 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.302 Order of pole = 8.615 TOP MAIN SOLVE Loop x[1] = 0.381 y[1] (analytic) = 0 y[1] (numeric) = 0.33175466473788666527168715997815 absolute error = 0.33175466473788666527168715997815 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.302 Order of pole = 8.615 TOP MAIN SOLVE Loop x[1] = 0.382 y[1] (analytic) = 0 y[1] (numeric) = 0.33304909124625727614023478805296 absolute error = 0.33304909124625727614023478805296 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.301 Order of pole = 8.614 TOP MAIN SOLVE Loop x[1] = 0.383 y[1] (analytic) = 0 y[1] (numeric) = 0.33434435057906805708213306027254 absolute error = 0.33434435057906805708213306027254 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.301 Order of pole = 8.613 TOP MAIN SOLVE Loop x[1] = 0.384 y[1] (analytic) = 0 y[1] (numeric) = 0.33564044293683879971522444324768 absolute error = 0.33564044293683879971522444324768 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.301 Order of pole = 8.612 TOP MAIN SOLVE Loop x[1] = 0.385 y[1] (analytic) = 0 y[1] (numeric) = 0.33693736851895326448405554070171 absolute error = 0.33693736851895326448405554070171 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.301 Order of pole = 8.612 TOP MAIN SOLVE Loop x[1] = 0.386 y[1] (analytic) = 0 y[1] (numeric) = 0.33823512752365702415324424742074 absolute error = 0.33823512752365702415324424742074 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.3 Order of pole = 8.611 TOP MAIN SOLVE Loop x[1] = 0.387 y[1] (analytic) = 0 y[1] (numeric) = 0.33953372014805530802946587298996 absolute error = 0.33953372014805530802946587298996 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.3 Order of pole = 8.61 TOP MAIN SOLVE Loop x[1] = 0.388 y[1] (analytic) = 0 y[1] (numeric) = 0.34083314658811084692550883297414 absolute error = 0.34083314658811084692550883297414 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.3 Order of pole = 8.609 TOP MAIN SOLVE Loop x[1] = 0.389 y[1] (analytic) = 0 y[1] (numeric) = 0.3421334070386417188798725963516 absolute error = 0.3421334070386417188798725963516 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.299 Order of pole = 8.609 TOP MAIN SOLVE Loop x[1] = 0.39 y[1] (analytic) = 0 y[1] (numeric) = 0.34343450169331919564540259884203 absolute error = 0.34343450169331919564540259884203 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.299 Order of pole = 8.608 TOP MAIN SOLVE Loop x[1] = 0.391 y[1] (analytic) = 0 y[1] (numeric) = 0.34473643074466558996047878187584 absolute error = 0.34473643074466558996047878187584 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.299 Order of pole = 8.607 TOP MAIN SOLVE Loop memory used=99.1MB, alloc=4.5MB, time=10.18 x[1] = 0.392 y[1] (analytic) = 0 y[1] (numeric) = 0.34603919438405210361629629593251 absolute error = 0.34603919438405210361629629593251 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.298 Order of pole = 8.606 TOP MAIN SOLVE Loop x[1] = 0.393 y[1] (analytic) = 0 y[1] (numeric) = 0.34734279280169667633379871442327 absolute error = 0.34734279280169667633379871442327 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.298 Order of pole = 8.605 TOP MAIN SOLVE Loop x[1] = 0.394 y[1] (analytic) = 0 y[1] (numeric) = 0.3486472261866618354638458398059 absolute error = 0.3486472261866618354638458398059 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.298 Order of pole = 8.604 TOP MAIN SOLVE Loop x[1] = 0.395 y[1] (analytic) = 0 y[1] (numeric) = 0.34995249472685254652421984679189 absolute error = 0.34995249472685254652421984679189 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.297 Order of pole = 8.603 TOP MAIN SOLVE Loop x[1] = 0.396 y[1] (analytic) = 0 y[1] (numeric) = 0.35125859860901406458709509793453 absolute error = 0.35125859860901406458709509793453 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.297 Order of pole = 8.602 TOP MAIN SOLVE Loop x[1] = 0.397 y[1] (analytic) = 0 y[1] (numeric) = 0.35256553801872978653061848416656 absolute error = 0.35256553801872978653061848416656 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.297 Order of pole = 8.601 TOP MAIN SOLVE Loop x[1] = 0.398 y[1] (analytic) = 0 y[1] (numeric) = 0.3538733131404191041682685865832 absolute error = 0.3538733131404191041682685865832 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.297 Order of pole = 8.6 TOP MAIN SOLVE Loop x[1] = 0.399 y[1] (analytic) = 0 y[1] (numeric) = 0.35518192415733525826968332553641 absolute error = 0.35518192415733525826968332553641 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.296 Order of pole = 8.599 TOP MAIN SOLVE Loop x[1] = 0.4 y[1] (analytic) = 0 y[1] (numeric) = 0.3564913712515631934866670585144 absolute error = 0.3564913712515631934866670585144 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.296 Order of pole = 8.598 TOP MAIN SOLVE Loop x[1] = 0.401 y[1] (analytic) = 0 y[1] (numeric) = 0.3578016546040174141981093089226 absolute error = 0.3578016546040174141981093089226 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.296 Order of pole = 8.597 TOP MAIN SOLVE Loop x[1] = 0.402 y[1] (analytic) = 0 y[1] (numeric) = 0.35911277439443984128756845335325 absolute error = 0.35911277439443984128756845335325 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.295 Order of pole = 8.596 TOP MAIN SOLVE Loop memory used=103.0MB, alloc=4.5MB, time=10.58 x[1] = 0.403 y[1] (analytic) = 0 y[1] (numeric) = 0.36042473080139766986729476482659 absolute error = 0.36042473080139766986729476482659 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.295 Order of pole = 8.595 TOP MAIN SOLVE Loop x[1] = 0.404 y[1] (analytic) = 0 y[1] (numeric) = 0.36173752400228122796248820340191 absolute error = 0.36173752400228122796248820340191 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.295 Order of pole = 8.594 TOP MAIN SOLVE Loop x[1] = 0.405 y[1] (analytic) = 0 y[1] (numeric) = 0.36305115417330183616960726308743 absolute error = 0.36305115417330183616960726308743 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.294 Order of pole = 8.593 TOP MAIN SOLVE Loop x[1] = 0.406 y[1] (analytic) = 0 y[1] (numeric) = 0.36436562148948966830256602471892 absolute error = 0.36436562148948966830256602471892 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.294 Order of pole = 8.592 TOP MAIN SOLVE Loop x[1] = 0.407 y[1] (analytic) = 0 y[1] (numeric) = 0.36568092612469161304067732802357 absolute error = 0.36568092612469161304067732802357 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.294 Order of pole = 8.591 TOP MAIN SOLVE Loop x[1] = 0.408 y[1] (analytic) = 0 y[1] (numeric) = 0.36699706825156913659222066203319 absolute error = 0.36699706825156913659222066203319 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.293 Order of pole = 8.59 TOP MAIN SOLVE Loop x[1] = 0.409 y[1] (analytic) = 0 y[1] (numeric) = 0.36831404804159614638753398095458 absolute error = 0.36831404804159614638753398095458 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.293 Order of pole = 8.588 TOP MAIN SOLVE Loop x[1] = 0.41 y[1] (analytic) = 0 y[1] (numeric) = 0.36963186566505685581554918213993 absolute error = 0.36963186566505685581554918213993 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.293 Order of pole = 8.587 TOP MAIN SOLVE Loop x[1] = 0.411 y[1] (analytic) = 0 y[1] (numeric) = 0.3709505212910436500177114335219 absolute error = 0.3709505212910436500177114335219 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.292 Order of pole = 8.586 TOP MAIN SOLVE Loop x[1] = 0.412 y[1] (analytic) = 0 y[1] (numeric) = 0.3722700150874549527532429093819 absolute error = 0.3722700150874549527532429093819 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.292 Order of pole = 8.585 TOP MAIN SOLVE Loop x[1] = 0.413 y[1] (analytic) = 0 y[1] (numeric) = 0.37359034722099309434973178520074 absolute error = 0.37359034722099309434973178520074 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.291 Order of pole = 8.584 TOP MAIN SOLVE Loop x[1] = 0.414 y[1] (analytic) = 0 y[1] (numeric) = 0.37491151785716218075304755419458 absolute error = 0.37491151785716218075304755419458 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.291 Order of pole = 8.582 TOP MAIN SOLVE Loop memory used=106.8MB, alloc=4.5MB, time=10.98 x[1] = 0.415 y[1] (analytic) = 0 y[1] (numeric) = 0.37623352716026596369060385956031 absolute error = 0.37623352716026596369060385956031 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.291 Order of pole = 8.581 TOP MAIN SOLVE Loop x[1] = 0.416 y[1] (analytic) = 0 y[1] (numeric) = 0.37755637529340571196201008703923 absolute error = 0.37755637529340571196201008703923 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.29 Order of pole = 8.58 TOP MAIN SOLVE Loop x[1] = 0.417 y[1] (analytic) = 0 y[1] (numeric) = 0.37888006241847808387117293175122 absolute error = 0.37888006241847808387117293175122 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.29 Order of pole = 8.579 TOP MAIN SOLVE Loop x[1] = 0.418 y[1] (analytic) = 0 y[1] (numeric) = 0.3802045886961730008139290409492 absolute error = 0.3802045886961730008139290409492 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.29 Order of pole = 8.577 TOP MAIN SOLVE Loop x[1] = 0.419 y[1] (analytic) = 0 y[1] (numeric) = 0.38152995428597152203530963999097 absolute error = 0.38152995428597152203530963999097 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.289 Order of pole = 8.576 TOP MAIN SOLVE Loop x[1] = 0.42 y[1] (analytic) = 0 y[1] (numeric) = 0.38285615934614372057055777201815 absolute error = 0.38285615934614372057055777201815 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.289 Order of pole = 8.575 TOP MAIN SOLVE Loop x[1] = 0.421 y[1] (analytic) = 0 y[1] (numeric) = 0.38418320403374656038403842216566 absolute error = 0.38418320403374656038403842216566 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.289 Order of pole = 8.573 TOP MAIN SOLVE Loop x[1] = 0.422 y[1] (analytic) = 0 y[1] (numeric) = 0.3855110885046217747202013541956 absolute error = 0.3855110885046217747202013541956 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.288 Order of pole = 8.572 TOP MAIN SOLVE Loop x[1] = 0.423 y[1] (analytic) = 0 y[1] (numeric) = 0.38683981291339374568077596085238 absolute error = 0.38683981291339374568077596085238 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.288 Order of pole = 8.571 TOP MAIN SOLVE Loop x[1] = 0.424 y[1] (analytic) = 0 y[1] (numeric) = 0.38816937741346738504239681856757 absolute error = 0.38816937741346738504239681856757 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.288 Order of pole = 8.57 TOP MAIN SOLVE Loop x[1] = 0.425 y[1] (analytic) = 0 y[1] (numeric) = 0.38949978215702601632887794199899 absolute error = 0.38949978215702601632887794199899 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.287 Order of pole = 8.568 TOP MAIN SOLVE Loop x[1] = 0.426 y[1] (analytic) = 0 y[1] (numeric) = 0.39083102729502925815237295386532 absolute error = 0.39083102729502925815237295386532 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.287 Order of pole = 8.567 memory used=110.6MB, alloc=4.5MB, time=11.38 TOP MAIN SOLVE Loop x[1] = 0.427 y[1] (analytic) = 0 y[1] (numeric) = 0.39216311297721090883767752023105 absolute error = 0.39216311297721090883767752023105 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.287 Order of pole = 8.565 TOP MAIN SOLVE Loop x[1] = 0.428 y[1] (analytic) = 0 y[1] (numeric) = 0.39349603935207683234394945040355 absolute error = 0.39349603935207683234394945040355 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.286 Order of pole = 8.564 TOP MAIN SOLVE Loop x[1] = 0.429 y[1] (analytic) = 0 y[1] (numeric) = 0.3948298065669028454981408235203 absolute error = 0.3948298065669028454981408235203 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.286 Order of pole = 8.563 TOP MAIN SOLVE Loop x[1] = 0.43 y[1] (analytic) = 0 y[1] (numeric) = 0.39616441476773260655445538032724 absolute error = 0.39616441476773260655445538032724 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.286 Order of pole = 8.561 TOP MAIN SOLVE Loop x[1] = 0.431 y[1] (analytic) = 0 y[1] (numeric) = 0.39749986409937550509416320817481 absolute error = 0.39749986409937550509416320817481 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.285 Order of pole = 8.56 TOP MAIN SOLVE Loop x[1] = 0.432 y[1] (analytic) = 0 y[1] (numeric) = 0.39883615470540455328012344948362 absolute error = 0.39883615470540455328012344948362 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.285 Order of pole = 8.559 TOP MAIN SOLVE Loop x[1] = 0.433 y[1] (analytic) = 0 y[1] (numeric) = 0.4001732867281542784803843784542 absolute error = 0.4001732867281542784803843784542 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.284 Order of pole = 8.557 TOP MAIN SOLVE Loop x[1] = 0.434 y[1] (analytic) = 0 y[1] (numeric) = 0.40151126030871861727524871721142 absolute error = 0.40151126030871861727524871721142 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.284 Order of pole = 8.556 TOP MAIN SOLVE Loop x[1] = 0.435 y[1] (analytic) = 0 y[1] (numeric) = 0.40285007558694881086221050048169 absolute error = 0.40285007558694881086221050048169 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.284 Order of pole = 8.555 TOP MAIN SOLVE Loop x[1] = 0.436 y[1] (analytic) = 0 y[1] (numeric) = 0.40418973270145130187318814689739 absolute error = 0.40418973270145130187318814689739 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.283 Order of pole = 8.553 TOP MAIN SOLVE Loop x[1] = 0.437 y[1] (analytic) = 0 y[1] (numeric) = 0.40553023178958563261849665470564 absolute error = 0.40553023178958563261849665470564 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.283 Order of pole = 8.552 TOP MAIN SOLVE Loop memory used=114.4MB, alloc=4.5MB, time=11.77 x[1] = 0.438 y[1] (analytic) = 0 y[1] (numeric) = 0.40687157298746234477202000962538 absolute error = 0.40687157298746234477202000962538 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.283 Order of pole = 8.551 TOP MAIN SOLVE Loop x[1] = 0.439 y[1] (analytic) = 0 y[1] (numeric) = 0.40821375642994088051206297244581 absolute error = 0.40821375642994088051206297244581 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.282 Order of pole = 8.549 TOP MAIN SOLVE Loop x[1] = 0.44 y[1] (analytic) = 0 y[1] (numeric) = 0.40955678225062748513237940328886 absolute error = 0.40955678225062748513237940328886 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.282 Order of pole = 8.548 TOP MAIN SOLVE Loop x[1] = 0.441 y[1] (analytic) = 0 y[1] (numeric) = 0.41090065058187311113789217786653 absolute error = 0.41090065058187311113789217786653 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.282 Order of pole = 8.546 TOP MAIN SOLVE Loop x[1] = 0.442 y[1] (analytic) = 0 y[1] (numeric) = 0.4122453615547713238396375581499 absolute error = 0.4122453615547713238396375581499 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.281 Order of pole = 8.545 TOP MAIN SOLVE Loop x[1] = 0.443 y[1] (analytic) = 0 y[1] (numeric) = 0.41359091529915620846348459522828 absolute error = 0.41359091529915620846348459522828 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.281 Order of pole = 8.544 TOP MAIN SOLVE Loop x[1] = 0.444 y[1] (analytic) = 0 y[1] (numeric) = 0.41493731194360027878719776537446 absolute error = 0.41493731194360027878719776537446 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.281 Order of pole = 8.542 TOP MAIN SOLVE Loop x[1] = 0.445 y[1] (analytic) = 0 y[1] (numeric) = 0.41628455161541238732042857104353 absolute error = 0.41628455161541238732042857104353 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.28 Order of pole = 8.541 TOP MAIN SOLVE Loop x[1] = 0.446 y[1] (analytic) = 0 y[1] (numeric) = 0.41763263444063563704223927631848 absolute error = 0.41763263444063563704223927631848 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.28 Order of pole = 8.54 TOP MAIN SOLVE Loop x[1] = 0.447 y[1] (analytic) = 0 y[1] (numeric) = 0.41898156054404529471077929077508 absolute error = 0.41898156054404529471077929077508 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.279 Order of pole = 8.538 TOP MAIN SOLVE Loop x[1] = 0.448 y[1] (analytic) = 0 y[1] (numeric) = 0.42033133004914670575975196647163 absolute error = 0.42033133004914670575975196647163 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.279 Order of pole = 8.537 TOP MAIN SOLVE Loop x[1] = 0.449 y[1] (analytic) = 0 y[1] (numeric) = 0.42168194307817321079632672937595 absolute error = 0.42168194307817321079632672937595 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.279 Order of pole = 8.536 TOP MAIN SOLVE Loop memory used=118.2MB, alloc=4.5MB, time=12.18 x[1] = 0.45 y[1] (analytic) = 0 y[1] (numeric) = 0.42303339975208406371516852862315 absolute error = 0.42303339975208406371516852862315 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.278 Order of pole = 8.534 TOP MAIN SOLVE Loop x[1] = 0.451 y[1] (analytic) = 0 y[1] (numeric) = 0.42438570019056235144327355415397 absolute error = 0.42438570019056235144327355415397 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.278 Order of pole = 8.533 TOP MAIN SOLVE Loop x[1] = 0.452 y[1] (analytic) = 0 y[1] (numeric) = 0.42573884451201291533031704511571 absolute error = 0.42573884451201291533031704511571 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.278 Order of pole = 8.532 TOP MAIN SOLVE Loop x[1] = 0.453 y[1] (analytic) = 0 y[1] (numeric) = 0.42709283283356027419923578751738 absolute error = 0.42709283283356027419923578751738 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.277 Order of pole = 8.531 TOP MAIN SOLVE Loop x[1] = 0.454 y[1] (analytic) = 0 y[1] (numeric) = 0.42844766527104654907178457961912 absolute error = 0.42844766527104654907178457961912 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.277 Order of pole = 8.529 TOP MAIN SOLVE Loop x[1] = 0.455 y[1] (analytic) = 0 y[1] (numeric) = 0.42980334193902938958382252700512 absolute error = 0.42980334193902938958382252700512 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.277 Order of pole = 8.528 TOP MAIN SOLVE Loop x[1] = 0.456 y[1] (analytic) = 0 y[1] (numeric) = 0.4311598629507799021051015158414 absolute error = 0.4311598629507799021051015158414 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.276 Order of pole = 8.527 TOP MAIN SOLVE Loop x[1] = 0.457 y[1] (analytic) = 0 y[1] (numeric) = 0.43251722841828057957834560205701 absolute error = 0.43251722841828057957834560205701 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.276 Order of pole = 8.525 TOP MAIN SOLVE Loop x[1] = 0.458 y[1] (analytic) = 0 y[1] (numeric) = 0.43387543845222323309242634571283 absolute error = 0.43387543845222323309242634571283 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.276 Order of pole = 8.524 TOP MAIN SOLVE Loop x[1] = 0.459 y[1] (analytic) = 0 y[1] (numeric) = 0.4352344931620069252044553132386 absolute error = 0.4352344931620069252044553132386 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.275 Order of pole = 8.523 TOP MAIN SOLVE Loop x[1] = 0.46 y[1] (analytic) = 0 y[1] (numeric) = 0.43659439265573590502563106513005 absolute error = 0.43659439265573590502563106513005 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.275 Order of pole = 8.522 TOP MAIN SOLVE Loop x[1] = 0.461 y[1] (analytic) = 0 y[1] (numeric) = 0.43795513704021754508569394270731 absolute error = 0.43795513704021754508569394270731 relative error = -1 % Correct digits = -1 h = 0.001 memory used=122.0MB, alloc=4.5MB, time=12.58 Complex estimate of poles used for equation 1 Radius of convergence = 4.275 Order of pole = 8.521 TOP MAIN SOLVE Loop x[1] = 0.462 y[1] (analytic) = 0 y[1] (numeric) = 0.43931672642096027999085786424756 absolute error = 0.43931672642096027999085786424756 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 8.519 TOP MAIN SOLVE Loop x[1] = 0.463 y[1] (analytic) = 0 y[1] (numeric) = 0.44067916090217154689010413782348 absolute error = 0.44067916090217154689010413782348 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 8.518 TOP MAIN SOLVE Loop x[1] = 0.464 y[1] (analytic) = 0 y[1] (numeric) = 0.44204244058675572776473799510889 absolute error = 0.44204244058675572776473799510889 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 8.517 TOP MAIN SOLVE Loop x[1] = 0.465 y[1] (analytic) = 0 y[1] (numeric) = 0.4434065655763120935561241468598 absolute error = 0.4434065655763120935561241468598 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.273 Order of pole = 8.516 TOP MAIN SOLVE Loop x[1] = 0.466 y[1] (analytic) = 0 y[1] (numeric) = 0.4447715359711327501465331563477 absolute error = 0.4447715359711327501465331563477 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.273 Order of pole = 8.515 TOP MAIN SOLVE Loop x[1] = 0.467 y[1] (analytic) = 0 y[1] (numeric) = 0.44613735187020058620804582131875 absolute error = 0.44613735187020058620804582131875 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.273 Order of pole = 8.514 TOP MAIN SOLVE Loop x[1] = 0.468 y[1] (analytic) = 0 y[1] (numeric) = 0.4475040133711872229344780476834 absolute error = 0.4475040133711872229344780476834 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.272 Order of pole = 8.512 TOP MAIN SOLVE Loop x[1] = 0.469 y[1] (analytic) = 0 y[1] (numeric) = 0.44887152057045096567130388871277 absolute error = 0.44887152057045096567130388871277 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.272 Order of pole = 8.511 TOP MAIN SOLVE Loop x[1] = 0.47 y[1] (analytic) = 0 y[1] (numeric) = 0.4502398735630347574585695116376 absolute error = 0.4502398735630347574585695116376 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.272 Order of pole = 8.51 TOP MAIN SOLVE Loop x[1] = 0.471 y[1] (analytic) = 0 y[1] (numeric) = 0.45160907244266413450180583882055 absolute error = 0.45160907244266413450180583882055 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.271 Order of pole = 8.509 TOP MAIN SOLVE Loop x[1] = 0.472 y[1] (analytic) = 0 y[1] (numeric) = 0.45297911730174518358596249271035 absolute error = 0.45297911730174518358596249271035 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.271 Order of pole = 8.508 TOP MAIN SOLVE Loop memory used=125.8MB, alloc=4.5MB, time=12.98 x[1] = 0.473 y[1] (analytic) = 0 y[1] (numeric) = 0.45435000823136250144740045219548 absolute error = 0.45435000823136250144740045219548 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.271 Order of pole = 8.507 TOP MAIN SOLVE Loop x[1] = 0.474 y[1] (analytic) = 0 y[1] (numeric) = 0.45572174532127715611899550236426 absolute error = 0.45572174532127715611899550236426 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.27 Order of pole = 8.506 TOP MAIN SOLVE Loop x[1] = 0.475 y[1] (analytic) = 0 y[1] (numeric) = 0.45709432865992465026341912965617 absolute error = 0.45709432865992465026341912965617 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.27 Order of pole = 8.505 TOP MAIN SOLVE Loop x[1] = 0.476 y[1] (analytic) = 0 y[1] (numeric) = 0.45846775833441288650967797956578 absolute error = 0.45846775833441288650967797956578 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.27 Order of pole = 8.504 TOP MAIN SOLVE Loop x[1] = 0.477 y[1] (analytic) = 0 y[1] (numeric) = 0.45984203443052013480800735404594 absolute error = 0.45984203443052013480800735404594 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.27 Order of pole = 8.503 TOP MAIN SOLVE Loop x[1] = 0.478 y[1] (analytic) = 0 y[1] (numeric) = 0.46121715703269300181822848016049 absolute error = 0.46121715703269300181822848016049 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.269 Order of pole = 8.502 TOP MAIN SOLVE Loop x[1] = 0.479 y[1] (analytic) = 0 y[1] (numeric) = 0.46259312622404440234669342997061 absolute error = 0.46259312622404440234669342997061 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.269 Order of pole = 8.501 TOP MAIN SOLVE Loop x[1] = 0.48 y[1] (analytic) = 0 y[1] (numeric) = 0.46396994208635153284695561371332 absolute error = 0.46396994208635153284695561371332 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.269 Order of pole = 8.5 TOP MAIN SOLVE Loop x[1] = 0.481 y[1] (analytic) = 0 y[1] (numeric) = 0.46534760470005384699931770365828 absolute error = 0.46534760470005384699931770365828 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.268 Order of pole = 8.5 TOP MAIN SOLVE Loop x[1] = 0.482 y[1] (analytic) = 0 y[1] (numeric) = 0.4667261141442510333844226742213 absolute error = 0.4667261141442510333844226742213 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.268 Order of pole = 8.499 TOP MAIN SOLVE Loop x[1] = 0.483 y[1] (analytic) = 0 y[1] (numeric) = 0.46810547049670099526606736458339 absolute error = 0.46810547049670099526606736458339 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.268 Order of pole = 8.498 TOP MAIN SOLVE Loop x[1] = 0.484 y[1] (analytic) = 0 y[1] (numeric) = 0.46948567383381783249843158282536 absolute error = 0.46948567383381783249843158282536 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.267 Order of pole = 8.497 TOP MAIN SOLVE Loop memory used=129.7MB, alloc=4.5MB, time=13.38 x[1] = 0.485 y[1] (analytic) = 0 y[1] (numeric) = 0.470866724230669825572929275054 absolute error = 0.470866724230669825572929275054 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.267 Order of pole = 8.496 TOP MAIN SOLVE Loop x[1] = 0.486 y[1] (analytic) = 0 y[1] (numeric) = 0.47224862176097742181990167878092 absolute error = 0.47224862176097742181990167878092 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.267 Order of pole = 8.495 TOP MAIN SOLVE Loop x[1] = 0.487 y[1] (analytic) = 0 y[1] (numeric) = 0.47363136649711122378038566653379 absolute error = 0.47363136649711122378038566653379 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.267 Order of pole = 8.495 TOP MAIN SOLVE Loop x[1] = 0.488 y[1] (analytic) = 0 y[1] (numeric) = 0.47501495851008997976320366294739 absolute error = 0.47501495851008997976320366294739 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.266 Order of pole = 8.494 TOP MAIN SOLVE Loop x[1] = 0.489 y[1] (analytic) = 0 y[1] (numeric) = 0.47639939786957857660263458601429 absolute error = 0.47639939786957857660263458601429 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.266 Order of pole = 8.493 TOP MAIN SOLVE Loop x[1] = 0.49 y[1] (analytic) = 0 y[1] (numeric) = 0.47778468464388603463193822038851 absolute error = 0.47778468464388603463193822038851 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.266 Order of pole = 8.493 TOP MAIN SOLVE Loop x[1] = 0.491 y[1] (analytic) = 0 y[1] (numeric) = 0.47917081889996350488801827724686 absolute error = 0.47917081889996350488801827724686 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.266 Order of pole = 8.492 TOP MAIN SOLVE Loop x[1] = 0.492 y[1] (analytic) = 0 y[1] (numeric) = 0.4805578007034022685625221308394 absolute error = 0.4805578007034022685625221308394 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.265 Order of pole = 8.491 TOP MAIN SOLVE Loop x[1] = 0.493 y[1] (analytic) = 0 y[1] (numeric) = 0.48194563011843173871468784612047 absolute error = 0.48194563011843173871468784612047 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.265 Order of pole = 8.491 TOP MAIN SOLVE Loop x[1] = 0.494 y[1] (analytic) = 0 y[1] (numeric) = 0.48333430720791746426126162436352 absolute error = 0.48333430720791746426126162436352 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.265 Order of pole = 8.49 TOP MAIN SOLVE Loop x[1] = 0.495 y[1] (analytic) = 0 y[1] (numeric) = 0.48472383203335913625882119404553 absolute error = 0.48472383203335913625882119404553 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.264 Order of pole = 8.49 TOP MAIN SOLVE Loop memory used=133.5MB, alloc=4.5MB, time=13.77 x[1] = 0.496 y[1] (analytic) = 0 y[1] (numeric) = 0.48611420465488859649385296216011 absolute error = 0.48611420465488859649385296216011 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.264 Order of pole = 8.489 TOP MAIN SOLVE Loop x[1] = 0.497 y[1] (analytic) = 0 y[1] (numeric) = 0.48750542513126784839594291610218 absolute error = 0.48750542513126784839594291610218 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.264 Order of pole = 8.489 TOP MAIN SOLVE Loop x[1] = 0.498 y[1] (analytic) = 0 y[1] (numeric) = 0.48889749351988707028945332798268 absolute error = 0.48889749351988707028945332798268 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.264 Order of pole = 8.488 TOP MAIN SOLVE Loop x[1] = 0.499 y[1] (analytic) = 0 y[1] (numeric) = 0.49029040987676263099906926130031 absolute error = 0.49029040987676263099906926130031 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.263 Order of pole = 8.488 TOP MAIN SOLVE Loop x[1] = 0.5 y[1] (analytic) = 0 y[1] (numeric) = 0.49168417425653510782461071394081 absolute error = 0.49168417425653510782461071394081 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.263 Order of pole = 8.487 TOP MAIN SOLVE Loop x[1] = 0.501 y[1] (analytic) = 0 y[1] (numeric) = 0.49307878671246730690051795111552 absolute error = 0.49307878671246730690051795111552 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.263 Order of pole = 8.487 TOP MAIN SOLVE Loop x[1] = 0.502 y[1] (analytic) = 0 y[1] (numeric) = 0.49447424729644228595542918671321 absolute error = 0.49447424729644228595542918671321 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.263 Order of pole = 8.487 TOP MAIN SOLVE Loop x[1] = 0.503 y[1] (analytic) = 0 y[1] (numeric) = 0.495870556058961379487281261246 absolute error = 0.495870556058961379487281261246 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.263 Order of pole = 8.486 TOP MAIN SOLVE Loop x[1] = 0.504 y[1] (analytic) = 0 y[1] (numeric) = 0.49726771304914222636937533874662 absolute error = 0.49726771304914222636937533874662 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.262 Order of pole = 8.486 TOP MAIN SOLVE Loop x[1] = 0.505 y[1] (analytic) = 0 y[1] (numeric) = 0.49866571831471679990286090324493 absolute error = 0.49866571831471679990286090324493 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.262 Order of pole = 8.486 TOP MAIN SOLVE Loop x[1] = 0.506 y[1] (analytic) = 0 y[1] (numeric) = 0.50006457190202944033110247744275 absolute error = 0.50006457190202944033110247744275 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.262 Order of pole = 8.486 TOP MAIN SOLVE Loop x[1] = 0.507 y[1] (analytic) = 0 y[1] (numeric) = 0.50146427385603488983140451154372 absolute error = 0.50146427385603488983140451154372 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.262 Order of pole = 8.485 TOP MAIN SOLVE Loop memory used=137.3MB, alloc=4.5MB, time=14.18 x[1] = 0.508 y[1] (analytic) = 0 y[1] (numeric) = 0.50286482422029632999958079850667 absolute error = 0.50286482422029632999958079850667 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.261 Order of pole = 8.485 TOP MAIN SOLVE Loop x[1] = 0.509 y[1] (analytic) = 0 y[1] (numeric) = 0.50426622303698342184286556290399 absolute error = 0.50426622303698342184286556290399 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.261 Order of pole = 8.485 TOP MAIN SOLVE Loop x[1] = 0.51 y[1] (analytic) = 0 y[1] (numeric) = 0.50566847034687034829667404371004 absolute error = 0.50566847034687034829667404371004 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.261 Order of pole = 8.485 TOP MAIN SOLVE Loop x[1] = 0.511 y[1] (analytic) = 0 y[1] (numeric) = 0.50707156618933385928073094634706 absolute error = 0.50707156618933385928073094634706 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.261 Order of pole = 8.485 TOP MAIN SOLVE Loop x[1] = 0.512 y[1] (analytic) = 0 y[1] (numeric) = 0.50847551060235131931009557580756 absolute error = 0.50847551060235131931009557580756 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.261 Order of pole = 8.485 TOP MAIN SOLVE Loop x[1] = 0.513 y[1] (analytic) = 0 y[1] (numeric) = 0.50988030362249875767662278028351 absolute error = 0.50988030362249875767662278028351 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.26 Order of pole = 8.485 TOP MAIN SOLVE Loop x[1] = 0.514 y[1] (analytic) = 0 y[1] (numeric) = 0.51128594528494892121640903309448 absolute error = 0.51128594528494892121640903309448 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.26 Order of pole = 8.485 TOP MAIN SOLVE Loop x[1] = 0.515 y[1] (analytic) = 0 y[1] (numeric) = 0.51269243562346932967878305945168 absolute error = 0.51269243562346932967878305945168 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.26 Order of pole = 8.485 TOP MAIN SOLVE Loop x[1] = 0.516 y[1] (analytic) = 0 y[1] (numeric) = 0.51409977467042033371241037335502 absolute error = 0.51409977467042033371241037335502 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.26 Order of pole = 8.485 TOP MAIN SOLVE Loop x[1] = 0.517 y[1] (analytic) = 0 y[1] (numeric) = 0.5155079624567531754840909283293 absolute error = 0.5155079624567531754840909283293 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.26 Order of pole = 8.485 TOP MAIN SOLVE Loop x[1] = 0.518 y[1] (analytic) = 0 y[1] (numeric) = 0.51691699901200805194583880339749 absolute error = 0.51691699901200805194583880339749 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.259 Order of pole = 8.485 TOP MAIN SOLVE Loop x[1] = 0.519 y[1] (analytic) = 0 y[1] (numeric) = 0.51832688436431218076584244229884 absolute error = 0.51832688436431218076584244229884 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.259 Order of pole = 8.485 memory used=141.1MB, alloc=4.5MB, time=14.57 TOP MAIN SOLVE Loop x[1] = 0.52 y[1] (analytic) = 0 y[1] (numeric) = 0.51973761854037786893891343912272 absolute error = 0.51973761854037786893891343912272 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.259 Order of pole = 8.486 TOP MAIN SOLVE Loop x[1] = 0.521 y[1] (analytic) = 0 y[1] (numeric) = 0.52114920156550058409204121688196 absolute error = 0.52114920156550058409204121688196 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.259 Order of pole = 8.486 TOP MAIN SOLVE Loop x[1] = 0.522 y[1] (analytic) = 0 y[1] (numeric) = 0.52256163346355702850068017672932 absolute error = 0.52256163346355702850068017672932 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.259 Order of pole = 8.486 TOP MAIN SOLVE Loop x[1] = 0.523 y[1] (analytic) = 0 y[1] (numeric) = 0.52397491425700321583140500416549 absolute error = 0.52397491425700321583140500416549 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.259 Order of pole = 8.487 TOP MAIN SOLVE Loop x[1] = 0.524 y[1] (analytic) = 0 y[1] (numeric) = 0.5253890439668725506265788043351 absolute error = 0.5253890439668725506265788043351 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.258 Order of pole = 8.487 TOP MAIN SOLVE Loop x[1] = 0.525 y[1] (analytic) = 0 y[1] (numeric) = 0.52680402261277391054668760099843 absolute error = 0.52680402261277391054668760099843 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.258 Order of pole = 8.487 TOP MAIN SOLVE Loop x[1] = 0.526 y[1] (analytic) = 0 y[1] (numeric) = 0.52821985021288973138600347264095 absolute error = 0.52821985021288973138600347264095 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.258 Order of pole = 8.488 TOP MAIN SOLVE Loop x[1] = 0.527 y[1] (analytic) = 0 y[1] (numeric) = 0.52963652678397409487724721408144 absolute error = 0.52963652678397409487724721408144 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.258 Order of pole = 8.488 TOP MAIN SOLVE Loop x[1] = 0.528 y[1] (analytic) = 0 y[1] (numeric) = 0.53105405234135081930092990250439 absolute error = 0.53105405234135081930092990250439 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.258 Order of pole = 8.489 TOP MAIN SOLVE Loop x[1] = 0.529 y[1] (analytic) = 0 y[1] (numeric) = 0.53247242689891155291506111271595 absolute error = 0.53247242689891155291506111271595 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.258 Order of pole = 8.489 TOP MAIN SOLVE Loop x[1] = 0.53 y[1] (analytic) = 0 y[1] (numeric) = 0.53389165046911387022091976724886 absolute error = 0.53389165046911387022091976724886 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.257 Order of pole = 8.49 TOP MAIN SOLVE Loop memory used=144.9MB, alloc=4.5MB, time=14.97 x[1] = 0.531 y[1] (analytic) = 0 y[1] (numeric) = 0.53531172306297937108059172236447 absolute error = 0.53531172306297937108059172236447 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.257 Order of pole = 8.49 TOP MAIN SOLVE Loop x[1] = 0.532 y[1] (analytic) = 0 y[1] (numeric) = 0.53673264469009178270198618066447 absolute error = 0.53673264469009178270198618066447 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.257 Order of pole = 8.491 TOP MAIN SOLVE Loop x[1] = 0.533 y[1] (analytic) = 0 y[1] (numeric) = 0.53815441535859506450705088457743 absolute error = 0.53815441535859506450705088457743 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.257 Order of pole = 8.492 TOP MAIN SOLVE Loop x[1] = 0.534 y[1] (analytic) = 0 y[1] (numeric) = 0.53957703507519151589891378207231 absolute error = 0.53957703507519151589891378207231 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.257 Order of pole = 8.492 TOP MAIN SOLVE Loop x[1] = 0.535 y[1] (analytic) = 0 y[1] (numeric) = 0.54100050384513988694368646622079 absolute error = 0.54100050384513988694368646622079 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.257 Order of pole = 8.493 TOP MAIN SOLVE Loop x[1] = 0.536 y[1] (analytic) = 0 y[1] (numeric) = 0.54242482167225349198267217333076 absolute error = 0.54242482167225349198267217333076 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.257 Order of pole = 8.494 TOP MAIN SOLVE Loop x[1] = 0.537 y[1] (analytic) = 0 y[1] (numeric) = 0.54384998855889832619072847995444 absolute error = 0.54384998855889832619072847995444 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.257 Order of pole = 8.494 TOP MAIN SOLVE Loop x[1] = 0.538 y[1] (analytic) = 0 y[1] (numeric) = 0.54527600450599118509654206678658 absolute error = 0.54527600450599118509654206678658 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.257 Order of pole = 8.495 TOP MAIN SOLVE Loop x[1] = 0.539 y[1] (analytic) = 0 y[1] (numeric) = 0.54670286951299778708058001696217 absolute error = 0.54670286951299778708058001696217 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.256 Order of pole = 8.496 TOP MAIN SOLVE Loop x[1] = 0.54 y[1] (analytic) = 0 y[1] (numeric) = 0.54813058357793089886648908719116 absolute error = 0.54813058357793089886648908719116 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.256 Order of pole = 8.497 TOP MAIN SOLVE Loop x[1] = 0.541 y[1] (analytic) = 0 y[1] (numeric) = 0.54955914669734846402172123218337 absolute error = 0.54955914669734846402172123218337 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.256 Order of pole = 8.498 TOP MAIN SOLVE Loop x[1] = 0.542 y[1] (analytic) = 0 y[1] (numeric) = 0.55098855886635173448317037557301 absolute error = 0.55098855886635173448317037557301 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.256 Order of pole = 8.499 TOP MAIN SOLVE Loop memory used=148.7MB, alloc=4.5MB, time=15.37 x[1] = 0.543 y[1] (analytic) = 0 y[1] (numeric) = 0.55241882007858340512361200370507 absolute error = 0.55241882007858340512361200370507 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.256 Order of pole = 8.5 TOP MAIN SOLVE Loop x[1] = 0.544 y[1] (analytic) = 0 y[1] (numeric) = 0.55384993032622575137474361185019 absolute error = 0.55384993032622575137474361185019 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.256 Order of pole = 8.501 TOP MAIN SOLVE Loop x[1] = 0.545 y[1] (analytic) = 0 y[1] (numeric) = 0.55528188959999876992263035532738 absolute error = 0.55528188959999876992263035532738 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.256 Order of pole = 8.502 TOP MAIN SOLVE Loop x[1] = 0.546 y[1] (analytic) = 0 y[1] (numeric) = 0.55671469788915832249136645029326 absolute error = 0.55671469788915832249136645029326 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.256 Order of pole = 8.503 TOP MAIN SOLVE Loop x[1] = 0.547 y[1] (analytic) = 0 y[1] (numeric) = 0.55814835518149428273076893026016 absolute error = 0.55814835518149428273076893026016 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.256 Order of pole = 8.504 TOP MAIN SOLVE Loop x[1] = 0.548 y[1] (analytic) = 0 y[1] (numeric) = 0.55958286146332868622392629439381 absolute error = 0.55958286146332868622392629439381 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.256 Order of pole = 8.506 TOP MAIN SOLVE Loop x[1] = 0.549 y[1] (analytic) = 0 y[1] (numeric) = 0.56101821671951388363043038197413 absolute error = 0.56101821671951388363043038197413 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.256 Order of pole = 8.507 TOP MAIN SOLVE Loop x[1] = 0.55 y[1] (analytic) = 0 y[1] (numeric) = 0.56245442093343069698112547374234 absolute error = 0.56245442093343069698112547374234 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.256 Order of pole = 8.508 TOP MAIN SOLVE Loop x[1] = 0.551 y[1] (analytic) = 0 y[1] (numeric) = 0.56389147408698657914021415486553 absolute error = 0.56389147408698657914021415486553 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.509 TOP MAIN SOLVE Loop x[1] = 0.552 y[1] (analytic) = 0 y[1] (numeric) = 0.56532937616061377645056487559045 absolute error = 0.56532937616061377645056487559045 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.511 TOP MAIN SOLVE Loop x[1] = 0.553 y[1] (analytic) = 0 y[1] (numeric) = 0.56676812713326749457807141399541 absolute error = 0.56676812713326749457807141399541 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.512 TOP MAIN SOLVE Loop memory used=152.5MB, alloc=4.5MB, time=15.76 x[1] = 0.554 y[1] (analytic) = 0 y[1] (numeric) = 0.56820772698242406757091958024843 absolute error = 0.56820772698242406757091958024843 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.513 TOP MAIN SOLVE Loop x[1] = 0.555 y[1] (analytic) = 0 y[1] (numeric) = 0.56964817568407913014962150310784 absolute error = 0.56964817568407913014962150310784 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.515 TOP MAIN SOLVE Loop x[1] = 0.556 y[1] (analytic) = 0 y[1] (numeric) = 0.57108947321274579324368270672526 absolute error = 0.57108947321274579324368270672526 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.516 TOP MAIN SOLVE Loop x[1] = 0.557 y[1] (analytic) = 0 y[1] (numeric) = 0.57253161954145282279077191879962 absolute error = 0.57253161954145282279077191879962 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.518 TOP MAIN SOLVE Loop x[1] = 0.558 y[1] (analytic) = 0 y[1] (numeric) = 0.57397461464174282181426814945332 absolute error = 0.57397461464174282181426814945332 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.519 TOP MAIN SOLVE Loop x[1] = 0.559 y[1] (analytic) = 0 y[1] (numeric) = 0.57541845848367041579506404352877 absolute error = 0.57541845848367041579506404352877 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.521 TOP MAIN SOLVE Loop x[1] = 0.56 y[1] (analytic) = 0 y[1] (numeric) = 0.57686315103580044135350883700705 absolute error = 0.57686315103580044135350883700705 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.522 TOP MAIN SOLVE Loop x[1] = 0.561 y[1] (analytic) = 0 y[1] (numeric) = 0.57830869226520613825737844060249 absolute error = 0.57830869226520613825737844060249 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.524 TOP MAIN SOLVE Loop x[1] = 0.562 y[1] (analytic) = 0 y[1] (numeric) = 0.57975508213746734477176422996183 absolute error = 0.57975508213746734477176422996183 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.526 TOP MAIN SOLVE Loop x[1] = 0.563 y[1] (analytic) = 0 y[1] (numeric) = 0.5812023206166686963667760419686 absolute error = 0.5812023206166686963667760419686 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.527 TOP MAIN SOLVE Loop x[1] = 0.564 y[1] (analytic) = 0 y[1] (numeric) = 0.58265040766539782779895866009866 absolute error = 0.58265040766539782779895866009866 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.529 TOP MAIN SOLVE Loop x[1] = 0.565 y[1] (analytic) = 0 y[1] (numeric) = 0.5840993432447435785823247182682 absolute error = 0.5840993432447435785823247182682 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.531 TOP MAIN SOLVE Loop memory used=156.4MB, alloc=4.5MB, time=16.16 x[1] = 0.566 y[1] (analytic) = 0 y[1] (numeric) = 0.58554912731429420186491046183868 absolute error = 0.58554912731429420186491046183868 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.533 TOP MAIN SOLVE Loop x[1] = 0.567 y[1] (analytic) = 0 y[1] (numeric) = 0.58699975983213557672676417607412 absolute error = 0.58699975983213557672676417607412 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.534 TOP MAIN SOLVE Loop x[1] = 0.568 y[1] (analytic) = 0 y[1] (numeric) = 0.58845124075484942391528032606388 absolute error = 0.58845124075484942391528032606388 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.536 TOP MAIN SOLVE Loop x[1] = 0.569 y[1] (analytic) = 0 y[1] (numeric) = 0.58990357003751152503379554761097 absolute error = 0.58990357003751152503379554761097 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.538 TOP MAIN SOLVE Loop x[1] = 0.57 y[1] (analytic) = 0 y[1] (numeric) = 0.59135674763368994519936558552386 absolute error = 0.59135674763368994519936558552386 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.54 TOP MAIN SOLVE Loop x[1] = 0.571 y[1] (analytic) = 0 y[1] (numeric) = 0.59281077349544325918564509382231 absolute error = 0.59281077349544325918564509382231 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.542 TOP MAIN SOLVE Loop x[1] = 0.572 y[1] (analytic) = 0 y[1] (numeric) = 0.59426564757331878106679489125991 absolute error = 0.59426564757331878106679489125991 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.544 TOP MAIN SOLVE Loop x[1] = 0.573 y[1] (analytic) = 0 y[1] (numeric) = 0.59572136981635079737834380496335 absolute error = 0.59572136981635079737834380496335 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.546 TOP MAIN SOLVE Loop x[1] = 0.574 y[1] (analytic) = 0 y[1] (numeric) = 0.59717794017205880381093463457807 absolute error = 0.59717794017205880381093463457807 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.548 TOP MAIN SOLVE Loop x[1] = 0.575 y[1] (analytic) = 0 y[1] (numeric) = 0.59863535858644574545288602877985 absolute error = 0.59863535858644574545288602877985 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.55 TOP MAIN SOLVE Loop x[1] = 0.576 y[1] (analytic) = 0 y[1] (numeric) = 0.60009362500399626059750418505167 absolute error = 0.60009362500399626059750418505167 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.552 TOP MAIN SOLVE Loop x[1] = 0.577 y[1] (analytic) = 0 y[1] (numeric) = 0.60155273936767492813108026192502 absolute error = 0.60155273936767492813108026192502 relative error = -1 % Correct digits = -1 h = 0.001 memory used=160.2MB, alloc=4.5MB, time=16.55 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.554 TOP MAIN SOLVE Loop x[1] = 0.578 y[1] (analytic) = 0 y[1] (numeric) = 0.6030127016189245185175112301364 absolute error = 0.6030127016189245185175112301364 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.557 TOP MAIN SOLVE Loop x[1] = 0.579 y[1] (analytic) = 0 y[1] (numeric) = 0.6044735116976642483954835850462 absolute error = 0.6044735116976642483954835850462 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.559 TOP MAIN SOLVE Loop x[1] = 0.58 y[1] (analytic) = 0 y[1] (numeric) = 0.6059351695422880388041608969019 absolute error = 0.6059351695422880388041608969019 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.561 TOP MAIN SOLVE Loop x[1] = 0.581 y[1] (analytic) = 0 y[1] (numeric) = 0.60739767508966277705331758779666 absolute error = 0.60739767508966277705331758779666 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.563 TOP MAIN SOLVE Loop x[1] = 0.582 y[1] (analytic) = 0 y[1] (numeric) = 0.60886102827512658225386259417324 absolute error = 0.60886102827512658225386259417324 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.256 Order of pole = 8.566 TOP MAIN SOLVE Loop x[1] = 0.583 y[1] (analytic) = 0 y[1] (numeric) = 0.61032522903248707452469770115056 absolute error = 0.61032522903248707452469770115056 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.256 Order of pole = 8.568 TOP MAIN SOLVE Loop x[1] = 0.584 y[1] (analytic) = 0 y[1] (numeric) = 0.61179027729401964789185631950404 absolute error = 0.61179027729401964789185631950404 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.256 Order of pole = 8.57 TOP MAIN SOLVE Loop x[1] = 0.585 y[1] (analytic) = 0 y[1] (numeric) = 0.61325617299046574689586931751171 absolute error = 0.61325617299046574689586931751171 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.256 Order of pole = 8.573 TOP MAIN SOLVE Loop x[1] = 0.586 y[1] (analytic) = 0 y[1] (numeric) = 0.6147229160510311469233052177873 absolute error = 0.6147229160510311469233052177873 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.256 Order of pole = 8.575 TOP MAIN SOLVE Loop x[1] = 0.587 y[1] (analytic) = 0 y[1] (numeric) = 0.61619050640338423827843262336138 absolute error = 0.61619050640338423827843262336138 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.256 Order of pole = 8.578 TOP MAIN SOLVE Loop x[1] = 0.588 y[1] (analytic) = 0 y[1] (numeric) = 0.61765894397365431401095314734617 absolute error = 0.61765894397365431401095314734617 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.256 Order of pole = 8.58 TOP MAIN SOLVE Loop memory used=164.0MB, alloc=4.5MB, time=16.95 x[1] = 0.589 y[1] (analytic) = 0 y[1] (numeric) = 0.6191282286864298615157533862341 absolute error = 0.6191282286864298615157533862341 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.256 Order of pole = 8.583 TOP MAIN SOLVE Loop x[1] = 0.59 y[1] (analytic) = 0 y[1] (numeric) = 0.62059836046475685792062459794028 absolute error = 0.62059836046475685792062459794028 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.256 Order of pole = 8.585 TOP MAIN SOLVE Loop x[1] = 0.591 y[1] (analytic) = 0 y[1] (numeric) = 0.62206933923013706927789872181346 absolute error = 0.62206933923013706927789872181346 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.256 Order of pole = 8.588 TOP MAIN SOLVE Loop x[1] = 0.592 y[1] (analytic) = 0 y[1] (numeric) = 0.62354116490252635357594920871636 absolute error = 0.62354116490252635357594920871636 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.256 Order of pole = 8.59 TOP MAIN SOLVE Loop x[1] = 0.593 y[1] (analytic) = 0 y[1] (numeric) = 0.62501383740033296758650481462591 absolute error = 0.62501383740033296758650481462591 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.256 Order of pole = 8.593 TOP MAIN SOLVE Loop x[1] = 0.594 y[1] (analytic) = 0 y[1] (numeric) = 0.62648735664041587756372405073744 absolute error = 0.62648735664041587756372405073744 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.256 Order of pole = 8.595 TOP MAIN SOLVE Loop x[1] = 0.595 y[1] (analytic) = 0 y[1] (numeric) = 0.62796172253808307381097737648773 absolute error = 0.62796172253808307381097737648773 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.256 Order of pole = 8.598 TOP MAIN SOLVE Loop x[1] = 0.596 y[1] (analytic) = 0 y[1] (numeric) = 0.62943693500708988913128346895348 absolute error = 0.62943693500708988913128346895348 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.257 Order of pole = 8.601 TOP MAIN SOLVE Loop x[1] = 0.597 y[1] (analytic) = 0 y[1] (numeric) = 0.63091299395963732117734500245023 absolute error = 0.63091299395963732117734500245023 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.257 Order of pole = 8.603 TOP MAIN SOLVE Loop x[1] = 0.598 y[1] (analytic) = 0 y[1] (numeric) = 0.63238989930637035871712832556843 absolute error = 0.63238989930637035871712832556843 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.257 Order of pole = 8.606 TOP MAIN SOLVE Loop x[1] = 0.599 y[1] (analytic) = 0 y[1] (numeric) = 0.63386765095637631183093022905617 absolute error = 0.63386765095637631183093022905617 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.257 Order of pole = 8.609 TOP MAIN SOLVE Loop x[1] = 0.6 y[1] (analytic) = 0 y[1] (numeric) = 0.63534624881718314605587365661199 absolute error = 0.63534624881718314605587365661199 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.257 Order of pole = 8.612 TOP MAIN SOLVE Loop memory used=167.8MB, alloc=4.5MB, time=17.34 x[1] = 0.601 y[1] (analytic) = 0 y[1] (numeric) = 0.63682569279475782049377272150612 absolute error = 0.63682569279475782049377272150612 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.257 Order of pole = 8.614 TOP MAIN SOLVE Loop x[1] = 0.602 y[1] (analytic) = 0 y[1] (numeric) = 0.63830598279350462989830575472753 absolute error = 0.63830598279350462989830575472753 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.257 Order of pole = 8.617 TOP MAIN SOLVE Loop x[1] = 0.603 y[1] (analytic) = 0 y[1] (numeric) = 0.63978711871626355075743332477968 absolute error = 0.63978711871626355075743332477968 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.257 Order of pole = 8.62 TOP MAIN SOLVE Loop x[1] = 0.604 y[1] (analytic) = 0 y[1] (numeric) = 0.64126910046430859138699623504577 absolute error = 0.64126910046430859138699623504577 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.257 Order of pole = 8.623 TOP MAIN SOLVE Loop x[1] = 0.605 y[1] (analytic) = 0 y[1] (numeric) = 0.64275192793734614605142642153985 absolute error = 0.64275192793734614605142642153985 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.258 Order of pole = 8.626 TOP MAIN SOLVE Loop x[1] = 0.606 y[1] (analytic) = 0 y[1] (numeric) = 0.64423560103351335312750144158171 absolute error = 0.64423560103351335312750144158171 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.258 Order of pole = 8.629 TOP MAIN SOLVE Loop x[1] = 0.607 y[1] (analytic) = 0 y[1] (numeric) = 0.64572011964937645732707086220925 absolute error = 0.64572011964937645732707086220925 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.258 Order of pole = 8.632 TOP MAIN SOLVE Loop x[1] = 0.608 y[1] (analytic) = 0 y[1] (numeric) = 0.64720548367992917599468032570331 absolute error = 0.64720548367992917599468032570331 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.258 Order of pole = 8.635 TOP MAIN SOLVE Loop x[1] = 0.609 y[1] (analytic) = 0 y[1] (numeric) = 0.64869169301859106949601638817754 absolute error = 0.64869169301859106949601638817754 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.258 Order of pole = 8.637 TOP MAIN SOLVE Loop x[1] = 0.61 y[1] (analytic) = 0 y[1] (numeric) = 0.65017874755720591571309239551373 absolute error = 0.65017874755720591571309239551373 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.258 Order of pole = 8.64 TOP MAIN SOLVE Loop x[1] = 0.611 y[1] (analytic) = 0 y[1] (numeric) = 0.65166664718604008866209267873528 absolute error = 0.65166664718604008866209267873528 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.258 Order of pole = 8.643 TOP MAIN SOLVE Loop memory used=171.6MB, alloc=4.5MB, time=17.75 x[1] = 0.612 y[1] (analytic) = 0 y[1] (numeric) = 0.65315539179378094124978921794442 absolute error = 0.65315539179378094124978921794442 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.258 Order of pole = 8.646 TOP MAIN SOLVE Loop x[1] = 0.613 y[1] (analytic) = 0 y[1] (numeric) = 0.65464498126753519218444163993966 absolute error = 0.65464498126753519218444163993966 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.259 Order of pole = 8.649 TOP MAIN SOLVE Loop x[1] = 0.614 y[1] (analytic) = 0 y[1] (numeric) = 0.65613541549282731705708797931795 absolute error = 0.65613541549282731705708797931795 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.259 Order of pole = 8.653 TOP MAIN SOLVE Loop x[1] = 0.615 y[1] (analytic) = 0 y[1] (numeric) = 0.65762669435359794360913004599104 absolute error = 0.65762669435359794360913004599104 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.259 Order of pole = 8.656 TOP MAIN SOLVE Loop x[1] = 0.616 y[1] (analytic) = 0 y[1] (numeric) = 0.65911881773220225120211350334998 absolute error = 0.65911881773220225120211350334998 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.259 Order of pole = 8.659 TOP MAIN SOLVE Loop x[1] = 0.617 y[1] (analytic) = 0 y[1] (numeric) = 0.66061178550940837450559887053812 absolute error = 0.66061178550940837450559887053812 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.259 Order of pole = 8.662 TOP MAIN SOLVE Loop x[1] = 0.618 y[1] (analytic) = 0 y[1] (numeric) = 0.66210559756439581141901561918689 absolute error = 0.66210559756439581141901561918689 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.259 Order of pole = 8.665 TOP MAIN SOLVE Loop x[1] = 0.619 y[1] (analytic) = 0 y[1] (numeric) = 0.66360025377475383524338733927542 absolute error = 0.66360025377475383524338733927542 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.259 Order of pole = 8.668 TOP MAIN SOLVE Loop x[1] = 0.62 y[1] (analytic) = 0 y[1] (numeric) = 0.66509575401647991111881160024315 absolute error = 0.66509575401647991111881160024315 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.26 Order of pole = 8.671 TOP MAIN SOLVE Loop x[1] = 0.621 y[1] (analytic) = 0 y[1] (numeric) = 0.66659209816397811674357363186265 absolute error = 0.66659209816397811674357363186265 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.26 Order of pole = 8.674 TOP MAIN SOLVE Loop x[1] = 0.622 y[1] (analytic) = 0 y[1] (numeric) = 0.66808928609005756739076829441878 absolute error = 0.66808928609005756739076829441878 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.26 Order of pole = 8.677 TOP MAIN SOLVE Loop x[1] = 0.623 y[1] (analytic) = 0 y[1] (numeric) = 0.66958731766593084523829999919229 absolute error = 0.66958731766593084523829999919229 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.26 Order of pole = 8.681 TOP MAIN SOLVE Loop memory used=175.4MB, alloc=4.5MB, time=18.15 x[1] = 0.624 y[1] (analytic) = 0 y[1] (numeric) = 0.67108619276121243302812527786456 absolute error = 0.67108619276121243302812527786456 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.26 Order of pole = 8.684 TOP MAIN SOLVE Loop x[1] = 0.625 y[1] (analytic) = 0 y[1] (numeric) = 0.67258591124391715207059758300063 absolute error = 0.67258591124391715207059758300063 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.26 Order of pole = 8.687 TOP MAIN SOLVE Loop x[1] = 0.626 y[1] (analytic) = 0 y[1] (numeric) = 0.67408647298045860460976863098695 absolute error = 0.67408647298045860460976863098695 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.261 Order of pole = 8.69 TOP MAIN SOLVE Loop x[1] = 0.627 y[1] (analytic) = 0 y[1] (numeric) = 0.6755878778356476205654951734561 absolute error = 0.6755878778356476205654951734561 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.261 Order of pole = 8.693 TOP MAIN SOLVE Loop x[1] = 0.628 y[1] (analytic) = 0 y[1] (numeric) = 0.67709012567269070866819450308353 absolute error = 0.67709012567269070866819450308353 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.261 Order of pole = 8.697 TOP MAIN SOLVE Loop x[1] = 0.629 y[1] (analytic) = 0 y[1] (numeric) = 0.6785932163531885120020862644522 absolute error = 0.6785932163531885120020862644522 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.261 Order of pole = 8.7 TOP MAIN SOLVE Loop x[1] = 0.63 y[1] (analytic) = 0 y[1] (numeric) = 0.68009714973713426797275225021235 absolute error = 0.68009714973713426797275225021235 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.261 Order of pole = 8.703 TOP MAIN SOLVE Loop x[1] = 0.631 y[1] (analytic) = 0 y[1] (numeric) = 0.68160192568291227271483981678109 absolute error = 0.68160192568291227271483981678109 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.261 Order of pole = 8.706 TOP MAIN SOLVE Loop x[1] = 0.632 y[1] (analytic) = 0 y[1] (numeric) = 0.68310754404729634995572835209458 absolute error = 0.68310754404729634995572835209458 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.262 Order of pole = 8.71 TOP MAIN SOLVE Loop x[1] = 0.633 y[1] (analytic) = 0 y[1] (numeric) = 0.68461400468544832435097187021336 absolute error = 0.68461400468544832435097187021336 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.262 Order of pole = 8.713 TOP MAIN SOLVE Loop x[1] = 0.634 y[1] (analytic) = 0 y[1] (numeric) = 0.68612130745091649930732429365686 absolute error = 0.68612130745091649930732429365686 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.262 Order of pole = 8.716 TOP MAIN SOLVE Loop x[1] = 0.635 y[1] (analytic) = 0 y[1] (numeric) = 0.68762945219563413930914731397794 absolute error = 0.68762945219563413930914731397794 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.262 Order of pole = 8.72 memory used=179.2MB, alloc=4.5MB, time=18.55 TOP MAIN SOLVE Loop x[1] = 0.636 y[1] (analytic) = 0 y[1] (numeric) = 0.68913843876991795676399389405423 absolute error = 0.68913843876991795676399389405423 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.262 Order of pole = 8.723 TOP MAIN SOLVE Loop x[1] = 0.637 y[1] (analytic) = 0 y[1] (numeric) = 0.69064826702246660338315349164426 absolute error = 0.69064826702246660338315349164426 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.262 Order of pole = 8.726 TOP MAIN SOLVE Loop x[1] = 0.638 y[1] (analytic) = 0 y[1] (numeric) = 0.69215893680035916611293794270877 absolute error = 0.69215893680035916611293794270877 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.263 Order of pole = 8.73 TOP MAIN SOLVE Loop x[1] = 0.639 y[1] (analytic) = 0 y[1] (numeric) = 0.69367044794905366763247964460758 absolute error = 0.69367044794905366763247964460758 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.263 Order of pole = 8.733 TOP MAIN SOLVE Loop x[1] = 0.64 y[1] (analytic) = 0 y[1] (numeric) = 0.69518280031238557143380622332965 absolute error = 0.69518280031238557143380622332965 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.263 Order of pole = 8.736 TOP MAIN SOLVE Loop x[1] = 0.641 y[1] (analytic) = 0 y[1] (numeric) = 0.6966959937325662914999482551784 absolute error = 0.6966959937325662914999482551784 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.263 Order of pole = 8.74 TOP MAIN SOLVE Loop x[1] = 0.642 y[1] (analytic) = 0 y[1] (numeric) = 0.69821002805018170659682884159821 absolute error = 0.69821002805018170659682884159821 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.263 Order of pole = 8.743 TOP MAIN SOLVE Loop x[1] = 0.643 y[1] (analytic) = 0 y[1] (numeric) = 0.69972490310419067919467590587489 absolute error = 0.69972490310419067919467590587489 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.263 Order of pole = 8.746 TOP MAIN SOLVE Loop x[1] = 0.644 y[1] (analytic) = 0 y[1] (numeric) = 0.70124061873192357903468999205853 absolute error = 0.70124061873192357903468999205853 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.264 Order of pole = 8.749 TOP MAIN SOLVE Loop x[1] = 0.645 y[1] (analytic) = 0 y[1] (numeric) = 0.702757174769080811356692099428 absolute error = 0.702757174769080811356692099428 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.264 Order of pole = 8.753 TOP MAIN SOLVE Loop x[1] = 0.646 y[1] (analytic) = 0 y[1] (numeric) = 0.7042745710497313498034676799316 absolute error = 0.7042745710497313498034676799316 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.264 Order of pole = 8.756 TOP MAIN SOLVE Loop memory used=183.1MB, alloc=4.5MB, time=18.95 x[1] = 0.647 y[1] (analytic) = 0 y[1] (numeric) = 0.70579280740631127401751436108817 absolute error = 0.70579280740631127401751436108817 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.264 Order of pole = 8.759 TOP MAIN SOLVE Loop x[1] = 0.648 y[1] (analytic) = 0 y[1] (numeric) = 0.70731188366962231194589223260933 absolute error = 0.70731188366962231194589223260933 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.264 Order of pole = 8.763 TOP MAIN SOLVE Loop x[1] = 0.649 y[1] (analytic) = 0 y[1] (numeric) = 0.70883179966883038686886665130025 absolute error = 0.70883179966883038686886665130025 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.264 Order of pole = 8.766 TOP MAIN SOLVE Loop x[1] = 0.65 y[1] (analytic) = 0 y[1] (numeric) = 0.71035255523146416916802447540886 absolute error = 0.71035255523146416916802447540886 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.265 Order of pole = 8.769 TOP MAIN SOLVE Loop x[1] = 0.651 y[1] (analytic) = 0 y[1] (numeric) = 0.71187415018341363284953543631867 absolute error = 0.71187415018341363284953543631867 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.265 Order of pole = 8.773 TOP MAIN SOLVE Loop x[1] = 0.652 y[1] (analytic) = 0 y[1] (numeric) = 0.71339658434892861683822099211752 absolute error = 0.71339658434892861683822099211752 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.265 Order of pole = 8.776 TOP MAIN SOLVE Loop x[1] = 0.653 y[1] (analytic) = 0 y[1] (numeric) = 0.71491985755061739105808348392373 absolute error = 0.71491985755061739105808348392373 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.265 Order of pole = 8.779 TOP MAIN SOLVE Loop x[1] = 0.654 y[1] (analytic) = 0 y[1] (numeric) = 0.71644396960944522731493873171475 absolute error = 0.71644396960944522731493873171475 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.265 Order of pole = 8.783 TOP MAIN SOLVE Loop x[1] = 0.655 y[1] (analytic) = 0 y[1] (numeric) = 0.71796892034473297499678536158563 absolute error = 0.71796892034473297499678536158563 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.265 Order of pole = 8.786 TOP MAIN SOLVE Loop x[1] = 0.656 y[1] (analytic) = 0 y[1] (numeric) = 0.71949470957415564160753415067066 absolute error = 0.71949470957415564160753415067066 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.266 Order of pole = 8.789 TOP MAIN SOLVE Loop x[1] = 0.657 y[1] (analytic) = 0 y[1] (numeric) = 0.72102133711374097814971050919946 absolute error = 0.72102133711374097814971050919946 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.266 Order of pole = 8.793 TOP MAIN SOLVE Loop x[1] = 0.658 y[1] (analytic) = 0 y[1] (numeric) = 0.72254880277786806937173289113708 absolute error = 0.72254880277786806937173289113708 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.266 Order of pole = 8.796 TOP MAIN SOLVE Loop memory used=186.9MB, alloc=4.5MB, time=19.36 x[1] = 0.659 y[1] (analytic) = 0 y[1] (numeric) = 0.72407710637926592889535943538803 absolute error = 0.72407710637926592889535943538803 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.266 Order of pole = 8.799 TOP MAIN SOLVE Loop x[1] = 0.66 y[1] (analytic) = 0 y[1] (numeric) = 0.72560624772901209923888448843836 absolute error = 0.72560624772901209923888448843836 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.266 Order of pole = 8.803 TOP MAIN SOLVE Loop x[1] = 0.661 y[1] (analytic) = 0 y[1] (numeric) = 0.7271362266365312567516558463835 absolute error = 0.7271362266365312567516558463835 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.266 Order of pole = 8.806 TOP MAIN SOLVE Loop x[1] = 0.662 y[1] (analytic) = 0 y[1] (numeric) = 0.72866704290959382147547257935757 absolute error = 0.72866704290959382147547257935757 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.267 Order of pole = 8.809 TOP MAIN SOLVE Loop x[1] = 0.663 y[1] (analytic) = 0 y[1] (numeric) = 0.73019869635431457194841216426136 absolute error = 0.73019869635431457194841216426136 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.267 Order of pole = 8.812 TOP MAIN SOLVE Loop x[1] = 0.664 y[1] (analytic) = 0 y[1] (numeric) = 0.73173118677515126496662435220026 absolute error = 0.73173118677515126496662435220026 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.267 Order of pole = 8.816 TOP MAIN SOLVE Loop x[1] = 0.665 y[1] (analytic) = 0 y[1] (numeric) = 0.73326451397490326031961773501186 absolute error = 0.73326451397490326031961773501186 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.267 Order of pole = 8.819 TOP MAIN SOLVE Loop x[1] = 0.666 y[1] (analytic) = 0 y[1] (numeric) = 0.73479867775471015051455335050915 absolute error = 0.73479867775471015051455335050915 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.267 Order of pole = 8.822 TOP MAIN SOLVE Loop x[1] = 0.667 y[1] (analytic) = 0 y[1] (numeric) = 0.73633367791405039550504787841445 absolute error = 0.73633367791405039550504787841445 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.267 Order of pole = 8.825 TOP MAIN SOLVE Loop x[1] = 0.668 y[1] (analytic) = 0 y[1] (numeric) = 0.7378695142507399624399770282382 absolute error = 0.7378695142507399624399770282382 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.268 Order of pole = 8.829 TOP MAIN SOLVE Loop x[1] = 0.669 y[1] (analytic) = 0 y[1] (numeric) = 0.73940618656093097044775760639433 absolute error = 0.73940618656093097044775760639433 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.268 Order of pole = 8.832 TOP MAIN SOLVE Loop x[1] = 0.67 y[1] (analytic) = 0 y[1] (numeric) = 0.74094369463911034047157447247123 absolute error = 0.74094369463911034047157447247123 relative error = -1 % Correct digits = -1 h = 0.001 memory used=190.7MB, alloc=4.5MB, time=19.76 Complex estimate of poles used for equation 1 Radius of convergence = 4.268 Order of pole = 8.835 TOP MAIN SOLVE Loop x[1] = 0.671 y[1] (analytic) = 0 y[1] (numeric) = 0.74248203827809845017100615362572 absolute error = 0.74248203827809845017100615362572 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.268 Order of pole = 8.838 TOP MAIN SOLVE Loop x[1] = 0.672 y[1] (analytic) = 0 y[1] (numeric) = 0.74402121726904779390549028137269 absolute error = 0.74402121726904779390549028137269 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.268 Order of pole = 8.841 TOP MAIN SOLVE Loop x[1] = 0.673 y[1] (analytic) = 0 y[1] (numeric) = 0.74556123140144164781505724643961 absolute error = 0.74556123140144164781505724643961 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.268 Order of pole = 8.845 TOP MAIN SOLVE Loop x[1] = 0.674 y[1] (analytic) = 0 y[1] (numeric) = 0.74710208046309274001374753468255 absolute error = 0.74710208046309274001374753468255 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.269 Order of pole = 8.848 TOP MAIN SOLVE Loop x[1] = 0.675 y[1] (analytic) = 0 y[1] (numeric) = 0.74864376424014192591111511015722 absolute error = 0.74864376424014192591111511015722 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.269 Order of pole = 8.851 TOP MAIN SOLVE Loop x[1] = 0.676 y[1] (analytic) = 0 y[1] (numeric) = 0.75018628251705686867720595014744 absolute error = 0.75018628251705686867720595014744 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.269 Order of pole = 8.854 TOP MAIN SOLVE Loop x[1] = 0.677 y[1] (analytic) = 0 y[1] (numeric) = 0.75172963507663072486638741111705 absolute error = 0.75172963507663072486638741111705 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.269 Order of pole = 8.857 TOP MAIN SOLVE Loop x[1] = 0.678 y[1] (analytic) = 0 y[1] (numeric) = 0.75327382169998083521539051401625 absolute error = 0.75327382169998083521539051401625 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.269 Order of pole = 8.86 TOP MAIN SOLVE Loop x[1] = 0.679 y[1] (analytic) = 0 y[1] (numeric) = 0.75481884216654742063091348198535 absolute error = 0.75481884216654742063091348198535 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.269 Order of pole = 8.863 TOP MAIN SOLVE Loop x[1] = 0.68 y[1] (analytic) = 0 y[1] (numeric) = 0.75636469625409228338212094310892 absolute error = 0.75636469625409228338212094310892 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.27 Order of pole = 8.866 TOP MAIN SOLVE Loop x[1] = 0.681 y[1] (analytic) = 0 y[1] (numeric) = 0.75791138373869751351335912533076 absolute error = 0.75791138373869751351335912533076 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.27 Order of pole = 8.869 TOP MAIN SOLVE Loop memory used=194.5MB, alloc=4.5MB, time=20.16 x[1] = 0.682 y[1] (analytic) = 0 y[1] (numeric) = 0.75945890439476420049239311979937 absolute error = 0.75945890439476420049239311979937 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.27 Order of pole = 8.872 TOP MAIN SOLVE Loop x[1] = 0.683 y[1] (analytic) = 0 y[1] (numeric) = 0.76100725799501115010945787262843 absolute error = 0.76100725799501115010945787262843 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.27 Order of pole = 8.875 TOP MAIN SOLVE Loop x[1] = 0.684 y[1] (analytic) = 0 y[1] (numeric) = 0.76255644431047360664239998318483 absolute error = 0.76255644431047360664239998318483 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.27 Order of pole = 8.878 TOP MAIN SOLVE Loop x[1] = 0.685 y[1] (analytic) = 0 y[1] (numeric) = 0.7641064631105019803031726394161 absolute error = 0.7641064631105019803031726394161 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.27 Order of pole = 8.881 TOP MAIN SOLVE Loop x[1] = 0.686 y[1] (analytic) = 0 y[1] (numeric) = 0.76565731416276057998093110726095 absolute error = 0.76565731416276057998093110726095 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.27 Order of pole = 8.884 TOP MAIN SOLVE Loop x[1] = 0.687 y[1] (analytic) = 0 y[1] (numeric) = 0.7672089972332263512969611117129 absolute error = 0.7672089972332263512969611117129 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.271 Order of pole = 8.887 TOP MAIN SOLVE Loop x[1] = 0.688 y[1] (analytic) = 0 y[1] (numeric) = 0.76876151208618761998665720149269 absolute error = 0.76876151208618761998665720149269 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.271 Order of pole = 8.89 TOP MAIN SOLVE Loop x[1] = 0.689 y[1] (analytic) = 0 y[1] (numeric) = 0.77031485848424284062375277739668 absolute error = 0.77031485848424284062375277739668 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.271 Order of pole = 8.893 TOP MAIN SOLVE Loop x[1] = 0.69 y[1] (analytic) = 0 y[1] (numeric) = 0.77186903618829935070198788609363 absolute error = 0.77186903618829935070198788609363 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.271 Order of pole = 8.896 TOP MAIN SOLVE Loop x[1] = 0.691 y[1] (analytic) = 0 y[1] (numeric) = 0.77342404495757213008938513631245 absolute error = 0.77342404495757213008938513631245 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.271 Order of pole = 8.898 TOP MAIN SOLVE Loop x[1] = 0.692 y[1] (analytic) = 0 y[1] (numeric) = 0.77497988454958256587028818286978 absolute error = 0.77497988454958256587028818286978 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.271 Order of pole = 8.901 TOP MAIN SOLVE Loop x[1] = 0.693 y[1] (analytic) = 0 y[1] (numeric) = 0.77653655472015722259030114570404 absolute error = 0.77653655472015722259030114570404 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.271 Order of pole = 8.904 TOP MAIN SOLVE Loop memory used=198.3MB, alloc=4.5MB, time=20.56 x[1] = 0.694 y[1] (analytic) = 0 y[1] (numeric) = 0.7780940552234266179192510858871 absolute error = 0.7780940552234266179192510858871 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.271 Order of pole = 8.907 TOP MAIN SOLVE Loop x[1] = 0.695 y[1] (analytic) = 0 y[1] (numeric) = 0.77965238581182400374727924835513 absolute error = 0.77965238581182400374727924835513 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.272 Order of pole = 8.909 TOP MAIN SOLVE Loop x[1] = 0.696 y[1] (analytic) = 0 y[1] (numeric) = 0.78121154623608415272915020171552 absolute error = 0.78121154623608415272915020171552 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.272 Order of pole = 8.912 TOP MAIN SOLVE Loop x[1] = 0.697 y[1] (analytic) = 0 y[1] (numeric) = 0.78277153624524215029185125883062 absolute error = 0.78277153624524215029185125883062 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.272 Order of pole = 8.915 TOP MAIN SOLVE Loop x[1] = 0.698 y[1] (analytic) = 0 y[1] (numeric) = 0.78433235558663219212053764783419 absolute error = 0.78433235558663219212053764783419 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.272 Order of pole = 8.918 TOP MAIN SOLVE Loop x[1] = 0.699 y[1] (analytic) = 0 y[1] (numeric) = 0.78589400400588638713786182169004 absolute error = 0.78589400400588638713786182169004 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.272 Order of pole = 8.92 TOP MAIN SOLVE Loop x[1] = 0.7 y[1] (analytic) = 0 y[1] (numeric) = 0.78745648124693356599170804524213 absolute error = 0.78745648124693356599170804524213 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.272 Order of pole = 8.923 TOP MAIN SOLVE Loop x[1] = 0.701 y[1] (analytic) = 0 y[1] (numeric) = 0.78901978705199809506633598182158 absolute error = 0.78901978705199809506633598182158 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.272 Order of pole = 8.925 TOP MAIN SOLVE Loop x[1] = 0.702 y[1] (analytic) = 0 y[1] (numeric) = 0.79058392116159869603191941676096 absolute error = 0.79058392116159869603191941676096 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.272 Order of pole = 8.928 TOP MAIN SOLVE Loop x[1] = 0.703 y[1] (analytic) = 0 y[1] (numeric) = 0.792148883314547270947448502514 absolute error = 0.792148883314547270947448502514 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.272 Order of pole = 8.93 TOP MAIN SOLVE Loop x[1] = 0.704 y[1] (analytic) = 0 y[1] (numeric) = 0.79371467324794773293194598938581 absolute error = 0.79371467324794773293194598938581 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.273 Order of pole = 8.933 TOP MAIN SOLVE Loop memory used=202.1MB, alloc=4.5MB, time=20.96 x[1] = 0.705 y[1] (analytic) = 0 y[1] (numeric) = 0.79528129069719484241892981704296 absolute error = 0.79528129069719484241892981704296 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.273 Order of pole = 8.935 TOP MAIN SOLVE Loop x[1] = 0.706 y[1] (analytic) = 0 y[1] (numeric) = 0.79684873539597304900903618489503 absolute error = 0.79684873539597304900903618489503 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.273 Order of pole = 8.938 TOP MAIN SOLVE Loop x[1] = 0.707 y[1] (analytic) = 0 y[1] (numeric) = 0.79841700707625533893569879402128 absolute error = 0.79841700707625533893569879402128 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.273 Order of pole = 8.94 TOP MAIN SOLVE Loop x[1] = 0.708 y[1] (analytic) = 0 y[1] (numeric) = 0.79998610546830208815876135946312 absolute error = 0.79998610546830208815876135946312 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.273 Order of pole = 8.943 TOP MAIN SOLVE Loop x[1] = 0.709 y[1] (analytic) = 0 y[1] (numeric) = 0.80155603030065992110088172932065 absolute error = 0.80155603030065992110088172932065 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.273 Order of pole = 8.945 TOP MAIN SOLVE Loop x[1] = 0.71 y[1] (analytic) = 0 y[1] (numeric) = 0.80312678130016057504156701608919 absolute error = 0.80312678130016057504156701608919 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.273 Order of pole = 8.947 TOP MAIN SOLVE Loop x[1] = 0.711 y[1] (analytic) = 0 y[1] (numeric) = 0.80469835819191977018366004595914 absolute error = 0.80469835819191977018366004595914 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.273 Order of pole = 8.95 TOP MAIN SOLVE Loop x[1] = 0.712 y[1] (analytic) = 0 y[1] (numeric) = 0.80627076069933608540707816329311 absolute error = 0.80627076069933608540707816329311 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.273 Order of pole = 8.952 TOP MAIN SOLVE Loop x[1] = 0.713 y[1] (analytic) = 0 y[1] (numeric) = 0.80784398854408983972458599010237 absolute error = 0.80784398854408983972458599010237 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.273 Order of pole = 8.954 TOP MAIN SOLVE Loop x[1] = 0.714 y[1] (analytic) = 0 y[1] (numeric) = 0.80941804144614197945436413398727 absolute error = 0.80941804144614197945436413398727 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.273 Order of pole = 8.956 TOP MAIN SOLVE Loop x[1] = 0.715 y[1] (analytic) = 0 y[1] (numeric) = 0.81099291912373297112411606260235 absolute error = 0.81099291912373297112411606260235 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.273 Order of pole = 8.958 TOP MAIN SOLVE Loop x[1] = 0.716 y[1] (analytic) = 0 y[1] (numeric) = 0.81256862129338170012143541817731 absolute error = 0.81256862129338170012143541817731 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.273 Order of pole = 8.961 TOP MAIN SOLVE Loop memory used=206.0MB, alloc=4.5MB, time=21.36 x[1] = 0.717 y[1] (analytic) = 0 y[1] (numeric) = 0.81414514766988437510513593189322 absolute error = 0.81414514766988437510513593189322 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.273 Order of pole = 8.963 TOP MAIN SOLVE Loop x[1] = 0.718 y[1] (analytic) = 0 y[1] (numeric) = 0.81572249796631343819222581490415 absolute error = 0.81572249796631343819222581490415 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 8.965 TOP MAIN SOLVE Loop x[1] = 0.719 y[1] (analytic) = 0 y[1] (numeric) = 0.81730067189401648093518805043555 absolute error = 0.81730067189401648093518805043555 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 8.967 TOP MAIN SOLVE Loop x[1] = 0.72 y[1] (analytic) = 0 y[1] (numeric) = 0.81887966916261516610420738961153 absolute error = 0.81887966916261516610420738961153 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 8.969 TOP MAIN SOLVE Loop x[1] = 0.721 y[1] (analytic) = 0 y[1] (numeric) = 0.82045948948000415528896406239505 absolute error = 0.82045948948000415528896406239505 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 8.971 TOP MAIN SOLVE Loop x[1] = 0.722 y[1] (analytic) = 0 y[1] (numeric) = 0.82204013255235004233459325420205 absolute error = 0.82204013255235004233459325420205 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 8.973 TOP MAIN SOLVE Loop x[1] = 0.723 y[1] (analytic) = 0 y[1] (numeric) = 0.82362159808409029262638826830822 absolute error = 0.82362159808409029262638826830822 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 8.975 TOP MAIN SOLVE Loop x[1] = 0.724 y[1] (analytic) = 0 y[1] (numeric) = 0.82520388577793218823780399404361 absolute error = 0.82520388577793218823780399404361 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 8.977 TOP MAIN SOLVE Loop x[1] = 0.725 y[1] (analytic) = 0 y[1] (numeric) = 0.82678699533485177895629583090571 absolute error = 0.82678699533485177895629583090571 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 8.978 TOP MAIN SOLVE Loop x[1] = 0.726 y[1] (analytic) = 0 y[1] (numeric) = 0.82837092645409283920150757905817 absolute error = 0.82837092645409283920150757905817 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 8.98 TOP MAIN SOLVE Loop x[1] = 0.727 y[1] (analytic) = 0 y[1] (numeric) = 0.82995567883316583085029999716451 absolute error = 0.82995567883316583085029999716451 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 8.982 TOP MAIN SOLVE Loop x[1] = 0.728 y[1] (analytic) = 0 y[1] (numeric) = 0.83154125216784687198308974908053 absolute error = 0.83154125216784687198308974908053 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 8.984 TOP MAIN SOLVE Loop memory used=209.8MB, alloc=4.5MB, time=21.76 x[1] = 0.729 y[1] (analytic) = 0 y[1] (numeric) = 0.83312764615217671156594631154441 absolute error = 0.83312764615217671156594631154441 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 8.985 TOP MAIN SOLVE Loop x[1] = 0.73 y[1] (analytic) = 0 y[1] (numeric) = 0.83471486047845971008287209561065 absolute error = 0.83471486047845971008287209561065 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 8.987 TOP MAIN SOLVE Loop x[1] = 0.731 y[1] (analytic) = 0 y[1] (numeric) = 0.83630289483726282613266854512609 absolute error = 0.83630289483726282613266854512609 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 8.989 TOP MAIN SOLVE Loop x[1] = 0.732 y[1] (analytic) = 0 y[1] (numeric) = 0.83789174891741460900476831599841 absolute error = 0.83789174891741460900476831599841 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 8.99 TOP MAIN SOLVE Loop x[1] = 0.733 y[1] (analytic) = 0 y[1] (numeric) = 0.83948142240600419724839081031757 absolute error = 0.83948142240600419724839081031757 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 8.992 TOP MAIN SOLVE Loop x[1] = 0.734 y[1] (analytic) = 0 y[1] (numeric) = 0.84107191498838032324935533951778 absolute error = 0.84107191498838032324935533951778 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 8.993 TOP MAIN SOLVE Loop x[1] = 0.735 y[1] (analytic) = 0 y[1] (numeric) = 0.84266322634815032382886302067389 absolute error = 0.84266322634815032382886302067389 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 8.995 TOP MAIN SOLVE Loop x[1] = 0.736 y[1] (analytic) = 0 y[1] (numeric) = 0.84425535616717915687853516967551 absolute error = 0.84425535616717915687853516967551 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 8.996 TOP MAIN SOLVE Loop x[1] = 0.737 y[1] (analytic) = 0 y[1] (numeric) = 0.84584830412558842404597244438112 absolute error = 0.84584830412558842404597244438112 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 8.998 TOP MAIN SOLVE Loop x[1] = 0.738 y[1] (analytic) = 0 y[1] (numeric) = 0.84744206990175539948507530989082 absolute error = 0.84744206990175539948507530989082 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 8.999 TOP MAIN SOLVE Loop x[1] = 0.739 y[1] (analytic) = 0 y[1] (numeric) = 0.84903665317231206468534254676159 absolute error = 0.84903665317231206468534254676159 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 9 TOP MAIN SOLVE Loop memory used=213.6MB, alloc=4.5MB, time=22.17 x[1] = 0.74 y[1] (analytic) = 0 y[1] (numeric) = 0.85063205361214414939434050129519 absolute error = 0.85063205361214414939434050129519 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 9.002 TOP MAIN SOLVE Loop x[1] = 0.741 y[1] (analytic) = 0 y[1] (numeric) = 0.85222827089439017864751158493166 absolute error = 0.85222827089439017864751158493166 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 9.003 TOP MAIN SOLVE Loop x[1] = 0.742 y[1] (analytic) = 0 y[1] (numeric) = 0.85382530469044052591946616725773 absolute error = 0.85382530469044052591946616725773 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 9.004 TOP MAIN SOLVE Loop x[1] = 0.743 y[1] (analytic) = 0 y[1] (numeric) = 0.85542315466993647241087747416914 absolute error = 0.85542315466993647241087747416914 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 9.005 TOP MAIN SOLVE Loop x[1] = 0.744 y[1] (analytic) = 0 y[1] (numeric) = 0.85702182050076927248507439929067 absolute error = 0.85702182050076927248507439929067 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 9.007 TOP MAIN SOLVE Loop x[1] = 0.745 y[1] (analytic) = 0 y[1] (numeric) = 0.8586213018490792252684022628413 absolute error = 0.8586213018490792252684022628413 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 9.008 TOP MAIN SOLVE Loop x[1] = 0.746 y[1] (analytic) = 0 y[1] (numeric) = 0.86022159837925475242839650772094 absolute error = 0.86022159837925475242839650772094 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 9.009 TOP MAIN SOLVE Loop x[1] = 0.747 y[1] (analytic) = 0 y[1] (numeric) = 0.86182270975393148214378910767806 absolute error = 0.86182270975393148214378910767806 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 9.01 TOP MAIN SOLVE Loop x[1] = 0.748 y[1] (analytic) = 0 y[1] (numeric) = 0.8634246356339913392803420769848 absolute error = 0.8634246356339913392803420769848 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 9.011 TOP MAIN SOLVE Loop x[1] = 0.749 y[1] (analytic) = 0 y[1] (numeric) = 0.86502737567856164178647691509116 absolute error = 0.86502737567856164178647691509116 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 9.012 TOP MAIN SOLVE Loop x[1] = 0.75 y[1] (analytic) = 0 y[1] (numeric) = 0.86663092954501420332264309324768 absolute error = 0.86663092954501420332264309324768 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.273 Order of pole = 9.013 TOP MAIN SOLVE Loop x[1] = 0.751 y[1] (analytic) = 0 y[1] (numeric) = 0.86823529688896444213834279307411 absolute error = 0.86823529688896444213834279307411 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.273 Order of pole = 9.014 TOP MAIN SOLVE Loop memory used=217.4MB, alloc=4.5MB, time=22.57 x[1] = 0.752 y[1] (analytic) = 0 y[1] (numeric) = 0.86984047736427049621070303951008 absolute error = 0.86984047736427049621070303951008 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.273 Order of pole = 9.014 TOP MAIN SOLVE Loop x[1] = 0.753 y[1] (analytic) = 0 y[1] (numeric) = 0.8714464706230323446584601325145 absolute error = 0.8714464706230323446584601325145 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.273 Order of pole = 9.015 TOP MAIN SOLVE Loop x[1] = 0.754 y[1] (analytic) = 0 y[1] (numeric) = 0.8730532763155909354451948732878 absolute error = 0.8730532763155909354451948732878 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.273 Order of pole = 9.016 TOP MAIN SOLVE Loop x[1] = 0.755 y[1] (analytic) = 0 y[1] (numeric) = 0.87466089409052731938563050168189 absolute error = 0.87466089409052731938563050168189 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.273 Order of pole = 9.017 TOP MAIN SOLVE Loop x[1] = 0.756 y[1] (analytic) = 0 y[1] (numeric) = 0.87626932359466179046877851184572 absolute error = 0.87626932359466179046877851184572 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.273 Order of pole = 9.017 TOP MAIN SOLVE Loop x[1] = 0.757 y[1] (analytic) = 0 y[1] (numeric) = 0.87787856447305303251169059304104 absolute error = 0.87787856447305303251169059304104 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.273 Order of pole = 9.018 TOP MAIN SOLVE Loop x[1] = 0.758 y[1] (analytic) = 0 y[1] (numeric) = 0.87948861636899727215754785196629 absolute error = 0.87948861636899727215754785196629 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.273 Order of pole = 9.019 TOP MAIN SOLVE Loop x[1] = 0.759 y[1] (analytic) = 0 y[1] (numeric) = 0.8810994789240274382317912118634 absolute error = 0.8810994789240274382317912118634 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.273 Order of pole = 9.019 TOP MAIN SOLVE Loop x[1] = 0.76 y[1] (analytic) = 0 y[1] (numeric) = 0.88271115177791232746996945216953 absolute error = 0.88271115177791232746996945216953 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.273 Order of pole = 9.02 TOP MAIN SOLVE Loop x[1] = 0.761 y[1] (analytic) = 0 y[1] (numeric) = 0.88432363456865577663095375053487 absolute error = 0.88432363456865577663095375053487 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.273 Order of pole = 9.02 TOP MAIN SOLVE Loop x[1] = 0.762 y[1] (analytic) = 0 y[1] (numeric) = 0.88593692693249584100913981668095 absolute error = 0.88593692693249584100913981668095 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.273 Order of pole = 9.021 TOP MAIN SOLVE Loop x[1] = 0.763 y[1] (analytic) = 0 y[1] (numeric) = 0.88755102850390397935923076484629 absolute error = 0.88755102850390397935923076484629 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.272 Order of pole = 9.021 memory used=221.2MB, alloc=4.5MB, time=22.96 TOP MAIN SOLVE Loop x[1] = 0.764 y[1] (analytic) = 0 y[1] (numeric) = 0.8891659389155842452471657584856 absolute error = 0.8891659389155842452471657584856 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.272 Order of pole = 9.022 TOP MAIN SOLVE Loop x[1] = 0.765 y[1] (analytic) = 0 y[1] (numeric) = 0.89078165779847248484073117748419 absolute error = 0.89078165779847248484073117748419 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.272 Order of pole = 9.022 TOP MAIN SOLVE Loop x[1] = 0.766 y[1] (analytic) = 0 y[1] (numeric) = 0.89239818478173554115336260445372 absolute error = 0.89239818478173554115336260445372 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.272 Order of pole = 9.022 TOP MAIN SOLVE Loop x[1] = 0.767 y[1] (analytic) = 0 y[1] (numeric) = 0.89401551949277046475461730272203 absolute error = 0.89401551949277046475461730272203 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.272 Order of pole = 9.023 TOP MAIN SOLVE Loop x[1] = 0.768 y[1] (analytic) = 0 y[1] (numeric) = 0.89563366155720373096076806445664 absolute error = 0.89563366155720373096076806445664 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.272 Order of pole = 9.023 TOP MAIN SOLVE Loop x[1] = 0.769 y[1] (analytic) = 0 y[1] (numeric) = 0.89725261059889046351894034300648 absolute error = 0.89725261059889046351894034300648 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.272 Order of pole = 9.023 TOP MAIN SOLVE Loop x[1] = 0.77 y[1] (analytic) = 0 y[1] (numeric) = 0.89887236623991366479818544905181 absolute error = 0.89887236623991366479818544905181 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.272 Order of pole = 9.023 TOP MAIN SOLVE Loop x[1] = 0.771 y[1] (analytic) = 0 y[1] (numeric) = 0.9004929281005834525008532855611 absolute error = 0.9004929281005834525008532855611 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.271 Order of pole = 9.023 TOP MAIN SOLVE Loop x[1] = 0.772 y[1] (analytic) = 0 y[1] (numeric) = 0.9021142957994363029075986219127 absolute error = 0.9021142957994363029075986219127 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.271 Order of pole = 9.023 TOP MAIN SOLVE Loop x[1] = 0.773 y[1] (analytic) = 0 y[1] (numeric) = 0.90373646895323430066932526289612 absolute error = 0.90373646895323430066932526289612 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.271 Order of pole = 9.023 TOP MAIN SOLVE Loop x[1] = 0.774 y[1] (analytic) = 0 y[1] (numeric) = 0.90535944717696439515934265371428 absolute error = 0.90535944717696439515934265371428 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.271 Order of pole = 9.023 TOP MAIN SOLVE Loop memory used=225.0MB, alloc=4.5MB, time=23.36 x[1] = 0.775 y[1] (analytic) = 0 y[1] (numeric) = 0.90698323008383766339897947761668 absolute error = 0.90698323008383766339897947761668 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.271 Order of pole = 9.023 TOP MAIN SOLVE Loop x[1] = 0.776 y[1] (analytic) = 0 y[1] (numeric) = 0.90860781728528857956986864845991 absolute error = 0.90860781728528857956986864845991 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.271 Order of pole = 9.023 TOP MAIN SOLVE Loop x[1] = 0.777 y[1] (analytic) = 0 y[1] (numeric) = 0.91023320839097429112608777637437 absolute error = 0.91023320839097429112608777637437 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.271 Order of pole = 9.023 TOP MAIN SOLVE Loop x[1] = 0.778 y[1] (analytic) = 0 y[1] (numeric) = 0.91185940300877390151930869087428 absolute error = 0.91185940300877390151930869087428 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.27 Order of pole = 9.023 TOP MAIN SOLVE Loop x[1] = 0.779 y[1] (analytic) = 0 y[1] (numeric) = 0.91348640074478775955007894224526 absolute error = 0.91348640074478775955007894224526 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.27 Order of pole = 9.023 TOP MAIN SOLVE Loop x[1] = 0.78 y[1] (analytic) = 0 y[1] (numeric) = 0.91511420120333675535832736894442 absolute error = 0.91511420120333675535832736894442 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.27 Order of pole = 9.023 TOP MAIN SOLVE Loop x[1] = 0.781 y[1] (analytic) = 0 y[1] (numeric) = 0.91674280398696162306615481612015 absolute error = 0.91674280398696162306615481612015 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.27 Order of pole = 9.023 TOP MAIN SOLVE Loop x[1] = 0.782 y[1] (analytic) = 0 y[1] (numeric) = 0.91837220869642225008593991827144 absolute error = 0.91837220869642225008593991827144 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.27 Order of pole = 9.022 TOP MAIN SOLVE Loop x[1] = 0.783 y[1] (analytic) = 0 y[1] (numeric) = 0.92000241493069699310675851759301 absolute error = 0.92000241493069699310675851759301 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.27 Order of pole = 9.022 TOP MAIN SOLVE Loop x[1] = 0.784 y[1] (analytic) = 0 y[1] (numeric) = 0.92163342228698200077208377876623 absolute error = 0.92163342228698200077208377876623 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.269 Order of pole = 9.022 TOP MAIN SOLVE Loop x[1] = 0.785 y[1] (analytic) = 0 y[1] (numeric) = 0.92326523036069054306170238093461 absolute error = 0.92326523036069054306170238093461 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.269 Order of pole = 9.021 TOP MAIN SOLVE Loop x[1] = 0.786 y[1] (analytic) = 0 y[1] (numeric) = 0.92489783874545234739075031842528 absolute error = 0.92489783874545234739075031842528 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.269 Order of pole = 9.021 TOP MAIN SOLVE Loop memory used=228.8MB, alloc=4.5MB, time=23.75 x[1] = 0.787 y[1] (analytic) = 0 y[1] (numeric) = 0.92653124703311294143873982352676 absolute error = 0.92653124703311294143873982352676 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.269 Order of pole = 9.021 TOP MAIN SOLVE Loop x[1] = 0.788 y[1] (analytic) = 0 y[1] (numeric) = 0.92816545481373300272141673739197 absolute error = 0.92816545481373300272141673739197 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.269 Order of pole = 9.02 TOP MAIN SOLVE Loop x[1] = 0.789 y[1] (analytic) = 0 y[1] (numeric) = 0.9298004616755877149182552989911 absolute error = 0.9298004616755877149182552989911 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.268 Order of pole = 9.02 TOP MAIN SOLVE Loop x[1] = 0.79 y[1] (analytic) = 0 y[1] (numeric) = 0.9314362672051661309683647970801 absolute error = 0.9314362672051661309683647970801 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.268 Order of pole = 9.019 TOP MAIN SOLVE Loop x[1] = 0.791 y[1] (analytic) = 0 y[1] (numeric) = 0.933072870987170542947549836469 absolute error = 0.933072870987170542947549836469 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.268 Order of pole = 9.018 TOP MAIN SOLVE Loop x[1] = 0.792 y[1] (analytic) = 0 y[1] (numeric) = 0.93471027260451585873923310756371 absolute error = 0.93471027260451585873923310756371 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.268 Order of pole = 9.018 TOP MAIN SOLVE Loop x[1] = 0.793 y[1] (analytic) = 0 y[1] (numeric) = 0.93634847163832898551191651731143 absolute error = 0.93634847163832898551191651731143 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.268 Order of pole = 9.017 TOP MAIN SOLVE Loop x[1] = 0.794 y[1] (analytic) = 0 y[1] (numeric) = 0.93798746766794822001582334040266 absolute error = 0.93798746766794822001582334040266 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.267 Order of pole = 9.017 TOP MAIN SOLVE Loop x[1] = 0.795 y[1] (analytic) = 0 y[1] (numeric) = 0.93962726027092264571133068197213 absolute error = 0.93962726027092264571133068197213 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.267 Order of pole = 9.016 TOP MAIN SOLVE Loop x[1] = 0.796 y[1] (analytic) = 0 y[1] (numeric) = 0.94126784902301153674176800720154 absolute error = 0.94126784902301153674176800720154 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.267 Order of pole = 9.015 TOP MAIN SOLVE Loop x[1] = 0.797 y[1] (analytic) = 0 y[1] (numeric) = 0.94290923349818376876312378926356 absolute error = 0.94290923349818376876312378926356 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.267 Order of pole = 9.014 TOP MAIN SOLVE Loop x[1] = 0.798 y[1] (analytic) = 0 y[1] (numeric) = 0.94455141326861723664316845506849 absolute error = 0.94455141326861723664316845506849 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.266 Order of pole = 9.014 memory used=232.7MB, alloc=4.5MB, time=24.16 TOP MAIN SOLVE Loop x[1] = 0.799 y[1] (analytic) = 0 y[1] (numeric) = 0.94619438790469827904246776839268 absolute error = 0.94619438790469827904246776839268 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.266 Order of pole = 9.013 TOP MAIN SOLVE Loop x[1] = 0.8 y[1] (analytic) = 0 y[1] (numeric) = 0.94783815697502110988972658229435 absolute error = 0.94783815697502110988972658229435 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.266 Order of pole = 9.012 TOP MAIN SOLVE Loop x[1] = 0.801 y[1] (analytic) = 0 y[1] (numeric) = 0.94948272004638725676386851737431 absolute error = 0.94948272004638725676386851737431 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.266 Order of pole = 9.011 TOP MAIN SOLVE Loop x[1] = 0.802 y[1] (analytic) = 0 y[1] (numeric) = 0.95112807668380500619522257953351 absolute error = 0.95112807668380500619522257953351 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.266 Order of pole = 9.01 TOP MAIN SOLVE Loop x[1] = 0.803 y[1] (analytic) = 0 y[1] (numeric) = 0.95277422645048885589815302053777 absolute error = 0.95277422645048885589815302053777 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.265 Order of pole = 9.009 TOP MAIN SOLVE Loop x[1] = 0.804 y[1] (analytic) = 0 y[1] (numeric) = 0.95442116890785897394743386704485 absolute error = 0.95442116890785897394743386704485 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.265 Order of pole = 9.008 TOP MAIN SOLVE Loop x[1] = 0.805 y[1] (analytic) = 0 y[1] (numeric) = 0.95606890361554066491063449890645 absolute error = 0.95606890361554066491063449890645 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.265 Order of pole = 9.007 TOP MAIN SOLVE Loop x[1] = 0.806 y[1] (analytic) = 0 y[1] (numeric) = 0.95771743013136384294874744565497 absolute error = 0.95771743013136384294874744565497 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.265 Order of pole = 9.006 TOP MAIN SOLVE Loop x[1] = 0.807 y[1] (analytic) = 0 y[1] (numeric) = 0.95936674801136251189725419125309 absolute error = 0.95936674801136251189725419125309 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.264 Order of pole = 9.005 TOP MAIN SOLVE Loop x[1] = 0.808 y[1] (analytic) = 0 y[1] (numeric) = 0.96101685680977425233978923155575 absolute error = 0.96101685680977425233978923155575 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.264 Order of pole = 9.004 TOP MAIN SOLVE Loop x[1] = 0.809 y[1] (analytic) = 0 y[1] (numeric) = 0.96266775607903971568652691664485 absolute error = 0.96266775607903971568652691664485 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.264 Order of pole = 9.003 TOP MAIN SOLVE Loop memory used=236.5MB, alloc=4.5MB, time=24.56 x[1] = 0.81 y[1] (analytic) = 0 y[1] (numeric) = 0.96431944536980212526937973138401 absolute error = 0.96431944536980212526937973138401 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.264 Order of pole = 9.002 TOP MAIN SOLVE Loop x[1] = 0.811 y[1] (analytic) = 0 y[1] (numeric) = 0.9659719242309067844660606223453 absolute error = 0.9659719242309067844660606223453 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.263 Order of pole = 9.001 TOP MAIN SOLVE Loop x[1] = 0.812 y[1] (analytic) = 0 y[1] (numeric) = 0.96762519220940059186502576782378 absolute error = 0.96762519220940059186502576782378 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.263 Order of pole = 9 TOP MAIN SOLVE Loop x[1] = 0.813 y[1] (analytic) = 0 y[1] (numeric) = 0.96927924885053156348327781012485 absolute error = 0.96927924885053156348327781012485 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.263 Order of pole = 8.998 TOP MAIN SOLVE Loop x[1] = 0.814 y[1] (analytic) = 0 y[1] (numeric) = 0.97093409369774836204897302583121 absolute error = 0.97093409369774836204897302583121 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.262 Order of pole = 8.997 TOP MAIN SOLVE Loop x[1] = 0.815 y[1] (analytic) = 0 y[1] (numeric) = 0.97258972629269983336073920048097 absolute error = 0.97258972629269983336073920048097 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.262 Order of pole = 8.996 TOP MAIN SOLVE Loop x[1] = 0.816 y[1] (analytic) = 0 y[1] (numeric) = 0.97424614617523454973557409916861 absolute error = 0.97424614617523454973557409916861 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.262 Order of pole = 8.995 TOP MAIN SOLVE Loop x[1] = 0.817 y[1] (analytic) = 0 y[1] (numeric) = 0.97590335288340036055715738417164 absolute error = 0.97590335288340036055715738417164 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.262 Order of pole = 8.993 TOP MAIN SOLVE Loop x[1] = 0.818 y[1] (analytic) = 0 y[1] (numeric) = 0.97756134595344394993637162496474 absolute error = 0.97756134595344394993637162496474 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.261 Order of pole = 8.992 TOP MAIN SOLVE Loop x[1] = 0.819 y[1] (analytic) = 0 y[1] (numeric) = 0.97922012491981040149579067507112 absolute error = 0.97922012491981040149579067507112 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.261 Order of pole = 8.991 TOP MAIN SOLVE Loop x[1] = 0.82 y[1] (analytic) = 0 y[1] (numeric) = 0.98087968931514277028985615427913 absolute error = 0.98087968931514277028985615427913 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.261 Order of pole = 8.989 TOP MAIN SOLVE Loop x[1] = 0.821 y[1] (analytic) = 0 y[1] (numeric) = 0.98254003867028166187242507398712 absolute error = 0.98254003867028166187242507398712 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.261 Order of pole = 8.988 TOP MAIN SOLVE Loop memory used=240.3MB, alloc=4.5MB, time=24.96 x[1] = 0.822 y[1] (analytic) = 0 y[1] (numeric) = 0.98420117251426481852333377799752 absolute error = 0.98420117251426481852333377799752 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.26 Order of pole = 8.987 TOP MAIN SOLVE Loop x[1] = 0.823 y[1] (analytic) = 0 y[1] (numeric) = 0.98586309037432671264558534113327 absolute error = 0.98586309037432671264558534113327 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.26 Order of pole = 8.985 TOP MAIN SOLVE Loop x[1] = 0.824 y[1] (analytic) = 0 y[1] (numeric) = 0.9875257917758981473447293737677 absolute error = 0.9875257917758981473447293737677 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.26 Order of pole = 8.984 TOP MAIN SOLVE Loop x[1] = 0.825 y[1] (analytic) = 0 y[1] (numeric) = 0.98918927624260586420196482191836 absolute error = 0.98918927624260586420196482191836 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.259 Order of pole = 8.982 TOP MAIN SOLVE Loop x[1] = 0.826 y[1] (analytic) = 0 y[1] (numeric) = 0.99085354329627215825245783013342 absolute error = 0.99085354329627215825245783013342 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.259 Order of pole = 8.981 TOP MAIN SOLVE Loop x[1] = 0.827 y[1] (analytic) = 0 y[1] (numeric) = 0.99251859245691450018032804817608 absolute error = 0.99251859245691450018032804817608 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.259 Order of pole = 8.979 TOP MAIN SOLVE Loop x[1] = 0.828 y[1] (analytic) = 0 y[1] (numeric) = 0.99418442324274516574171791267079 absolute error = 0.99418442324274516574171791267079 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.259 Order of pole = 8.978 TOP MAIN SOLVE Loop x[1] = 0.829 y[1] (analytic) = 0 y[1] (numeric) = 0.99585103517017087242732042159939 absolute error = 0.99585103517017087242732042159939 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.258 Order of pole = 8.976 TOP MAIN SOLVE Loop x[1] = 0.83 y[1] (analytic) = 0 y[1] (numeric) = 0.9975184277537924233757017430139 absolute error = 0.9975184277537924233757017430139 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.258 Order of pole = 8.975 TOP MAIN SOLVE Loop x[1] = 0.831 y[1] (analytic) = 0 y[1] (numeric) = 0.99918660050640435854871565975484 absolute error = 0.99918660050640435854871565975484 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.258 Order of pole = 8.973 TOP MAIN SOLVE Loop x[1] = 0.832 y[1] (analytic) = 0 y[1] (numeric) = 1.0008555529389946131802673495227 absolute error = 1.0008555529389946131802673495227 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.257 Order of pole = 8.972 TOP MAIN SOLVE Loop x[1] = 0.833 y[1] (analytic) = 0 y[1] (numeric) = 1.0025252845607441835096443345404 absolute error = 1.0025252845607441835096443345404 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.257 Order of pole = 8.97 memory used=244.1MB, alloc=4.5MB, time=25.36 TOP MAIN SOLVE Loop x[1] = 0.834 y[1] (analytic) = 0 y[1] (numeric) = 1.0041957948790267998105926074637 absolute error = 1.0041957948790267998105926074637 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.257 Order of pole = 8.968 TOP MAIN SOLVE Loop x[1] = 0.835 y[1] (analytic) = 0 y[1] (numeric) = 1.0058670833994086067272759503446 absolute error = 1.0058670833994086067272759503446 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.256 Order of pole = 8.967 TOP MAIN SOLVE Loop x[1] = 0.836 y[1] (analytic) = 0 y[1] (numeric) = 1.007539149625647850928216311533 absolute error = 1.007539149625647850928216311533 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.256 Order of pole = 8.965 TOP MAIN SOLVE Loop x[1] = 0.837 y[1] (analytic) = 0 y[1] (numeric) = 1.0092119930596945760892727916179 absolute error = 1.0092119930596945760892727916179 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.256 Order of pole = 8.963 TOP MAIN SOLVE Loop x[1] = 0.838 y[1] (analytic) = 0 y[1] (numeric) = 1.0108856132016903252166763140708 absolute error = 1.0108856132016903252166763140708 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.256 Order of pole = 8.962 TOP MAIN SOLVE Loop x[1] = 0.839 y[1] (analytic) = 0 y[1] (numeric) = 1.0125600095499678503210964193685 absolute error = 1.0125600095499678503210964193685 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.96 TOP MAIN SOLVE Loop x[1] = 0.84 y[1] (analytic) = 0 y[1] (numeric) = 1.0142351816010508294536758232551 absolute error = 1.0142351816010508294536758232551 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.958 TOP MAIN SOLVE Loop x[1] = 0.841 y[1] (analytic) = 0 y[1] (numeric) = 1.0159111288496535911149274206668 absolute error = 1.0159111288496535911149274206668 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.957 TOP MAIN SOLVE Loop x[1] = 0.842 y[1] (analytic) = 0 y[1] (numeric) = 1.0175878507886808460473472969078 absolute error = 1.0175878507886808460473472969078 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.254 Order of pole = 8.955 TOP MAIN SOLVE Loop x[1] = 0.843 y[1] (analytic) = 0 y[1] (numeric) = 1.0192653469092274264225560271486 absolute error = 1.0192653469092274264225560271486 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.254 Order of pole = 8.953 TOP MAIN SOLVE Loop x[1] = 0.844 y[1] (analytic) = 0 y[1] (numeric) = 1.0209436167005780324337391044446 absolute error = 1.0209436167005780324337391044446 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.254 Order of pole = 8.952 TOP MAIN SOLVE Loop memory used=247.9MB, alloc=4.5MB, time=25.76 x[1] = 0.845 y[1] (analytic) = 0 y[1] (numeric) = 1.0226226596502069863041157354675 absolute error = 1.0226226596502069863041157354675 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.253 Order of pole = 8.95 TOP MAIN SOLVE Loop x[1] = 0.846 y[1] (analytic) = 0 y[1] (numeric) = 1.0243024752437779937221234822314 absolute error = 1.0243024752437779937221234822314 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.253 Order of pole = 8.948 TOP MAIN SOLVE Loop x[1] = 0.847 y[1] (analytic) = 0 y[1] (numeric) = 1.0259830629651439127139643075103 absolute error = 1.0259830629651439127139643075103 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.253 Order of pole = 8.946 TOP MAIN SOLVE Loop x[1] = 0.848 y[1] (analytic) = 0 y[1] (numeric) = 1.0276644222963465299641155016182 absolute error = 1.0276644222963465299641155016182 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.252 Order of pole = 8.945 TOP MAIN SOLVE Loop x[1] = 0.849 y[1] (analytic) = 0 y[1] (numeric) = 1.0293465527176163445943667289894 absolute error = 1.0293465527176163445943667289894 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.252 Order of pole = 8.943 TOP MAIN SOLVE Loop x[1] = 0.85 y[1] (analytic) = 0 y[1] (numeric) = 1.0310294537073723594119020347971 absolute error = 1.0310294537073723594119020347971 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.252 Order of pole = 8.941 TOP MAIN SOLVE Loop x[1] = 0.851 y[1] (analytic) = 0 y[1] (numeric) = 1.032713124742221879636903094917 absolute error = 1.032713124742221879636903094917 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 8.939 TOP MAIN SOLVE Loop x[1] = 0.852 y[1] (analytic) = 0 y[1] (numeric) = 1.0343975652969603191201072771296 absolute error = 1.0343975652969603191201072771296 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 8.938 TOP MAIN SOLVE Loop x[1] = 0.853 y[1] (analytic) = 0 y[1] (numeric) = 1.0360827748445710140607112077996 absolute error = 1.0360827748445710140607112077996 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 8.936 TOP MAIN SOLVE Loop x[1] = 0.854 y[1] (analytic) = 0 y[1] (numeric) = 1.0377687528562250442349675066233 absolute error = 1.0377687528562250442349675066233 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.25 Order of pole = 8.934 TOP MAIN SOLVE Loop x[1] = 0.855 y[1] (analytic) = 0 y[1] (numeric) = 1.0394554988012810617457791626482 absolute error = 1.0394554988012810617457791626482 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.25 Order of pole = 8.932 TOP MAIN SOLVE Loop x[1] = 0.856 y[1] (analytic) = 0 y[1] (numeric) = 1.0411430121472851273035526778886 absolute error = 1.0411430121472851273035526778886 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.25 Order of pole = 8.93 TOP MAIN SOLVE Loop memory used=251.7MB, alloc=4.5MB, time=26.16 x[1] = 0.857 y[1] (analytic) = 0 y[1] (numeric) = 1.0428312923599705540485276007534 absolute error = 1.0428312923599705540485276007534 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.25 Order of pole = 8.929 TOP MAIN SOLVE Loop x[1] = 0.858 y[1] (analytic) = 0 y[1] (numeric) = 1.044520338903257758924756410414 absolute error = 1.044520338903257758924756410414 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.249 Order of pole = 8.927 TOP MAIN SOLVE Loop x[1] = 0.859 y[1] (analytic) = 0 y[1] (numeric) = 1.0462101512392541216158648954401 absolute error = 1.0462101512392541216158648954401 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.249 Order of pole = 8.925 TOP MAIN SOLVE Loop x[1] = 0.86 y[1] (analytic) = 0 y[1] (numeric) = 1.0479007288282538510526791957778 absolute error = 1.0479007288282538510526791957778 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.249 Order of pole = 8.923 TOP MAIN SOLVE Loop x[1] = 0.861 y[1] (analytic) = 0 y[1] (numeric) = 1.0495920711287378595027615467053 absolute error = 1.0495920711287378595027615467053 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.248 Order of pole = 8.921 TOP MAIN SOLVE Loop x[1] = 0.862 y[1] (analytic) = 0 y[1] (numeric) = 1.0512841775973736442518524770445 absolute error = 1.0512841775973736442518524770445 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.248 Order of pole = 8.92 TOP MAIN SOLVE Loop x[1] = 0.863 y[1] (analytic) = 0 y[1] (numeric) = 1.0529770476890151768871727719004 absolute error = 1.0529770476890151768871727719004 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.248 Order of pole = 8.918 TOP MAIN SOLVE Loop x[1] = 0.864 y[1] (analytic) = 0 y[1] (numeric) = 1.0546706808567028001924939128221 absolute error = 1.0546706808567028001924939128221 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.247 Order of pole = 8.916 TOP MAIN SOLVE Loop x[1] = 0.865 y[1] (analytic) = 0 y[1] (numeric) = 1.0563650765516631326648409557991 absolute error = 1.0563650765516631326648409557991 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.247 Order of pole = 8.914 TOP MAIN SOLVE Loop x[1] = 0.866 y[1] (analytic) = 0 y[1] (numeric) = 1.0580602342233089806626469002083 absolute error = 1.0580602342233089806626469002083 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.247 Order of pole = 8.913 TOP MAIN SOLVE Loop x[1] = 0.867 y[1] (analytic) = 0 y[1] (numeric) = 1.0597561533192392581951325399874 absolute error = 1.0597561533192392581951325399874 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.246 Order of pole = 8.911 TOP MAIN SOLVE Loop x[1] = 0.868 y[1] (analytic) = 0 memory used=255.5MB, alloc=4.6MB, time=26.56 y[1] (numeric) = 1.061452833285238914362640572214 absolute error = 1.061452833285238914362640572214 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.246 Order of pole = 8.909 TOP MAIN SOLVE Loop x[1] = 0.869 y[1] (analytic) = 0 y[1] (numeric) = 1.0631502735652788684576073682029 absolute error = 1.0631502735652788684576073682029 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.246 Order of pole = 8.907 TOP MAIN SOLVE Loop x[1] = 0.87 y[1] (analytic) = 0 y[1] (numeric) = 1.0648484736015159527358102884837 absolute error = 1.0648484736015159527358102884837 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.245 Order of pole = 8.905 TOP MAIN SOLVE Loop x[1] = 0.871 y[1] (analytic) = 0 y[1] (numeric) = 1.0665474328342928628674827458792 absolute error = 1.0665474328342928628674827458792 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.245 Order of pole = 8.904 TOP MAIN SOLVE Loop x[1] = 0.872 y[1] (analytic) = 0 y[1] (numeric) = 1.0682471507021381160778433906641 absolute error = 1.0682471507021381160778433906641 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.245 Order of pole = 8.902 TOP MAIN SOLVE Loop x[1] = 0.873 y[1] (analytic) = 0 y[1] (numeric) = 1.069947626641766016986539808739 absolute error = 1.069947626641766016986539808739 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.244 Order of pole = 8.9 TOP MAIN SOLVE Loop x[1] = 0.874 y[1] (analytic) = 0 y[1] (numeric) = 1.0716488600880766311554609882085 absolute error = 1.0716488600880766311554609882085 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.244 Order of pole = 8.898 TOP MAIN SOLVE Loop x[1] = 0.875 y[1] (analytic) = 0 y[1] (numeric) = 1.0733508504741557663543265219986 absolute error = 1.0733508504741557663543265219986 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.244 Order of pole = 8.897 TOP MAIN SOLVE Loop x[1] = 0.876 y[1] (analytic) = 0 y[1] (numeric) = 1.075053597231274961553414074497 absolute error = 1.075053597231274961553414074497 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.244 Order of pole = 8.895 TOP MAIN SOLVE Loop x[1] = 0.877 y[1] (analytic) = 0 y[1] (numeric) = 1.0767570997888914836527400489545 absolute error = 1.0767570997888914836527400489545 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.243 Order of pole = 8.893 TOP MAIN SOLVE Loop x[1] = 0.878 y[1] (analytic) = 0 y[1] (numeric) = 1.0784613575746483319569616498517 absolute error = 1.0784613575746483319569616498517 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.243 Order of pole = 8.892 TOP MAIN SOLVE Loop x[1] = 0.879 y[1] (analytic) = 0 y[1] (numeric) = 1.0801663700143742504052216409294 absolute error = 1.0801663700143742504052216409294 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.243 Order of pole = 8.89 TOP MAIN SOLVE Loop memory used=259.4MB, alloc=4.6MB, time=26.96 x[1] = 0.88 y[1] (analytic) = 0 y[1] (numeric) = 1.0818721365320837475651100554117 absolute error = 1.0818721365320837475651100554117 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.242 Order of pole = 8.888 TOP MAIN SOLVE Loop x[1] = 0.881 y[1] (analytic) = 0 y[1] (numeric) = 1.0835786565499771243998699204365 absolute error = 1.0835786565499771243998699204365 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.242 Order of pole = 8.887 TOP MAIN SOLVE Loop x[1] = 0.882 y[1] (analytic) = 0 y[1] (numeric) = 1.085285929488440509817926713167 absolute error = 1.085285929488440509817926713167 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.242 Order of pole = 8.885 TOP MAIN SOLVE Loop x[1] = 0.883 y[1] (analytic) = 0 y[1] (numeric) = 1.0869939547660459040137737718115 absolute error = 1.0869939547660459040137737718115 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.241 Order of pole = 8.883 TOP MAIN SOLVE Loop x[1] = 0.884 y[1] (analytic) = 0 y[1] (numeric) = 1.0887027317995512296091982411468 absolute error = 1.0887027317995512296091982411468 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.241 Order of pole = 8.882 TOP MAIN SOLVE Loop x[1] = 0.885 y[1] (analytic) = 0 y[1] (numeric) = 1.0904122600039003906037843394576 absolute error = 1.0904122600039003906037843394576 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.241 Order of pole = 8.88 TOP MAIN SOLVE Loop x[1] = 0.886 y[1] (analytic) = 0 y[1] (numeric) = 1.0921225387922233391435827923877 absolute error = 1.0921225387922233391435827923877 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.241 Order of pole = 8.879 TOP MAIN SOLVE Loop x[1] = 0.887 y[1] (analytic) = 0 y[1] (numeric) = 1.0938335675758361501167871893895 absolute error = 1.0938335675758361501167871893895 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.24 Order of pole = 8.877 TOP MAIN SOLVE Loop x[1] = 0.888 y[1] (analytic) = 0 y[1] (numeric) = 1.0955453457642411035852097805846 absolute error = 1.0955453457642411035852097805846 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.24 Order of pole = 8.875 TOP MAIN SOLVE Loop x[1] = 0.889 y[1] (analytic) = 0 y[1] (numeric) = 1.0972578727651267750603008462464 absolute error = 1.0972578727651267750603008462464 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.24 Order of pole = 8.874 TOP MAIN SOLVE Loop x[1] = 0.89 y[1] (analytic) = 0 y[1] (numeric) = 1.0989711479843681336324072381266 absolute error = 1.0989711479843681336324072381266 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.239 Order of pole = 8.872 TOP MAIN SOLVE Loop x[1] = 0.891 y[1] (analytic) = 0 y[1] (numeric) = 1.1006851708260266479619170118108 absolute error = 1.1006851708260266479619170118108 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.239 Order of pole = 8.871 memory used=263.2MB, alloc=4.6MB, time=27.36 TOP MAIN SOLVE Loop x[1] = 0.892 y[1] (analytic) = 0 y[1] (numeric) = 1.1023999406923504001408882425478 absolute error = 1.1023999406923504001408882425478 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.239 Order of pole = 8.869 TOP MAIN SOLVE Loop x[1] = 0.893 y[1] (analytic) = 0 y[1] (numeric) = 1.1041154569837742074337111438967 absolute error = 1.1041154569837742074337111438967 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.239 Order of pole = 8.868 TOP MAIN SOLVE Loop x[1] = 0.894 y[1] (analytic) = 0 y[1] (numeric) = 1.1058317190989197519053034894323 absolute error = 1.1058317190989197519053034894323 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.238 Order of pole = 8.866 TOP MAIN SOLVE Loop x[1] = 0.895 y[1] (analytic) = 0 y[1] (numeric) = 1.1075487264345957179452900729788 absolute error = 1.1075487264345957179452900729788 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.238 Order of pole = 8.865 TOP MAIN SOLVE Loop x[1] = 0.896 y[1] (analytic) = 0 y[1] (numeric) = 1.1092664783857979376965675327764 absolute error = 1.1092664783857979376965675327764 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.238 Order of pole = 8.864 TOP MAIN SOLVE Loop x[1] = 0.897 y[1] (analytic) = 0 y[1] (numeric) = 1.1109849743457095443966063099634 absolute error = 1.1109849743457095443966063099634 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.237 Order of pole = 8.862 TOP MAIN SOLVE Loop x[1] = 0.898 y[1] (analytic) = 0 y[1] (numeric) = 1.1127042137057011336397918121511 absolute error = 1.1127042137057011336397918121511 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.237 Order of pole = 8.861 TOP MAIN SOLVE Loop x[1] = 0.899 y[1] (analytic) = 0 y[1] (numeric) = 1.1144241958553309325690570090297 absolute error = 1.1144241958553309325690570090297 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.237 Order of pole = 8.859 TOP MAIN SOLVE Loop x[1] = 0.9 y[1] (analytic) = 0 y[1] (numeric) = 1.1161449201823449770050086992445 absolute error = 1.1161449201823449770050086992445 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.237 Order of pole = 8.858 TOP MAIN SOLVE Loop x[1] = 0.901 y[1] (analytic) = 0 y[1] (numeric) = 1.1178663860726772965206995565783 absolute error = 1.1178663860726772965206995565783 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.236 Order of pole = 8.857 TOP MAIN SOLVE Loop x[1] = 0.902 y[1] (analytic) = 0 y[1] (numeric) = 1.1195885929104501074701477891468 absolute error = 1.1195885929104501074701477891468 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.236 Order of pole = 8.855 TOP MAIN SOLVE Loop memory used=267.0MB, alloc=4.6MB, time=27.76 x[1] = 0.903 y[1] (analytic) = 0 y[1] (numeric) = 1.1213115400779740139786558282224 absolute error = 1.1213115400779740139786558282224 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.236 Order of pole = 8.854 TOP MAIN SOLVE Loop x[1] = 0.904 y[1] (analytic) = 0 y[1] (numeric) = 1.1230352269557482169029289038263 absolute error = 1.1230352269557482169029289038263 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.236 Order of pole = 8.853 TOP MAIN SOLVE Loop x[1] = 0.905 y[1] (analytic) = 0 y[1] (numeric) = 1.1247596529224607307689436627417 absolute error = 1.1247596529224607307689436627417 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.235 Order of pole = 8.852 TOP MAIN SOLVE Loop x[1] = 0.906 y[1] (analytic) = 0 y[1] (numeric) = 1.1264848173549886086954661414851 absolute error = 1.1264848173549886086954661414851 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.235 Order of pole = 8.851 TOP MAIN SOLVE Loop x[1] = 0.907 y[1] (analytic) = 0 y[1] (numeric) = 1.1282107196283981753110674224033 absolute error = 1.1282107196283981753110674224033 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.235 Order of pole = 8.849 TOP MAIN SOLVE Loop x[1] = 0.908 y[1] (analytic) = 0 y[1] (numeric) = 1.1299373591159452676724341758303 absolute error = 1.1299373591159452676724341758303 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.235 Order of pole = 8.848 TOP MAIN SOLVE Loop x[1] = 0.909 y[1] (analytic) = 0 y[1] (numeric) = 1.1316647351890754841917200255229 absolute error = 1.1316647351890754841917200255229 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.234 Order of pole = 8.847 TOP MAIN SOLVE Loop x[1] = 0.91 y[1] (analytic) = 0 y[1] (numeric) = 1.1333928472174244415806322687843 absolute error = 1.1333928472174244415806322687843 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.234 Order of pole = 8.846 TOP MAIN SOLVE Loop x[1] = 0.911 y[1] (analytic) = 0 y[1] (numeric) = 1.1351216945688180398188969371765 absolute error = 1.1351216945688180398188969371765 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.234 Order of pole = 8.845 TOP MAIN SOLVE Loop x[1] = 0.912 y[1] (analytic) = 0 y[1] (numeric) = 1.1368512766092727351546934989035 absolute error = 1.1368512766092727351546934989035 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.234 Order of pole = 8.844 TOP MAIN SOLVE Loop x[1] = 0.913 y[1] (analytic) = 0 y[1] (numeric) = 1.138581592702995821144598680217 absolute error = 1.138581592702995821144598680217 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.233 Order of pole = 8.843 TOP MAIN SOLVE Loop x[1] = 0.914 y[1] (analytic) = 0 y[1] (numeric) = 1.14031264221238571774052692095 absolute error = 1.14031264221238571774052692095 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.233 Order of pole = 8.842 TOP MAIN SOLVE Loop memory used=270.8MB, alloc=4.6MB, time=28.16 x[1] = 0.915 y[1] (analytic) = 0 y[1] (numeric) = 1.1420444244980322684311028789264 absolute error = 1.1420444244980322684311028789264 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.233 Order of pole = 8.841 TOP MAIN SOLVE Loop x[1] = 0.916 y[1] (analytic) = 0 y[1] (numeric) = 1.1437769389187170454448491599246 absolute error = 1.1437769389187170454448491599246 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.233 Order of pole = 8.84 TOP MAIN SOLVE Loop x[1] = 0.917 y[1] (analytic) = 0 y[1] (numeric) = 1.1455101848314136630225200744993 absolute error = 1.1455101848314136630225200744993 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.233 Order of pole = 8.839 TOP MAIN SOLVE Loop x[1] = 0.918 y[1] (analytic) = 0 y[1] (numeric) = 1.1472441615912880987658597106951 absolute error = 1.1472441615912880987658597106951 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.232 Order of pole = 8.838 TOP MAIN SOLVE Loop x[1] = 0.919 y[1] (analytic) = 0 y[1] (numeric) = 1.148978868551699023070009962929 absolute error = 1.148978868551699023070009962929 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.232 Order of pole = 8.837 TOP MAIN SOLVE Loop x[1] = 0.92 y[1] (analytic) = 0 y[1] (numeric) = 1.150714305064198136646741372488 absolute error = 1.150714305064198136646741372488 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.232 Order of pole = 8.837 TOP MAIN SOLVE Loop x[1] = 0.921 y[1] (analytic) = 0 y[1] (numeric) = 1.1524504704785305161456267146006 absolute error = 1.1524504704785305161456267146006 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.232 Order of pole = 8.836 TOP MAIN SOLVE Loop x[1] = 0.922 y[1] (analytic) = 0 y[1] (numeric) = 1.1541873641426349678802242113136 absolute error = 1.1541873641426349678802242113136 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.232 Order of pole = 8.835 TOP MAIN SOLVE Loop x[1] = 0.923 y[1] (analytic) = 0 y[1] (numeric) = 1.1559249854026443896662840588577 absolute error = 1.1559249854026443896662840588577 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.231 Order of pole = 8.834 TOP MAIN SOLVE Loop x[1] = 0.924 y[1] (analytic) = 0 y[1] (numeric) = 1.1576633336028861407789386332411 absolute error = 1.1576633336028861407789386332411 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.231 Order of pole = 8.834 TOP MAIN SOLVE Loop x[1] = 0.925 y[1] (analytic) = 0 y[1] (numeric) = 1.1594024080858824200357832788946 absolute error = 1.1594024080858824200357832788946 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.231 Order of pole = 8.833 TOP MAIN SOLVE Loop x[1] = 0.926 y[1] (analytic) = 0 y[1] (numeric) = 1.1611422081923506520127009927325 absolute error = 1.1611422081923506520127009927325 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.231 Order of pole = 8.832 memory used=274.6MB, alloc=4.6MB, time=28.56 TOP MAIN SOLVE Loop x[1] = 0.927 y[1] (analytic) = 0 y[1] (numeric) = 1.162882733261203881399230590417 absolute error = 1.162882733261203881399230590417 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.231 Order of pole = 8.832 TOP MAIN SOLVE Loop x[1] = 0.928 y[1] (analytic) = 0 y[1] (numeric) = 1.1646239826295511755002240833614 absolute error = 1.1646239826295511755002240833614 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.23 Order of pole = 8.831 TOP MAIN SOLVE Loop x[1] = 0.929 y[1] (analytic) = 0 y[1] (numeric) = 1.1663659556326980348904850045025 absolute error = 1.1663659556326980348904850045025 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.23 Order of pole = 8.831 TOP MAIN SOLVE Loop x[1] = 0.93 y[1] (analytic) = 0 y[1] (numeric) = 1.1681086516041468122290252985617 absolute error = 1.1681086516041468122290252985617 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.23 Order of pole = 8.83 TOP MAIN SOLVE Loop x[1] = 0.931 y[1] (analytic) = 0 y[1] (numeric) = 1.1698520698755971392395241388322 absolute error = 1.1698520698755971392395241388322 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.23 Order of pole = 8.83 TOP MAIN SOLVE Loop x[1] = 0.932 y[1] (analytic) = 0 y[1] (numeric) = 1.1715962097769463618635176479214 absolute error = 1.1715962097769463618635176479214 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.23 Order of pole = 8.829 TOP MAIN SOLVE Loop x[1] = 0.933 y[1] (analytic) = 0 y[1] (numeric) = 1.1733410706362899835927939847841 absolute error = 1.1733410706362899835927939847841 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.23 Order of pole = 8.829 TOP MAIN SOLVE Loop x[1] = 0.934 y[1] (analytic) = 0 y[1] (numeric) = 1.1750866517799221169874136152541 absolute error = 1.1750866517799221169874136152541 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.229 Order of pole = 8.829 TOP MAIN SOLVE Loop x[1] = 0.935 y[1] (analytic) = 0 y[1] (numeric) = 1.1768329525323359433857198085665 absolute error = 1.1768329525323359433857198085665 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.229 Order of pole = 8.828 TOP MAIN SOLVE Loop x[1] = 0.936 y[1] (analytic) = 0 y[1] (numeric) = 1.1785799722162241808126494985123 absolute error = 1.1785799722162241808126494985123 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.229 Order of pole = 8.828 TOP MAIN SOLVE Loop x[1] = 0.937 y[1] (analytic) = 0 y[1] (numeric) = 1.1803277101524795600925996153354 absolute error = 1.1803277101524795600925996153354 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.229 Order of pole = 8.828 TOP MAIN SOLVE Loop memory used=278.4MB, alloc=4.6MB, time=28.96 x[1] = 0.938 y[1] (analytic) = 0 y[1] (numeric) = 1.1820761656601953091730488337263 absolute error = 1.1820761656601953091730488337263 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.229 Order of pole = 8.827 TOP MAIN SOLVE Loop x[1] = 0.939 y[1] (analytic) = 0 y[1] (numeric) = 1.1838253380566656456650793937445 absolute error = 1.1838253380566656456650793937445 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.229 Order of pole = 8.827 TOP MAIN SOLVE Loop x[1] = 0.94 y[1] (analytic) = 0 y[1] (numeric) = 1.1855752266573862776068882356768 absolute error = 1.1855752266573862776068882356768 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.229 Order of pole = 8.827 TOP MAIN SOLVE Loop x[1] = 0.941 y[1] (analytic) = 0 y[1] (numeric) = 1.1873258307760549124563211471706 absolute error = 1.1873258307760549124563211471706 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.228 Order of pole = 8.827 TOP MAIN SOLVE Loop x[1] = 0.942 y[1] (analytic) = 0 y[1] (numeric) = 1.1890771497245717743184079519417 absolute error = 1.1890771497245717743184079519417 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.228 Order of pole = 8.827 TOP MAIN SOLVE Loop x[1] = 0.943 y[1] (analytic) = 0 y[1] (numeric) = 1.1908291828130401294138209744072 absolute error = 1.1908291828130401294138209744072 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.228 Order of pole = 8.827 TOP MAIN SOLVE Loop x[1] = 0.944 y[1] (analytic) = 0 y[1] (numeric) = 1.1925819293497668197941230942115 absolute error = 1.1925819293497668197941230942115 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.228 Order of pole = 8.827 TOP MAIN SOLVE Loop x[1] = 0.945 y[1] (analytic) = 0 y[1] (numeric) = 1.1943353886412628053096156592684 absolute error = 1.1943353886412628053096156592684 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.228 Order of pole = 8.827 TOP MAIN SOLVE Loop x[1] = 0.946 y[1] (analytic) = 0 y[1] (numeric) = 1.1960895599922437138355403561102 absolute error = 1.1960895599922437138355403561102 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.228 Order of pole = 8.827 TOP MAIN SOLVE Loop x[1] = 0.947 y[1] (analytic) = 0 y[1] (numeric) = 1.1978444427056303997623328424929 absolute error = 1.1978444427056303997623328424929 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.228 Order of pole = 8.827 TOP MAIN SOLVE Loop x[1] = 0.948 y[1] (analytic) = 0 y[1] (numeric) = 1.199600036082549510755569529837 absolute error = 1.199600036082549510755569529837 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.228 Order of pole = 8.827 TOP MAIN SOLVE Loop x[1] = 0.949 y[1] (analytic) = 0 y[1] (numeric) = 1.2013563394223340627911923626674 absolute error = 1.2013563394223340627911923626674 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 8.827 TOP MAIN SOLVE Loop memory used=282.2MB, alloc=4.6MB, time=29.36 x[1] = 0.95 y[1] (analytic) = 0 y[1] (numeric) = 1.203113352022524023471539779238 absolute error = 1.203113352022524023471539779238 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 8.827 TOP MAIN SOLVE Loop x[1] = 0.951 y[1] (analytic) = 0 y[1] (numeric) = 1.2048710731788669036276552524752 absolute error = 1.2048710731788669036276552524752 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 8.828 TOP MAIN SOLVE Loop x[1] = 0.952 y[1] (analytic) = 0 y[1] (numeric) = 1.2066295021853183572132879037379 absolute error = 1.2066295021853183572132879037379 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 8.828 TOP MAIN SOLVE Loop x[1] = 0.953 y[1] (analytic) = 0 y[1] (numeric) = 1.2083886383340427894959426541628 absolute error = 1.2083886383340427894959426541628 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 8.828 TOP MAIN SOLVE Loop x[1] = 0.954 y[1] (analytic) = 0 y[1] (numeric) = 1.2101484809154139735502802300362 absolute error = 1.2101484809154139735502802300362 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 8.829 TOP MAIN SOLVE Loop x[1] = 0.955 y[1] (analytic) = 0 y[1] (numeric) = 1.211909029218015675059110070205 absolute error = 1.211909029218015675059110070205 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 8.829 TOP MAIN SOLVE Loop x[1] = 0.956 y[1] (analytic) = 0 y[1] (numeric) = 1.213670282528642285427161795506 absolute error = 1.213670282528642285427161795506 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 8.829 TOP MAIN SOLVE Loop x[1] = 0.957 y[1] (analytic) = 0 y[1] (numeric) = 1.2154322401322994632127633930594 absolute error = 1.2154322401322994632127633930594 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 8.83 TOP MAIN SOLVE Loop x[1] = 0.958 y[1] (analytic) = 0 y[1] (numeric) = 1.2171949013122047838824966425389 absolute error = 1.2171949013122047838824966425389 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 8.83 TOP MAIN SOLVE Loop x[1] = 0.959 y[1] (analytic) = 0 y[1] (numeric) = 1.2189582653497883978938425677066 absolute error = 1.2189582653497883978938425677066 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 8.831 TOP MAIN SOLVE Loop x[1] = 0.96 y[1] (analytic) = 0 y[1] (numeric) = 1.2207223315246936971107718350895 absolute error = 1.2207223315246936971107718350895 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 8.831 TOP MAIN SOLVE Loop memory used=286.1MB, alloc=4.6MB, time=29.76 x[1] = 0.961 y[1] (analytic) = 0 y[1] (numeric) = 1.2224870991147779895571770431923 absolute error = 1.2224870991147779895571770431923 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 8.832 TOP MAIN SOLVE Loop x[1] = 0.962 y[1] (analytic) = 0 y[1] (numeric) = 1.2242525673961131825129857505944 absolute error = 1.2242525673961131825129857505944 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 8.833 TOP MAIN SOLVE Loop x[1] = 0.963 y[1] (analytic) = 0 y[1] (numeric) = 1.226018735642986473957734880187 absolute error = 1.226018735642986473957734880187 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.226 Order of pole = 8.833 TOP MAIN SOLVE Loop x[1] = 0.964 y[1] (analytic) = 0 y[1] (numeric) = 1.2277856031279010523663288101855 absolute error = 1.2277856031279010523663288101855 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.226 Order of pole = 8.834 TOP MAIN SOLVE Loop x[1] = 0.965 y[1] (analytic) = 0 y[1] (numeric) = 1.2295531691215768048616450209215 absolute error = 1.2295531691215768048616450209215 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.226 Order of pole = 8.835 TOP MAIN SOLVE Loop x[1] = 0.966 y[1] (analytic) = 0 y[1] (numeric) = 1.2313214328929510337285926102976 absolute error = 1.2313214328929510337285926102976 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.226 Order of pole = 8.836 TOP MAIN SOLVE Loop x[1] = 0.967 y[1] (analytic) = 0 y[1] (numeric) = 1.2330903937091791812941703207075 absolute error = 1.2330903937091791812941703207075 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.226 Order of pole = 8.837 TOP MAIN SOLVE Loop x[1] = 0.968 y[1] (analytic) = 0 y[1] (numeric) = 1.2348600508356355631780119367008 absolute error = 1.2348600508356355631780119367008 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.226 Order of pole = 8.837 TOP MAIN SOLVE Loop x[1] = 0.969 y[1] (analytic) = 0 y[1] (numeric) = 1.2366304035359141099178480162439 absolute error = 1.2366304035359141099178480162439 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.226 Order of pole = 8.838 TOP MAIN SOLVE Loop x[1] = 0.97 y[1] (analytic) = 0 y[1] (numeric) = 1.2384014510718291169742539096171 absolute error = 1.2384014510718291169742539096171 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.226 Order of pole = 8.839 TOP MAIN SOLVE Loop x[1] = 0.971 y[1] (analytic) = 0 y[1] (numeric) = 1.2401731927034160031189948993379 absolute error = 1.2401731927034160031189948993379 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.226 Order of pole = 8.84 TOP MAIN SOLVE Loop x[1] = 0.972 y[1] (analytic) = 0 y[1] (numeric) = 1.241945627688932077211220062533 absolute error = 1.241945627688932077211220062533 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.226 Order of pole = 8.841 TOP MAIN SOLVE Loop memory used=289.9MB, alloc=4.6MB, time=30.16 x[1] = 0.973 y[1] (analytic) = 0 y[1] (numeric) = 1.243718755284857313365697114448 absolute error = 1.243718755284857313365697114448 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.226 Order of pole = 8.842 TOP MAIN SOLVE Loop x[1] = 0.974 y[1] (analytic) = 0 y[1] (numeric) = 1.2454925747458951345172210388132 absolute error = 1.2454925747458951345172210388132 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.226 Order of pole = 8.843 TOP MAIN SOLVE Loop x[1] = 0.975 y[1] (analytic) = 0 y[1] (numeric) = 1.2472670853249732043852697481249 absolute error = 1.2472670853249732043852697481249 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.226 Order of pole = 8.845 TOP MAIN SOLVE Loop x[1] = 0.976 y[1] (analytic) = 0 y[1] (numeric) = 1.2490422862732442278429203450942 absolute error = 1.2490422862732442278429203450942 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.226 Order of pole = 8.846 TOP MAIN SOLVE Loop x[1] = 0.977 y[1] (analytic) = 0 y[1] (numeric) = 1.2508181768400867596939797761099 absolute error = 1.2508181768400867596939797761099 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.226 Order of pole = 8.847 TOP MAIN SOLVE Loop x[1] = 0.978 y[1] (analytic) = 0 y[1] (numeric) = 1.2525947562731060218622237791025 absolute error = 1.2525947562731060218622237791025 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.226 Order of pole = 8.848 TOP MAIN SOLVE Loop x[1] = 0.979 y[1] (analytic) = 0 y[1] (numeric) = 1.2543720238181347289965780322383 absolute error = 1.2543720238181347289965780322383 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.226 Order of pole = 8.849 TOP MAIN SOLVE Loop x[1] = 0.98 y[1] (analytic) = 0 y[1] (numeric) = 1.2561499787192339224960153069656 absolute error = 1.2561499787192339224960153069656 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.226 Order of pole = 8.851 TOP MAIN SOLVE Loop x[1] = 0.981 y[1] (analytic) = 0 y[1] (numeric) = 1.2579286202186938129578822196343 absolute error = 1.2579286202186938129578822196343 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.226 Order of pole = 8.852 TOP MAIN SOLVE Loop x[1] = 0.982 y[1] (analytic) = 0 y[1] (numeric) = 1.2597079475570346310533088607782 absolute error = 1.2597079475570346310533088607782 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.226 Order of pole = 8.853 TOP MAIN SOLVE Loop x[1] = 0.983 y[1] (analytic) = 0 y[1] (numeric) = 1.2614879599730074868332941607354 absolute error = 1.2614879599730074868332941607354 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.226 Order of pole = 8.855 TOP MAIN SOLVE Loop x[1] = 0.984 y[1] (analytic) = 0 y[1] (numeric) = 1.2632686567035952374689993251621 absolute error = 1.2632686567035952374689993251621 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.226 Order of pole = 8.856 memory used=293.7MB, alloc=4.6MB, time=30.56 TOP MAIN SOLVE Loop x[1] = 0.985 y[1] (analytic) = 0 y[1] (numeric) = 1.2650500369840133634297210447163 absolute error = 1.2650500369840133634297210447163 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 8.858 TOP MAIN SOLVE Loop x[1] = 0.986 y[1] (analytic) = 0 y[1] (numeric) = 1.2668321000477108531019554503338 absolute error = 1.2668321000477108531019554503338 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 8.859 TOP MAIN SOLVE Loop x[1] = 0.987 y[1] (analytic) = 0 y[1] (numeric) = 1.2686148451263710958529029496416 absolute error = 1.2686148451263710958529029496416 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 8.861 TOP MAIN SOLVE Loop x[1] = 0.988 y[1] (analytic) = 0 y[1] (numeric) = 1.2703982714499127835417031417363 absolute error = 1.2703982714499127835417031417363 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 8.862 TOP MAIN SOLVE Loop x[1] = 0.989 y[1] (analytic) = 0 y[1] (numeric) = 1.2721823782464908204816279673613 absolute error = 1.2721823782464908204816279673613 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 8.864 TOP MAIN SOLVE Loop x[1] = 0.99 y[1] (analytic) = 0 y[1] (numeric) = 1.273967164742497241856400110027 absolute error = 1.273967164742497241856400110027 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 8.866 TOP MAIN SOLVE Loop x[1] = 0.991 y[1] (analytic) = 0 y[1] (numeric) = 1.2757526301625621405937424214048 absolute error = 1.2757526301625621405937424214048 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 8.867 TOP MAIN SOLVE Loop x[1] = 0.992 y[1] (analytic) = 0 y[1] (numeric) = 1.2775387737295546026992028019718 absolute error = 1.2775387737295546026992028019718 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 8.869 TOP MAIN SOLVE Loop x[1] = 0.993 y[1] (analytic) = 0 y[1] (numeric) = 1.2793255946645836510532375259653 absolute error = 1.2793255946645836510532375259653 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 8.871 TOP MAIN SOLVE Loop x[1] = 0.994 y[1] (analytic) = 0 y[1] (numeric) = 1.281113092186999197674474458813 absolute error = 1.281113092186999197674474458813 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 8.873 TOP MAIN SOLVE Loop x[1] = 0.995 y[1] (analytic) = 0 y[1] (numeric) = 1.282901265514393004452015975914 absolute error = 1.282901265514393004452015975914 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 8.874 TOP MAIN SOLVE Loop memory used=297.5MB, alloc=4.6MB, time=30.96 x[1] = 0.996 y[1] (analytic) = 0 y[1] (numeric) = 1.2846901138625996523495796545532 absolute error = 1.2846901138625996523495796545532 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 8.876 TOP MAIN SOLVE Loop x[1] = 0.997 y[1] (analytic) = 0 y[1] (numeric) = 1.2864796364456975190842129764202 absolute error = 1.2864796364456975190842129764202 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 8.878 TOP MAIN SOLVE Loop x[1] = 0.998 y[1] (analytic) = 0 y[1] (numeric) = 1.2882698324760097652822563472676 absolute error = 1.2882698324760097652822563472676 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 8.88 TOP MAIN SOLVE Loop x[1] = 0.999 y[1] (analytic) = 0 y[1] (numeric) = 1.2900607011641053291151667132763 absolute error = 1.2900607011641053291151667132763 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 8.882 TOP MAIN SOLVE Loop x[1] = 1 y[1] (analytic) = 0 y[1] (numeric) = 1.2918522417187999294177519312923 absolute error = 1.2918522417187999294177519312923 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.228 Order of pole = 8.884 TOP MAIN SOLVE Loop x[1] = 1.001 y[1] (analytic) = 0 y[1] (numeric) = 1.2936444533471570772913038328575 absolute error = 1.2936444533471570772913038328575 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.228 Order of pole = 8.886 TOP MAIN SOLVE Loop x[1] = 1.002 y[1] (analytic) = 0 y[1] (numeric) = 1.2954373352544890961940556104786 absolute error = 1.2954373352544890961940556104786 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.228 Order of pole = 8.888 TOP MAIN SOLVE Loop x[1] = 1.003 y[1] (analytic) = 0 y[1] (numeric) = 1.2972308866443581505213267494596 absolute error = 1.2972308866443581505213267494596 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.228 Order of pole = 8.89 TOP MAIN SOLVE Loop x[1] = 1.004 y[1] (analytic) = 0 y[1] (numeric) = 1.2990251067185772826776562304774 absolute error = 1.2990251067185772826776562304774 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.228 Order of pole = 8.892 TOP MAIN SOLVE Loop x[1] = 1.005 y[1] (analytic) = 0 y[1] (numeric) = 1.3008199946772114586431621375021 absolute error = 1.3008199946772114586431621375021 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.228 Order of pole = 8.894 TOP MAIN SOLVE Loop x[1] = 1.006 y[1] (analytic) = 0 y[1] (numeric) = 1.3026155497185786220363031232705 absolute error = 1.3026155497185786220363031232705 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.228 Order of pole = 8.897 TOP MAIN SOLVE Loop x[1] = 1.007 y[1] (analytic) = 0 y[1] (numeric) = 1.3044117710392507566751544109175 absolute error = 1.3044117710392507566751544109175 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.228 Order of pole = 8.899 memory used=301.3MB, alloc=4.6MB, time=31.36 TOP MAIN SOLVE Loop x[1] = 1.008 y[1] (analytic) = 0 y[1] (numeric) = 1.3062086578340549576392481461704 absolute error = 1.3062086578340549576392481461704 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.228 Order of pole = 8.901 TOP MAIN SOLVE Loop x[1] = 1.009 y[1] (analytic) = 0 y[1] (numeric) = 1.308006209296074510833964960329 absolute error = 1.308006209296074510833964960329 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.229 Order of pole = 8.903 TOP MAIN SOLVE Loop x[1] = 1.01 y[1] (analytic) = 0 y[1] (numeric) = 1.3098044246166499810594005607029 absolute error = 1.3098044246166499810594005607029 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.229 Order of pole = 8.905 TOP MAIN SOLVE Loop x[1] = 1.011 y[1] (analytic) = 0 y[1] (numeric) = 1.3116033029853803085855680328817 absolute error = 1.3116033029853803085855680328817 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.229 Order of pole = 8.908 TOP MAIN SOLVE Loop x[1] = 1.012 y[1] (analytic) = 0 y[1] (numeric) = 1.3134028435901239142357333187838 absolute error = 1.3134028435901239142357333187838 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.229 Order of pole = 8.91 TOP MAIN SOLVE Loop x[1] = 1.013 y[1] (analytic) = 0 y[1] (numeric) = 1.3152030456169998129796180264982 absolute error = 1.3152030456169998129796180264982 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.229 Order of pole = 8.912 TOP MAIN SOLVE Loop x[1] = 1.014 y[1] (analytic) = 0 y[1] (numeric) = 1.3170039082503887360381403331143 absolute error = 1.3170039082503887360381403331143 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.229 Order of pole = 8.915 TOP MAIN SOLVE Loop x[1] = 1.015 y[1] (analytic) = 0 y[1] (numeric) = 1.3188054306729342615013012606631 absolute error = 1.3188054306729342615013012606631 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.229 Order of pole = 8.917 TOP MAIN SOLVE Loop x[1] = 1.016 y[1] (analytic) = 0 y[1] (numeric) = 1.3206076120655439534607600385881 absolute error = 1.3206076120655439534607600385881 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.229 Order of pole = 8.92 TOP MAIN SOLVE Loop x[1] = 1.017 y[1] (analytic) = 0 y[1] (numeric) = 1.3224104516073905096585786144639 absolute error = 1.3224104516073905096585786144639 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.23 Order of pole = 8.922 TOP MAIN SOLVE Loop x[1] = 1.018 y[1] (analytic) = 0 y[1] (numeric) = 1.3242139484759129176535516386097 absolute error = 1.3242139484759129176535516386097 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.23 Order of pole = 8.925 TOP MAIN SOLVE Loop memory used=305.1MB, alloc=4.6MB, time=31.76 x[1] = 1.019 y[1] (analytic) = 0 y[1] (numeric) = 1.3260181018468176195064744284413 absolute error = 1.3260181018468176195064744284413 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.23 Order of pole = 8.927 TOP MAIN SOLVE Loop x[1] = 1.02 y[1] (analytic) = 0 y[1] (numeric) = 1.327822910894079684985637515505 absolute error = 1.327822910894079684985637515505 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.23 Order of pole = 8.93 TOP MAIN SOLVE Loop x[1] = 1.021 y[1] (analytic) = 0 y[1] (numeric) = 1.329628374789943993293772392773 absolute error = 1.329628374789943993293772392773 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.23 Order of pole = 8.932 TOP MAIN SOLVE Loop x[1] = 1.022 y[1] (analytic) = 0 y[1] (numeric) = 1.3314344927049264233176090125979 absolute error = 1.3314344927049264233176090125979 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.23 Order of pole = 8.935 TOP MAIN SOLVE Loop x[1] = 1.023 y[1] (analytic) = 0 y[1] (numeric) = 1.3332412638078150524011414373608 absolute error = 1.3332412638078150524011414373608 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.231 Order of pole = 8.937 TOP MAIN SOLVE Loop x[1] = 1.024 y[1] (analytic) = 0 y[1] (numeric) = 1.3350486872656713636436338159481 absolute error = 1.3350486872656713636436338159481 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.231 Order of pole = 8.94 TOP MAIN SOLVE Loop x[1] = 1.025 y[1] (analytic) = 0 y[1] (numeric) = 1.3368567622438314617233345504025 absolute error = 1.3368567622438314617233345504025 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.231 Order of pole = 8.942 TOP MAIN SOLVE Loop x[1] = 1.026 y[1] (analytic) = 0 y[1] (numeric) = 1.3386654879059072972478021290584 absolute error = 1.3386654879059072972478021290584 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.231 Order of pole = 8.945 TOP MAIN SOLVE Loop x[1] = 1.027 y[1] (analytic) = 0 y[1] (numeric) = 1.3404748634137878996316816358425 absolute error = 1.3404748634137878996316816358425 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.231 Order of pole = 8.948 TOP MAIN SOLVE Loop x[1] = 1.028 y[1] (analytic) = 0 y[1] (numeric) = 1.3422848879276406185027064008476 absolute error = 1.3422848879276406185027064008476 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.231 Order of pole = 8.95 TOP MAIN SOLVE Loop x[1] = 1.029 y[1] (analytic) = 0 y[1] (numeric) = 1.3440955606059123736366346354207 absolute error = 1.3440955606059123736366346354207 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.232 Order of pole = 8.953 TOP MAIN SOLVE Loop x[1] = 1.03 y[1] (analytic) = 0 y[1] (numeric) = 1.3459068806053309134217661965044 memory used=309.0MB, alloc=4.6MB, time=32.16 absolute error = 1.3459068806053309134217661965044 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.232 Order of pole = 8.956 TOP MAIN SOLVE Loop x[1] = 1.031 y[1] (analytic) = 0 y[1] (numeric) = 1.3477188470809060818536198504874 absolute error = 1.3477188470809060818536198504874 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.232 Order of pole = 8.959 TOP MAIN SOLVE Loop x[1] = 1.032 y[1] (analytic) = 0 y[1] (numeric) = 1.3495314591859310940602865570141 absolute error = 1.3495314591859310940602865570141 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.232 Order of pole = 8.961 TOP MAIN SOLVE Loop x[1] = 1.033 y[1] (analytic) = 0 y[1] (numeric) = 1.3513447160719838203589093687349 absolute error = 1.3513447160719838203589093687349 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.232 Order of pole = 8.964 TOP MAIN SOLVE Loop x[1] = 1.034 y[1] (analytic) = 0 y[1] (numeric) = 1.3531586168889280788436755445093 absolute error = 1.3531586168889280788436755445093 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.232 Order of pole = 8.967 TOP MAIN SOLVE Loop x[1] = 1.035 y[1] (analytic) = 0 y[1] (numeric) = 1.3549731607849149365056414017693 absolute error = 1.3549731607849149365056414017693 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.233 Order of pole = 8.97 TOP MAIN SOLVE Loop x[1] = 1.036 y[1] (analytic) = 0 y[1] (numeric) = 1.3567883469063840188846452892722 absolute error = 1.3567883469063840188846452892722 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.233 Order of pole = 8.973 TOP MAIN SOLVE Loop x[1] = 1.037 y[1] (analytic) = 0 y[1] (numeric) = 1.3586041743980648282534988449916 absolute error = 1.3586041743980648282534988449916 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.233 Order of pole = 8.975 TOP MAIN SOLVE Loop x[1] = 1.038 y[1] (analytic) = 0 y[1] (numeric) = 1.3604206424029780703345814160777 absolute error = 1.3604206424029780703345814160777 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.233 Order of pole = 8.978 TOP MAIN SOLVE Loop x[1] = 1.039 y[1] (analytic) = 0 y[1] (numeric) = 1.3622377500624369895488971593387 absolute error = 1.3622377500624369895488971593387 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.233 Order of pole = 8.981 TOP MAIN SOLVE Loop x[1] = 1.04 y[1] (analytic) = 0 y[1] (numeric) = 1.3640554965160487127975889122221 absolute error = 1.3640554965160487127975889122221 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.234 Order of pole = 8.984 TOP MAIN SOLVE Loop x[1] = 1.041 y[1] (analytic) = 0 y[1] (numeric) = 1.3658738809017156017758374264845 absolute error = 1.3658738809017156017758374264845 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.234 Order of pole = 8.987 TOP MAIN SOLVE Loop memory used=312.8MB, alloc=4.6MB, time=32.56 x[1] = 1.042 y[1] (analytic) = 0 y[1] (numeric) = 1.3676929023556366138190089903106 absolute error = 1.3676929023556366138190089903106 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.234 Order of pole = 8.99 TOP MAIN SOLVE Loop x[1] = 1.043 y[1] (analytic) = 0 y[1] (numeric) = 1.3695125600123086712808488302444 absolute error = 1.3695125600123086712808488302444 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.234 Order of pole = 8.993 TOP MAIN SOLVE Loop x[1] = 1.044 y[1] (analytic) = 0 y[1] (numeric) = 1.3713328530045280394434519826226 absolute error = 1.3713328530045280394434519826226 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.234 Order of pole = 8.996 TOP MAIN SOLVE Loop x[1] = 1.045 y[1] (analytic) = 0 y[1] (numeric) = 1.3731537804633917129586775559167 absolute error = 1.3731537804633917129586775559167 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.235 Order of pole = 8.999 TOP MAIN SOLVE Loop x[1] = 1.046 y[1] (analytic) = 0 y[1] (numeric) = 1.3749753415182988108206064711952 absolute error = 1.3749753415182988108206064711952 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.235 Order of pole = 9.002 TOP MAIN SOLVE Loop x[1] = 1.047 y[1] (analytic) = 0 y[1] (numeric) = 1.3767975352969519798685768684814 absolute error = 1.3767975352969519798685768684814 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.235 Order of pole = 9.004 TOP MAIN SOLVE Loop x[1] = 1.048 y[1] (analytic) = 0 y[1] (numeric) = 1.3786203609253588068202654028033 absolute error = 1.3786203609253588068202654028033 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.235 Order of pole = 9.007 TOP MAIN SOLVE Loop x[1] = 1.049 y[1] (analytic) = 0 y[1] (numeric) = 1.3804438175278332388342166258907 absolute error = 1.3804438175278332388342166258907 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.235 Order of pole = 9.01 TOP MAIN SOLVE Loop x[1] = 1.05 y[1] (analytic) = 0 y[1] (numeric) = 1.3822679042269970126011565584639 absolute error = 1.3822679042269970126011565584639 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.236 Order of pole = 9.013 TOP MAIN SOLVE Loop x[1] = 1.051 y[1] (analytic) = 0 y[1] (numeric) = 1.3840926201437810919633604045709 absolute error = 1.3840926201437810919633604045709 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.236 Order of pole = 9.016 TOP MAIN SOLVE Loop x[1] = 1.052 y[1] (analytic) = 0 y[1] (numeric) = 1.3859179643974271140612781441545 absolute error = 1.3859179643974271140612781441545 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.236 Order of pole = 9.019 TOP MAIN SOLVE Loop memory used=316.6MB, alloc=4.6MB, time=32.96 x[1] = 1.053 y[1] (analytic) = 0 y[1] (numeric) = 1.3877439361054888440065554636678 absolute error = 1.3877439361054888440065554636678 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.236 Order of pole = 9.022 TOP MAIN SOLVE Loop x[1] = 1.054 y[1] (analytic) = 0 y[1] (numeric) = 1.3895705343838336380805211477989 absolute error = 1.3895705343838336380805211477989 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.236 Order of pole = 9.025 TOP MAIN SOLVE Loop x[1] = 1.055 y[1] (analytic) = 0 y[1] (numeric) = 1.391397758346643915457145658911 absolute error = 1.391397758346643915457145658911 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.237 Order of pole = 9.028 TOP MAIN SOLVE Loop x[1] = 1.056 y[1] (analytic) = 0 y[1] (numeric) = 1.3932256071064186384494091753564 absolute error = 1.3932256071064186384494091753564 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.237 Order of pole = 9.031 TOP MAIN SOLVE Loop x[1] = 1.057 y[1] (analytic) = 0 y[1] (numeric) = 1.395054079773974801277950846079 absolute error = 1.395054079773974801277950846079 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.237 Order of pole = 9.034 TOP MAIN SOLVE Loop x[1] = 1.058 y[1] (analytic) = 0 y[1] (numeric) = 1.3968831754584489273608044475844 absolute error = 1.3968831754584489273608044475844 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.237 Order of pole = 9.037 TOP MAIN SOLVE Loop x[1] = 1.059 y[1] (analytic) = 0 y[1] (numeric) = 1.3987128932672985751229590011358 absolute error = 1.3987128932672985751229590011358 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.237 Order of pole = 9.04 TOP MAIN SOLVE Loop x[1] = 1.06 y[1] (analytic) = 0 y[1] (numeric) = 1.4005432323063038523244162236317 absolute error = 1.4005432323063038523244162236317 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.238 Order of pole = 9.043 TOP MAIN SOLVE Loop x[1] = 1.061 y[1] (analytic) = 0 y[1] (numeric) = 1.4023741916795689389053499457461 absolute error = 1.4023741916795689389053499457461 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.238 Order of pole = 9.046 TOP MAIN SOLVE Loop x[1] = 1.062 y[1] (analytic) = 0 y[1] (numeric) = 1.4042057704895236183469058362745 absolute error = 1.4042057704895236183469058362745 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.238 Order of pole = 9.049 TOP MAIN SOLVE Loop x[1] = 1.063 y[1] (analytic) = 0 y[1] (numeric) = 1.4060379678369248175461129229381 absolute error = 1.4060379678369248175461129229381 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.238 Order of pole = 9.053 TOP MAIN SOLVE Loop x[1] = 1.064 y[1] (analytic) = 0 y[1] (numeric) = 1.4078707828208581552033114978673 absolute error = 1.4078707828208581552033114978673 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.239 Order of pole = 9.056 memory used=320.4MB, alloc=4.6MB, time=33.36 TOP MAIN SOLVE Loop x[1] = 1.065 y[1] (analytic) = 0 y[1] (numeric) = 1.4097042145387394987204350413307 absolute error = 1.4097042145387394987204350413307 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.239 Order of pole = 9.059 TOP MAIN SOLVE Loop x[1] = 1.066 y[1] (analytic) = 0 y[1] (numeric) = 1.411538262086316529608416790709 absolute error = 1.411538262086316529608416790709 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.239 Order of pole = 9.062 TOP MAIN SOLVE Loop x[1] = 1.067 y[1] (analytic) = 0 y[1] (numeric) = 1.4133729245576703174019245239514 absolute error = 1.4133729245576703174019245239514 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.239 Order of pole = 9.065 TOP MAIN SOLVE Loop x[1] = 1.068 y[1] (analytic) = 0 y[1] (numeric) = 1.4152082010452169020795600185212 absolute error = 1.4152082010452169020795600185212 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.239 Order of pole = 9.068 TOP MAIN SOLVE Loop x[1] = 1.069 y[1] (analytic) = 0 y[1] (numeric) = 1.4170440906397088849875924888462 absolute error = 1.4170440906397088849875924888462 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.24 Order of pole = 9.071 TOP MAIN SOLVE Loop x[1] = 1.07 y[1] (analytic) = 0 y[1] (numeric) = 1.4188805924302370282652280982683 absolute error = 1.4188805924302370282652280982683 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.24 Order of pole = 9.074 TOP MAIN SOLVE Loop x[1] = 1.071 y[1] (analytic) = 0 y[1] (numeric) = 1.4207177055042318627693503861567 absolute error = 1.4207177055042318627693503861567 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.24 Order of pole = 9.077 TOP MAIN SOLVE Loop x[1] = 1.072 y[1] (analytic) = 0 y[1] (numeric) = 1.4225554289474653044965991479329 absolute error = 1.4225554289474653044965991479329 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.24 Order of pole = 9.08 TOP MAIN SOLVE Loop x[1] = 1.073 y[1] (analytic) = 0 y[1] (numeric) = 1.4243937618440522795005879559797 absolute error = 1.4243937618440522795005879559797 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.24 Order of pole = 9.083 TOP MAIN SOLVE Loop x[1] = 1.074 y[1] (analytic) = 0 y[1] (numeric) = 1.4262327032764523573019931135013 absolute error = 1.4262327032764523573019931135013 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.241 Order of pole = 9.086 TOP MAIN SOLVE Loop x[1] = 1.075 y[1] (analytic) = 0 y[1] (numeric) = 1.428072252325471392789179392092 absolute error = 1.428072252325471392789179392092 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.241 Order of pole = 9.089 TOP MAIN SOLVE Loop memory used=324.2MB, alloc=4.6MB, time=33.77 x[1] = 1.076 y[1] (analytic) = 0 y[1] (numeric) = 1.429912408070263176606960417791 absolute error = 1.429912408070263176606960417791 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.241 Order of pole = 9.091 TOP MAIN SOLVE Loop x[1] = 1.077 y[1] (analytic) = 0 y[1] (numeric) = 1.4317531695883310940310240404795 absolute error = 1.4317531695883310940310240404795 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.241 Order of pole = 9.094 TOP MAIN SOLVE Loop x[1] = 1.078 y[1] (analytic) = 0 y[1] (numeric) = 1.4335945359555297923254854483488 absolute error = 1.4335945359555297923254854483488 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.241 Order of pole = 9.097 TOP MAIN SOLVE Loop x[1] = 1.079 y[1] (analytic) = 0 y[1] (numeric) = 1.4354365062460668565809631735689 absolute error = 1.4354365062460668565809631735689 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.242 Order of pole = 9.1 TOP MAIN SOLVE Loop x[1] = 1.08 y[1] (analytic) = 0 y[1] (numeric) = 1.43727907953250449403050547795 absolute error = 1.43727907953250449403050547795 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.242 Order of pole = 9.103 TOP MAIN SOLVE Loop x[1] = 1.081 y[1] (analytic) = 0 y[1] (numeric) = 1.4391222548857612268406269090566 absolute error = 1.4391222548857612268406269090566 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.242 Order of pole = 9.106 TOP MAIN SOLVE Loop x[1] = 1.082 y[1] (analytic) = 0 y[1] (numeric) = 1.4409660313751135933746470786389 absolute error = 1.4409660313751135933746470786389 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.242 Order of pole = 9.109 TOP MAIN SOLVE Loop x[1] = 1.083 y[1] (analytic) = 0 y[1] (numeric) = 1.4428104080681978579254559371323 absolute error = 1.4428104080681978579254559371323 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.243 Order of pole = 9.112 TOP MAIN SOLVE Loop x[1] = 1.084 y[1] (analytic) = 0 y[1] (numeric) = 1.4446553840310117289147620010865 absolute error = 1.4446553840310117289147620010865 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.243 Order of pole = 9.115 TOP MAIN SOLVE Loop x[1] = 1.085 y[1] (analytic) = 0 y[1] (numeric) = 1.4465009583279160855558121354565 absolute error = 1.4465009583279160855558121354565 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.243 Order of pole = 9.118 TOP MAIN SOLVE Loop x[1] = 1.086 y[1] (analytic) = 0 y[1] (numeric) = 1.4483471300216367129765036004738 absolute error = 1.4483471300216367129765036004738 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.243 Order of pole = 9.121 TOP MAIN SOLVE Loop x[1] = 1.087 y[1] (analytic) = 0 y[1] (numeric) = 1.4501938981732660457997411440527 absolute error = 1.4501938981732660457997411440527 relative error = -1 % Correct digits = -1 h = 0.001 memory used=328.0MB, alloc=4.6MB, time=34.17 Complex estimate of poles used for equation 1 Radius of convergence = 4.243 Order of pole = 9.123 TOP MAIN SOLVE Loop x[1] = 1.088 y[1] (analytic) = 0 y[1] (numeric) = 1.4520412618422649201778239561262 absolute error = 1.4520412618422649201778239561262 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.244 Order of pole = 9.126 TOP MAIN SOLVE Loop x[1] = 1.089 y[1] (analytic) = 0 y[1] (numeric) = 1.4538892200864643342775793016982 absolute error = 1.4538892200864643342775793016982 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.244 Order of pole = 9.129 TOP MAIN SOLVE Loop x[1] = 1.09 y[1] (analytic) = 0 y[1] (numeric) = 1.4557377719620672172128916154864 absolute error = 1.4557377719620672172128916154864 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.244 Order of pole = 9.132 TOP MAIN SOLVE Loop x[1] = 1.091 y[1] (analytic) = 0 y[1] (numeric) = 1.4575869165236502064212077735724 absolute error = 1.4575869165236502064212077735724 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.244 Order of pole = 9.135 TOP MAIN SOLVE Loop x[1] = 1.092 y[1] (analytic) = 0 y[1] (numeric) = 1.4594366528241654334805311572175 absolute error = 1.4594366528241654334805311572175 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.244 Order of pole = 9.137 TOP MAIN SOLVE Loop x[1] = 1.093 y[1] (analytic) = 0 y[1] (numeric) = 1.4612869799149423183633489917028 absolute error = 1.4612869799149423183633489917028 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.244 Order of pole = 9.14 TOP MAIN SOLVE Loop x[1] = 1.094 y[1] (analytic) = 0 y[1] (numeric) = 1.4631378968456893721238692794607 absolute error = 1.4631378968456893721238692794607 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.245 Order of pole = 9.143 TOP MAIN SOLVE Loop x[1] = 1.095 y[1] (analytic) = 0 y[1] (numeric) = 1.4649894026644960080148754526426 absolute error = 1.4649894026644960080148754526426 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.245 Order of pole = 9.146 TOP MAIN SOLVE Loop x[1] = 1.096 y[1] (analytic) = 0 y[1] (numeric) = 1.4668414964178343610304386463656 absolute error = 1.4668414964178343610304386463656 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.245 Order of pole = 9.148 TOP MAIN SOLVE Loop x[1] = 1.097 y[1] (analytic) = 0 y[1] (numeric) = 1.4686941771505611158706592409654 absolute error = 1.4686941771505611158706592409654 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.245 Order of pole = 9.151 TOP MAIN SOLVE Loop x[1] = 1.098 y[1] (analytic) = 0 y[1] (numeric) = 1.4705474439059193433245410404027 absolute error = 1.4705474439059193433245410404027 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.245 Order of pole = 9.154 TOP MAIN SOLVE Loop memory used=331.8MB, alloc=4.6MB, time=34.57 x[1] = 1.099 y[1] (analytic) = 0 y[1] (numeric) = 1.4724012957255403450670331452986 absolute error = 1.4724012957255403450670331452986 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.246 Order of pole = 9.156 TOP MAIN SOLVE Loop x[1] = 1.1 y[1] (analytic) = 0 y[1] (numeric) = 1.4742557316494455068662062436627 absolute error = 1.4742557316494455068662062436627 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.246 Order of pole = 9.159 TOP MAIN SOLVE Loop x[1] = 1.101 y[1] (analytic) = 0 y[1] (numeric) = 1.4761107507160481601964616809953 absolute error = 1.4761107507160481601964616809953 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.246 Order of pole = 9.161 TOP MAIN SOLVE Loop x[1] = 1.102 y[1] (analytic) = 0 y[1] (numeric) = 1.4779663519621554522536032848531 absolute error = 1.4779663519621554522536032848531 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.246 Order of pole = 9.164 TOP MAIN SOLVE Loop x[1] = 1.103 y[1] (analytic) = 0 y[1] (numeric) = 1.479822534422970224367533507934 absolute error = 1.479822534422970224367533507934 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.246 Order of pole = 9.167 TOP MAIN SOLVE Loop x[1] = 1.104 y[1] (analytic) = 0 y[1] (numeric) = 1.4816792971320928988082670190254 absolute error = 1.4816792971320928988082670190254 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.246 Order of pole = 9.169 TOP MAIN SOLVE Loop x[1] = 1.105 y[1] (analytic) = 0 y[1] (numeric) = 1.4835366391215233739808864135412 absolute error = 1.4835366391215233739808864135412 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.247 Order of pole = 9.172 TOP MAIN SOLVE Loop x[1] = 1.106 y[1] (analytic) = 0 y[1] (numeric) = 1.4853945594216629280049962356137 absolute error = 1.4853945594216629280049962356137 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.247 Order of pole = 9.174 TOP MAIN SOLVE Loop x[1] = 1.107 y[1] (analytic) = 0 y[1] (numeric) = 1.4872530570613161306741630025773 absolute error = 1.4872530570613161306741630025773 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.247 Order of pole = 9.176 TOP MAIN SOLVE Loop x[1] = 1.108 y[1] (analytic) = 0 y[1] (numeric) = 1.4891121310676927637907604009539 absolute error = 1.4891121310676927637907604009539 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.247 Order of pole = 9.179 TOP MAIN SOLVE Loop x[1] = 1.109 y[1] (analytic) = 0 y[1] (numeric) = 1.4909717804664097498715702814949 absolute error = 1.4909717804664097498715702814949 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.247 Order of pole = 9.181 TOP MAIN SOLVE Loop memory used=335.7MB, alloc=4.6MB, time=34.97 x[1] = 1.11 y[1] (analytic) = 0 y[1] (numeric) = 1.4928320042814930892194215202286 absolute error = 1.4928320042814930892194215202286 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.247 Order of pole = 9.184 TOP MAIN SOLVE Loop x[1] = 1.111 y[1] (analytic) = 0 y[1] (numeric) = 1.4946928015353798053560802335734 absolute error = 1.4946928015353798053560802335734 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.248 Order of pole = 9.186 TOP MAIN SOLVE Loop x[1] = 1.112 y[1] (analytic) = 0 y[1] (numeric) = 1.4965541712489198988115362391899 absolute error = 1.4965541712489198988115362391899 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.248 Order of pole = 9.188 TOP MAIN SOLVE Loop x[1] = 1.113 y[1] (analytic) = 0 y[1] (numeric) = 1.4984161124413783092647620411257 absolute error = 1.4984161124413783092647620411257 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.248 Order of pole = 9.191 TOP MAIN SOLVE Loop x[1] = 1.114 y[1] (analytic) = 0 y[1] (numeric) = 1.5002786241304368860309519887415 absolute error = 1.5002786241304368860309519887415 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.248 Order of pole = 9.193 TOP MAIN SOLVE Loop x[1] = 1.115 y[1] (analytic) = 0 y[1] (numeric) = 1.502141705332196366890180614669 absolute error = 1.502141705332196366890180614669 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.248 Order of pole = 9.195 TOP MAIN SOLVE Loop x[1] = 1.116 y[1] (analytic) = 0 y[1] (numeric) = 1.5040053550611783652523504984214 absolute error = 1.5040053550611783652523504984214 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.248 Order of pole = 9.197 TOP MAIN SOLVE Loop x[1] = 1.117 y[1] (analytic) = 0 y[1] (numeric) = 1.5058695723303273656532313300372 absolute error = 1.5058695723303273656532313300372 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.248 Order of pole = 9.199 TOP MAIN SOLVE Loop x[1] = 1.118 y[1] (analytic) = 0 y[1] (numeric) = 1.5077343561510127275763231630685 absolute error = 1.5077343561510127275763231630685 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.249 Order of pole = 9.202 TOP MAIN SOLVE Loop x[1] = 1.119 y[1] (analytic) = 0 y[1] (numeric) = 1.5095997055330306975952081491062 absolute error = 1.5095997055330306975952081491062 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.249 Order of pole = 9.204 TOP MAIN SOLVE Loop x[1] = 1.12 y[1] (analytic) = 0 y[1] (numeric) = 1.5114656194846064298309863376563 absolute error = 1.5114656194846064298309863376563 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.249 Order of pole = 9.206 TOP MAIN SOLVE Loop x[1] = 1.121 y[1] (analytic) = 0 y[1] (numeric) = 1.5133320970123960147193224063195 absolute error = 1.5133320970123960147193224063195 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.249 Order of pole = 9.208 TOP MAIN SOLVE Loop memory used=339.5MB, alloc=4.6MB, time=35.38 x[1] = 1.122 y[1] (analytic) = 0 y[1] (numeric) = 1.5151991371214885160815614576735 absolute error = 1.5151991371214885160815614576735 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.249 Order of pole = 9.21 TOP MAIN SOLVE Loop x[1] = 1.123 y[1] (analytic) = 0 y[1] (numeric) = 1.5170667388154080164943032817962 absolute error = 1.5170667388154080164943032817962 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.249 Order of pole = 9.212 TOP MAIN SOLVE Loop x[1] = 1.124 y[1] (analytic) = 0 y[1] (numeric) = 1.5189349010961156709517557377865 absolute error = 1.5189349010961156709517557377865 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.249 Order of pole = 9.214 TOP MAIN SOLVE Loop x[1] = 1.125 y[1] (analytic) = 0 y[1] (numeric) = 1.5208036229640117688151191547253 absolute error = 1.5208036229640117688151191547253 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.249 Order of pole = 9.216 TOP MAIN SOLVE Loop x[1] = 1.126 y[1] (analytic) = 0 y[1] (numeric) = 1.5226729034179378040431848930629 absolute error = 1.5226729034179378040431848930629 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.249 Order of pole = 9.218 TOP MAIN SOLVE Loop x[1] = 1.127 y[1] (analytic) = 0 y[1] (numeric) = 1.5245427414551785536982624422091 absolute error = 1.5245427414551785536982624422091 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.25 Order of pole = 9.22 TOP MAIN SOLVE Loop x[1] = 1.128 y[1] (analytic) = 0 y[1] (numeric) = 1.5264131360714641647214806599297 absolute error = 1.5264131360714641647214806599297 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.25 Order of pole = 9.221 TOP MAIN SOLVE Loop x[1] = 1.129 y[1] (analytic) = 0 y[1] (numeric) = 1.5282840862609722489714399848101 absolute error = 1.5282840862609722489714399848101 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.25 Order of pole = 9.223 TOP MAIN SOLVE Loop x[1] = 1.13 y[1] (analytic) = 0 y[1] (numeric) = 1.5301555910163299865201236753257 absolute error = 1.5301555910163299865201236753257 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.25 Order of pole = 9.225 TOP MAIN SOLVE Loop x[1] = 1.131 y[1] (analytic) = 0 y[1] (numeric) = 1.5320276493286162371999073487522 absolute error = 1.5320276493286162371999073487522 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.25 Order of pole = 9.227 TOP MAIN SOLVE Loop x[1] = 1.132 y[1] (analytic) = 0 y[1] (numeric) = 1.533900260187363660395437311053 absolute error = 1.533900260187363660395437311053 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.25 Order of pole = 9.228 TOP MAIN SOLVE Loop memory used=343.3MB, alloc=4.6MB, time=35.78 x[1] = 1.133 y[1] (analytic) = 0 y[1] (numeric) = 1.5357734225805608430740793857877 absolute error = 1.5357734225805608430740793857877 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.25 Order of pole = 9.23 TOP MAIN SOLVE Loop x[1] = 1.134 y[1] (analytic) = 0 y[1] (numeric) = 1.537647135494654436048571166794 absolute error = 1.537647135494654436048571166794 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.25 Order of pole = 9.232 TOP MAIN SOLVE Loop x[1] = 1.135 y[1] (analytic) = 0 y[1] (numeric) = 1.5395213979145512984654418367005 absolute error = 1.5395213979145512984654418367005 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.25 Order of pole = 9.233 TOP MAIN SOLVE Loop x[1] = 1.136 y[1] (analytic) = 0 y[1] (numeric) = 1.5413962088236206505126949120258 absolute error = 1.5413962088236206505126949120258 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.25 Order of pole = 9.235 TOP MAIN SOLVE Loop x[1] = 1.137 y[1] (analytic) = 0 y[1] (numeric) = 1.5432715672036962343401804965114 absolute error = 1.5432715672036962343401804965114 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.25 Order of pole = 9.236 TOP MAIN SOLVE Loop x[1] = 1.138 y[1] (analytic) = 0 y[1] (numeric) = 1.5451474720350784831860148482179 absolute error = 1.5451474720350784831860148482179 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.238 TOP MAIN SOLVE Loop x[1] = 1.139 y[1] (analytic) = 0 y[1] (numeric) = 1.5470239222965366987023362935886 absolute error = 1.5470239222965366987023362935886 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.239 TOP MAIN SOLVE Loop x[1] = 1.14 y[1] (analytic) = 0 y[1] (numeric) = 1.5489009169653112364736177539478 absolute error = 1.5489009169653112364736177539478 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.241 TOP MAIN SOLVE Loop x[1] = 1.141 y[1] (analytic) = 0 y[1] (numeric) = 1.5507784550171156997206873875608 absolute error = 1.5507784550171156997206873875608 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.242 TOP MAIN SOLVE Loop x[1] = 1.142 y[1] (analytic) = 0 y[1] (numeric) = 1.5526565354261391411835400942323 absolute error = 1.5526565354261391411835400942323 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.243 TOP MAIN SOLVE Loop x[1] = 1.143 y[1] (analytic) = 0 y[1] (numeric) = 1.55453515716504827317595388027 absolute error = 1.55453515716504827317595388027 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.245 TOP MAIN SOLVE Loop x[1] = 1.144 y[1] (analytic) = 0 y[1] (numeric) = 1.5564143192049896858048563402887 absolute error = 1.5564143192049896858048563402887 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.246 memory used=347.1MB, alloc=4.6MB, time=36.18 TOP MAIN SOLVE Loop x[1] = 1.145 y[1] (analytic) = 0 y[1] (numeric) = 1.5582940205155920733473177795824 absolute error = 1.5582940205155920733473177795824 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.247 TOP MAIN SOLVE Loop x[1] = 1.146 y[1] (analytic) = 0 y[1] (numeric) = 1.5601742600649684687779787774545 absolute error = 1.5601742600649684687779787774545 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.248 TOP MAIN SOLVE Loop x[1] = 1.147 y[1] (analytic) = 0 y[1] (numeric) = 1.5620550368197184864396512787704 absolute error = 1.5620550368197184864396512787704 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.25 TOP MAIN SOLVE Loop x[1] = 1.148 y[1] (analytic) = 0 y[1] (numeric) = 1.5639363497449305728497635988918 absolute error = 1.5639363497449305728497635988918 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.251 TOP MAIN SOLVE Loop x[1] = 1.149 y[1] (analytic) = 0 y[1] (numeric) = 1.5658181978041842656352510368737 absolute error = 1.5658181978041842656352510368737 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.252 TOP MAIN SOLVE Loop x[1] = 1.15 y[1] (analytic) = 0 y[1] (numeric) = 1.5677005799595524605884251141576 absolute error = 1.5677005799595524605884251141576 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.253 TOP MAIN SOLVE Loop x[1] = 1.151 y[1] (analytic) = 0 y[1] (numeric) = 1.5695834951716036868362857917918 absolute error = 1.5695834951716036868362857917918 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.254 TOP MAIN SOLVE Loop x[1] = 1.152 y[1] (analytic) = 0 y[1] (numeric) = 1.5714669423994043901156723692512 absolute error = 1.5714669423994043901156723692512 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.255 TOP MAIN SOLVE Loop x[1] = 1.153 y[1] (analytic) = 0 y[1] (numeric) = 1.5733509206005212241465801330336 absolute error = 1.5733509206005212241465801330336 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.256 TOP MAIN SOLVE Loop x[1] = 1.154 y[1] (analytic) = 0 y[1] (numeric) = 1.5752354287310233500959012041768 absolute error = 1.5752354287310233500959012041768 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.257 TOP MAIN SOLVE Loop x[1] = 1.155 y[1] (analytic) = 0 y[1] (numeric) = 1.5771204657454847441237794314904 absolute error = 1.5771204657454847441237794314904 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.257 TOP MAIN SOLVE Loop memory used=350.9MB, alloc=4.6MB, time=36.59 x[1] = 1.156 y[1] (analytic) = 0 y[1] (numeric) = 1.5790060305969865130047005924282 absolute error = 1.5790060305969865130047005924282 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.258 TOP MAIN SOLVE Loop x[1] = 1.157 y[1] (analytic) = 0 y[1] (numeric) = 1.5808921222371192178153705969635 absolute error = 1.5808921222371192178153705969635 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.259 TOP MAIN SOLVE Loop x[1] = 1.158 y[1] (analytic) = 0 y[1] (numeric) = 1.5827787396159852056813658423722 absolute error = 1.5827787396159852056813658423722 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.26 TOP MAIN SOLVE Loop x[1] = 1.159 y[1] (analytic) = 0 y[1] (numeric) = 1.5846658816822009495744713392966 absolute error = 1.5846658816822009495744713392966 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.26 TOP MAIN SOLVE Loop x[1] = 1.16 y[1] (analytic) = 0 y[1] (numeric) = 1.5865535473828993961525537226631 absolute error = 1.5865535473828993961525537226631 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.261 TOP MAIN SOLVE Loop x[1] = 1.161 y[1] (analytic) = 0 y[1] (numeric) = 1.5884417356637323216337477757795 absolute error = 1.5884417356637323216337477757795 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.262 TOP MAIN SOLVE Loop x[1] = 1.162 y[1] (analytic) = 0 y[1] (numeric) = 1.5903304454688726956966666330463 absolute error = 1.5903304454688726956966666330463 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.262 TOP MAIN SOLVE Loop x[1] = 1.163 y[1] (analytic) = 0 y[1] (numeric) = 1.5922196757410170533982773870059 absolute error = 1.5922196757410170533982773870059 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.263 TOP MAIN SOLVE Loop x[1] = 1.164 y[1] (analytic) = 0 y[1] (numeric) = 1.5941094254213878751010154097288 absolute error = 1.5941094254213878751010154097288 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.263 TOP MAIN SOLVE Loop x[1] = 1.165 y[1] (analytic) = 0 y[1] (numeric) = 1.5959996934497359744006423076187 absolute error = 1.5959996934497359744006423076187 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.264 TOP MAIN SOLVE Loop x[1] = 1.166 y[1] (analytic) = 0 y[1] (numeric) = 1.5978904787643428940462840634187 absolute error = 1.5978904787643428940462840634187 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.264 TOP MAIN SOLVE Loop memory used=354.7MB, alloc=4.6MB, time=36.98 x[1] = 1.167 y[1] (analytic) = 0 y[1] (numeric) = 1.5997817803020233098440175803387 absolute error = 1.5997817803020233098440175803387 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.264 TOP MAIN SOLVE Loop x[1] = 1.168 y[1] (analytic) = 0 y[1] (numeric) = 1.6016735969981274425353055316122 absolute error = 1.6016735969981274425353055316122 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.265 TOP MAIN SOLVE Loop x[1] = 1.169 y[1] (analytic) = 0 y[1] (numeric) = 1.603565927786543477641511135247 absolute error = 1.603565927786543477641511135247 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.265 TOP MAIN SOLVE Loop x[1] = 1.17 y[1] (analytic) = 0 y[1] (numeric) = 1.6054587715996999932656562190747 absolute error = 1.6054587715996999932656562190747 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.265 TOP MAIN SOLVE Loop x[1] = 1.171 y[1] (analytic) = 0 y[1] (numeric) = 1.6073521273685683958425177162474 absolute error = 1.6073521273685683958425177162474 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.265 TOP MAIN SOLVE Loop x[1] = 1.172 y[1] (analytic) = 0 y[1] (numeric) = 1.6092459940226653638280895368911 absolute error = 1.6092459940226653638280895368911 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.266 TOP MAIN SOLVE Loop x[1] = 1.173 y[1] (analytic) = 0 y[1] (numeric) = 1.6111403704900552993193685985236 absolute error = 1.6111403704900552993193685985236 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.266 TOP MAIN SOLVE Loop x[1] = 1.174 y[1] (analytic) = 0 y[1] (numeric) = 1.613035255697352787595355666899 absolute error = 1.613035255697352787595355666899 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.266 TOP MAIN SOLVE Loop x[1] = 1.175 y[1] (analytic) = 0 y[1] (numeric) = 1.6149306485697250645700935609671 absolute error = 1.6149306485697250645700935609671 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.266 TOP MAIN SOLVE Loop x[1] = 1.176 y[1] (analytic) = 0 y[1] (numeric) = 1.6168265480308944921484972114547 absolute error = 1.6168265480308944921484972114547 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.25 Order of pole = 9.266 TOP MAIN SOLVE Loop x[1] = 1.177 y[1] (analytic) = 0 y[1] (numeric) = 1.618722953003141041475662033006 absolute error = 1.618722953003141041475662033006 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.25 Order of pole = 9.266 TOP MAIN SOLVE Loop x[1] = 1.178 y[1] (analytic) = 0 y[1] (numeric) = 1.6206198624073047840702690756781 absolute error = 1.6206198624073047840702690756781 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.25 Order of pole = 9.266 TOP MAIN SOLVE Loop memory used=358.5MB, alloc=4.6MB, time=37.39 x[1] = 1.179 y[1] (analytic) = 0 y[1] (numeric) = 1.6225172751627883908326374636971 absolute error = 1.6225172751627883908326374636971 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.25 Order of pole = 9.266 TOP MAIN SOLVE Loop x[1] = 1.18 y[1] (analytic) = 0 y[1] (numeric) = 1.6244151901875596389179067085599 absolute error = 1.6244151901875596389179067085599 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.25 Order of pole = 9.265 TOP MAIN SOLVE Loop x[1] = 1.181 y[1] (analytic) = 0 y[1] (numeric) = 1.6263136063981539264647636006312 absolute error = 1.6263136063981539264647636006312 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.25 Order of pole = 9.265 TOP MAIN SOLVE Loop x[1] = 1.182 y[1] (analytic) = 0 y[1] (numeric) = 1.6282125227096767951700605391647 absolute error = 1.6282125227096767951700605391647 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.25 Order of pole = 9.265 TOP MAIN SOLVE Loop x[1] = 1.183 y[1] (analytic) = 0 y[1] (numeric) = 1.6301119380358064606996043559823 absolute error = 1.6301119380358064606996043559823 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.25 Order of pole = 9.265 TOP MAIN SOLVE Loop x[1] = 1.184 y[1] (analytic) = 0 y[1] (numeric) = 1.6320118512887963509253269236996 absolute error = 1.6320118512887963509253269236996 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.25 Order of pole = 9.264 TOP MAIN SOLVE Loop x[1] = 1.185 y[1] (analytic) = 0 y[1] (numeric) = 1.6339122613794776519789811162154 absolute error = 1.6339122613794776519789811162154 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.25 Order of pole = 9.264 TOP MAIN SOLVE Loop x[1] = 1.186 y[1] (analytic) = 0 y[1] (numeric) = 1.6358131672172618621124380079978 absolute error = 1.6358131672172618621124380079978 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.249 Order of pole = 9.264 TOP MAIN SOLVE Loop x[1] = 1.187 y[1] (analytic) = 0 y[1] (numeric) = 1.637714567710143353354593560331 absolute error = 1.637714567710143353354593560331 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.249 Order of pole = 9.263 TOP MAIN SOLVE Loop x[1] = 1.188 y[1] (analytic) = 0 y[1] (numeric) = 1.639616461764701940954825447951 absolute error = 1.639616461764701940954825447951 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.249 Order of pole = 9.263 TOP MAIN SOLVE Loop x[1] = 1.189 y[1] (analytic) = 0 y[1] (numeric) = 1.6415188482861054606028731292151 absolute error = 1.6415188482861054606028731292151 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.249 Order of pole = 9.262 TOP MAIN SOLVE Loop memory used=362.4MB, alloc=4.6MB, time=37.79 x[1] = 1.19 y[1] (analytic) = 0 y[1] (numeric) = 1.6434217261781123534149467579448 absolute error = 1.6434217261781123534149467579448 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.249 Order of pole = 9.262 TOP MAIN SOLVE Loop x[1] = 1.191 y[1] (analytic) = 0 y[1] (numeric) = 1.6453250943430742586758030761741 absolute error = 1.6453250943430742586758030761741 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.249 Order of pole = 9.261 TOP MAIN SOLVE Loop x[1] = 1.192 y[1] (analytic) = 0 y[1] (numeric) = 1.6472289516819386143264590150432 absolute error = 1.6472289516819386143264590150432 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.249 Order of pole = 9.261 TOP MAIN SOLVE Loop x[1] = 1.193 y[1] (analytic) = 0 y[1] (numeric) = 1.6491332970942512651871463668305 absolute error = 1.6491332970942512651871463668305 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.249 Order of pole = 9.26 TOP MAIN SOLVE Loop x[1] = 1.194 y[1] (analytic) = 0 y[1] (numeric) = 1.6510381294781590789050435754262 absolute error = 1.6510381294781590789050435754262 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.248 Order of pole = 9.259 TOP MAIN SOLVE Loop x[1] = 1.195 y[1] (analytic) = 0 y[1] (numeric) = 1.6529434477304125696162534262481 absolute error = 1.6529434477304125696162534262481 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.248 Order of pole = 9.259 TOP MAIN SOLVE Loop x[1] = 1.196 y[1] (analytic) = 0 y[1] (numeric) = 1.654849250746368529311428200501 absolute error = 1.654849250746368529311428200501 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.248 Order of pole = 9.258 TOP MAIN SOLVE Loop x[1] = 1.197 y[1] (analytic) = 0 y[1] (numeric) = 1.6567555374199926668943766936092 absolute error = 1.6567555374199926668943766936092 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.248 Order of pole = 9.257 TOP MAIN SOLVE Loop x[1] = 1.198 y[1] (analytic) = 0 y[1] (numeric) = 1.6586623066438622549229203844282 absolute error = 1.6586623066438622549229203844282 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.248 Order of pole = 9.256 TOP MAIN SOLVE Loop x[1] = 1.199 y[1] (analytic) = 0 y[1] (numeric) = 1.6605695573091687840211989812894 absolute error = 1.6605695573091687840211989812894 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.248 Order of pole = 9.255 TOP MAIN SOLVE Loop x[1] = 1.2 y[1] (analytic) = 0 y[1] (numeric) = 1.6624772883057206249525585638695 absolute error = 1.6624772883057206249525585638695 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.248 Order of pole = 9.254 TOP MAIN SOLVE Loop x[1] = 1.201 y[1] (analytic) = 0 y[1] (numeric) = 1.6643854985219456983420885871287 absolute error = 1.6643854985219456983420885871287 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.247 Order of pole = 9.254 TOP MAIN SOLVE Loop memory used=366.2MB, alloc=4.6MB, time=38.19 x[1] = 1.202 y[1] (analytic) = 0 y[1] (numeric) = 1.6662941868448941520378071159509 absolute error = 1.6662941868448941520378071159509 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.247 Order of pole = 9.253 TOP MAIN SOLVE Loop x[1] = 1.203 y[1] (analytic) = 0 y[1] (numeric) = 1.6682033521602410460994268174601 absolute error = 1.6682033521602410460994268174601 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.247 Order of pole = 9.252 TOP MAIN SOLVE Loop x[1] = 1.204 y[1] (analytic) = 0 y[1] (numeric) = 1.6701129933522890454035674531118 absolute error = 1.6701129933522890454035674531118 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.247 Order of pole = 9.251 TOP MAIN SOLVE Loop x[1] = 1.205 y[1] (analytic) = 0 y[1] (numeric) = 1.6720231093039711198542138853776 absolute error = 1.6720231093039711198542138853776 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.247 Order of pole = 9.249 TOP MAIN SOLVE Loop x[1] = 1.206 y[1] (analytic) = 0 y[1] (numeric) = 1.6739336988968532521871519449829 absolute error = 1.6739336988968532521871519449829 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.247 Order of pole = 9.248 TOP MAIN SOLVE Loop x[1] = 1.207 y[1] (analytic) = 0 y[1] (numeric) = 1.6758447610111371533570478950416 absolute error = 1.6758447610111371533570478950416 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.246 Order of pole = 9.247 TOP MAIN SOLVE Loop x[1] = 1.208 y[1] (analytic) = 0 y[1] (numeric) = 1.6777562945256629854957706788759 absolute error = 1.6777562945256629854957706788759 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.246 Order of pole = 9.246 TOP MAIN SOLVE Loop x[1] = 1.209 y[1] (analytic) = 0 y[1] (numeric) = 1.6796682983179120924304896496391 absolute error = 1.6796682983179120924304896496391 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.246 Order of pole = 9.245 TOP MAIN SOLVE Loop x[1] = 1.21 y[1] (analytic) = 0 y[1] (numeric) = 1.6815807712640097377500140528909 absolute error = 1.6815807712640097377500140528909 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.246 Order of pole = 9.244 TOP MAIN SOLVE Loop x[1] = 1.211 y[1] (analytic) = 0 y[1] (numeric) = 1.6834937122387278504077741688339 absolute error = 1.6834937122387278504077741688339 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.246 Order of pole = 9.242 TOP MAIN SOLVE Loop x[1] = 1.212 y[1] (analytic) = 0 y[1] (numeric) = 1.685407120115487777849777719819 absolute error = 1.685407120115487777849777719819 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.245 Order of pole = 9.241 TOP MAIN SOLVE Loop memory used=370.0MB, alloc=4.6MB, time=38.60 x[1] = 1.213 y[1] (analytic) = 0 y[1] (numeric) = 1.687320993766363046655808911797 absolute error = 1.687320993766363046655808911797 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.245 Order of pole = 9.24 TOP MAIN SOLVE Loop x[1] = 1.214 y[1] (analytic) = 0 y[1] (numeric) = 1.6892353320620821306820713064429 absolute error = 1.6892353320620821306820713064429 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.245 Order of pole = 9.238 TOP MAIN SOLVE Loop x[1] = 1.215 y[1] (analytic) = 0 y[1] (numeric) = 1.6911501338720312266934096145366 absolute error = 1.6911501338720312266934096145366 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.245 Order of pole = 9.237 TOP MAIN SOLVE Loop x[1] = 1.216 y[1] (analytic) = 0 y[1] (numeric) = 1.6930653980642570374731794616623 absolute error = 1.6930653980642570374731794616623 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.245 Order of pole = 9.236 TOP MAIN SOLVE Loop x[1] = 1.217 y[1] (analytic) = 0 y[1] (numeric) = 1.6949811235054695623987682052117 absolute error = 1.6949811235054695623987682052117 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.244 Order of pole = 9.234 TOP MAIN SOLVE Loop x[1] = 1.218 y[1] (analytic) = 0 y[1] (numeric) = 1.6968973090610448954707039778616 absolute error = 1.6968973090610448954707039778616 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.244 Order of pole = 9.233 TOP MAIN SOLVE Loop x[1] = 1.219 y[1] (analytic) = 0 y[1] (numeric) = 1.6988139535950280307832242979588 absolute error = 1.6988139535950280307832242979588 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.244 Order of pole = 9.231 TOP MAIN SOLVE Loop x[1] = 1.22 y[1] (analytic) = 0 y[1] (numeric) = 1.7007310559701356754241098224119 absolute error = 1.7007310559701356754241098224119 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.244 Order of pole = 9.23 TOP MAIN SOLVE Loop x[1] = 1.221 y[1] (analytic) = 0 y[1] (numeric) = 1.7026486150477590697915231235679 absolute error = 1.7026486150477590697915231235679 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.243 Order of pole = 9.228 TOP MAIN SOLVE Loop x[1] = 1.222 y[1] (analytic) = 0 y[1] (numeric) = 1.7045666296879668153155267489677 absolute error = 1.7045666296879668153155267489677 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.243 Order of pole = 9.227 TOP MAIN SOLVE Loop x[1] = 1.223 y[1] (analytic) = 0 y[1] (numeric) = 1.7064850987495077095718892726421 absolute error = 1.7064850987495077095718892726421 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.243 Order of pole = 9.225 TOP MAIN SOLVE Loop x[1] = 1.224 y[1] (analytic) = 0 y[1] (numeric) = 1.7084040210898135887757225695443 absolute error = 1.7084040210898135887757225695443 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.243 Order of pole = 9.223 memory used=373.8MB, alloc=4.6MB, time=39.01 TOP MAIN SOLVE Loop x[1] = 1.225 y[1] (analytic) = 0 y[1] (numeric) = 1.710323395565002177642428141639 absolute error = 1.710323395565002177642428141639 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.243 Order of pole = 9.222 TOP MAIN SOLVE Loop x[1] = 1.226 y[1] (analytic) = 0 y[1] (numeric) = 1.71224322102987994660336499589 absolute error = 1.71224322102987994660336499589 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.242 Order of pole = 9.22 TOP MAIN SOLVE Loop x[1] = 1.227 y[1] (analytic) = 0 y[1] (numeric) = 1.7141634963379449763635863217307 absolute error = 1.7141634963379449763635863217307 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.242 Order of pole = 9.218 TOP MAIN SOLVE Loop x[1] = 1.228 y[1] (analytic) = 0 y[1] (numeric) = 1.7160842203413898297889270393772 absolute error = 1.7160842203413898297889270393772 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.242 Order of pole = 9.217 TOP MAIN SOLVE Loop x[1] = 1.229 y[1] (analytic) = 0 y[1] (numeric) = 1.7180053918911044311096591913673 absolute error = 1.7180053918911044311096591913673 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.242 Order of pole = 9.215 TOP MAIN SOLVE Loop x[1] = 1.23 y[1] (analytic) = 0 y[1] (numeric) = 1.7199270098366789524278671287941 absolute error = 1.7199270098366789524278671287941 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.241 Order of pole = 9.213 TOP MAIN SOLVE Loop x[1] = 1.231 y[1] (analytic) = 0 y[1] (numeric) = 1.7218490730264067075156295016696 absolute error = 1.7218490730264067075156295016696 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.241 Order of pole = 9.211 TOP MAIN SOLVE Loop x[1] = 1.232 y[1] (analytic) = 0 y[1] (numeric) = 1.7237715803072870528910302005077 absolute error = 1.7237715803072870528910302005077 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.241 Order of pole = 9.21 TOP MAIN SOLVE Loop x[1] = 1.233 y[1] (analytic) = 0 y[1] (numeric) = 1.7256945305250282961589556143758 absolute error = 1.7256945305250282961589556143758 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.241 Order of pole = 9.208 TOP MAIN SOLVE Loop x[1] = 1.234 y[1] (analytic) = 0 y[1] (numeric) = 1.7276179225240506116035708701431 absolute error = 1.7276179225240506116035708701431 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.24 Order of pole = 9.206 TOP MAIN SOLVE Loop x[1] = 1.235 y[1] (analytic) = 0 y[1] (numeric) = 1.72954175514748896301930309926 absolute error = 1.72954175514748896301930309926 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.24 Order of pole = 9.204 TOP MAIN SOLVE Loop memory used=377.6MB, alloc=4.6MB, time=39.41 x[1] = 1.236 y[1] (analytic) = 0 y[1] (numeric) = 1.7314660272371960337670952429528 absolute error = 1.7314660272371960337670952429528 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.24 Order of pole = 9.202 TOP MAIN SOLVE Loop x[1] = 1.237 y[1] (analytic) = 0 y[1] (numeric) = 1.7333907376337451640426294550183 absolute error = 1.7333907376337451640426294550183 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.24 Order of pole = 9.2 TOP MAIN SOLVE Loop x[1] = 1.238 y[1] (analytic) = 0 y[1] (numeric) = 1.735315885176433295343154794271 absolute error = 1.735315885176433295343154794271 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.239 Order of pole = 9.198 TOP MAIN SOLVE Loop x[1] = 1.239 y[1] (analytic) = 0 y[1] (numeric) = 1.7372414687032839221194896169328 absolute error = 1.7372414687032839221194896169328 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.239 Order of pole = 9.196 TOP MAIN SOLVE Loop x[1] = 1.24 y[1] (analytic) = 0 y[1] (numeric) = 1.7391674870510500505997048836805 absolute error = 1.7391674870510500505997048836805 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.239 Order of pole = 9.194 TOP MAIN SOLVE Loop x[1] = 1.241 y[1] (analytic) = 0 y[1] (numeric) = 1.7410939390552171647709304874811 absolute error = 1.7410939390552171647709304874811 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.239 Order of pole = 9.192 TOP MAIN SOLVE Loop x[1] = 1.242 y[1] (analytic) = 0 y[1] (numeric) = 1.7430208235500061995056626875638 absolute error = 1.7430208235500061995056626875638 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.238 Order of pole = 9.19 TOP MAIN SOLVE Loop x[1] = 1.243 y[1] (analytic) = 0 y[1] (numeric) = 1.7449481393683765208188868027033 absolute error = 1.7449481393683765208188868027033 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.238 Order of pole = 9.188 TOP MAIN SOLVE Loop x[1] = 1.244 y[1] (analytic) = 0 y[1] (numeric) = 1.7468758853420289132422654742328 absolute error = 1.7468758853420289132422654742328 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.238 Order of pole = 9.186 TOP MAIN SOLVE Loop x[1] = 1.245 y[1] (analytic) = 0 y[1] (numeric) = 1.7488040603014085743015790566727 absolute error = 1.7488040603014085743015790566727 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.238 Order of pole = 9.184 TOP MAIN SOLVE Loop x[1] = 1.246 y[1] (analytic) = 0 y[1] (numeric) = 1.7507326630757081160835410323549 absolute error = 1.7507326630757081160835410323549 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.237 Order of pole = 9.182 TOP MAIN SOLVE Loop x[1] = 1.247 y[1] (analytic) = 0 y[1] (numeric) = 1.752661692492870573878047776756 absolute error = 1.752661692492870573878047776756 relative error = -1 % Correct digits = -1 h = 0.001 memory used=381.4MB, alloc=4.6MB, time=39.81 Complex estimate of poles used for equation 1 Radius of convergence = 4.237 Order of pole = 9.18 TOP MAIN SOLVE Loop x[1] = 1.248 y[1] (analytic) = 0 y[1] (numeric) = 1.7545911473795924218818585242204 absolute error = 1.7545911473795924218818585242204 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.237 Order of pole = 9.178 TOP MAIN SOLVE Loop x[1] = 1.249 y[1] (analytic) = 0 y[1] (numeric) = 1.75652102656132659594963800017 absolute error = 1.75652102656132659594963800017 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.236 Order of pole = 9.176 TOP MAIN SOLVE Loop x[1] = 1.25 y[1] (analytic) = 0 y[1] (numeric) = 1.7584513288622855233782308965563 absolute error = 1.7584513288622855233782308965563 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.236 Order of pole = 9.174 TOP MAIN SOLVE Loop x[1] = 1.251 y[1] (analytic) = 0 y[1] (numeric) = 1.7603820531054441597099741730212 absolute error = 1.7603820531054441597099741730212 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.236 Order of pole = 9.172 TOP MAIN SOLVE Loop x[1] = 1.252 y[1] (analytic) = 0 y[1] (numeric) = 1.7623131981125430325407900677943 absolute error = 1.7623131981125430325407900677943 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.236 Order of pole = 9.169 TOP MAIN SOLVE Loop x[1] = 1.253 y[1] (analytic) = 0 y[1] (numeric) = 1.7642447627040912923187397005685 absolute error = 1.7642447627040912923187397005685 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.235 Order of pole = 9.167 TOP MAIN SOLVE Loop x[1] = 1.254 y[1] (analytic) = 0 y[1] (numeric) = 1.7661767456993697701186542452627 absolute error = 1.7661767456993697701186542452627 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.235 Order of pole = 9.165 TOP MAIN SOLVE Loop x[1] = 1.255 y[1] (analytic) = 0 y[1] (numeric) = 1.7681091459164340423783978444996 absolute error = 1.7681091459164340423783978444996 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.235 Order of pole = 9.163 TOP MAIN SOLVE Loop x[1] = 1.256 y[1] (analytic) = 0 y[1] (numeric) = 1.7700419621721175025822537305986 absolute error = 1.7700419621721175025822537305986 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.234 Order of pole = 9.161 TOP MAIN SOLVE Loop x[1] = 1.257 y[1] (analytic) = 0 y[1] (numeric) = 1.7719751932820344398768624107052 absolute error = 1.7719751932820344398768624107052 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.234 Order of pole = 9.159 TOP MAIN SOLVE Loop x[1] = 1.258 y[1] (analytic) = 0 y[1] (numeric) = 1.7739088380605831246050782671448 absolute error = 1.7739088380605831246050782671448 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.234 Order of pole = 9.156 TOP MAIN SOLVE Loop memory used=385.2MB, alloc=4.6MB, time=40.21 x[1] = 1.259 y[1] (analytic) = 0 y[1] (numeric) = 1.7758428953209489007430485190023 absolute error = 1.7758428953209489007430485190023 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.234 Order of pole = 9.154 TOP MAIN SOLVE Loop x[1] = 1.26 y[1] (analytic) = 0 y[1] (numeric) = 1.7777773638751072852257561880789 absolute error = 1.7777773638751072852257561880789 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.233 Order of pole = 9.152 TOP MAIN SOLVE Loop x[1] = 1.261 y[1] (analytic) = 0 y[1] (numeric) = 1.7797122425338270741462065125617 absolute error = 1.7797122425338270741462065125617 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.233 Order of pole = 9.15 TOP MAIN SOLVE Loop x[1] = 1.262 y[1] (analytic) = 0 y[1] (numeric) = 1.7816475301066734558133741557563 absolute error = 1.7816475301066734558133741557563 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.233 Order of pole = 9.148 TOP MAIN SOLVE Loop x[1] = 1.263 y[1] (analytic) = 0 y[1] (numeric) = 1.7835832254020111306539665658646 absolute error = 1.7835832254020111306539665658646 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.233 Order of pole = 9.145 TOP MAIN SOLVE Loop x[1] = 1.264 y[1] (analytic) = 0 y[1] (numeric) = 1.7855193272270074379429969568388 absolute error = 1.7855193272270074379429969568388 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.232 Order of pole = 9.143 TOP MAIN SOLVE Loop x[1] = 1.265 y[1] (analytic) = 0 y[1] (numeric) = 1.7874558343876354893480986005937 absolute error = 1.7874558343876354893480986005937 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.232 Order of pole = 9.141 TOP MAIN SOLVE Loop x[1] = 1.266 y[1] (analytic) = 0 y[1] (numeric) = 1.7893927456886773092724504481069 absolute error = 1.7893927456886773092724504481069 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.232 Order of pole = 9.139 TOP MAIN SOLVE Loop x[1] = 1.267 y[1] (analytic) = 0 y[1] (numeric) = 1.7913300599337269819811225319678 absolute error = 1.7913300599337269819811225319678 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.231 Order of pole = 9.137 TOP MAIN SOLVE Loop x[1] = 1.268 y[1] (analytic) = 0 y[1] (numeric) = 1.7932677759251938054955881465403 absolute error = 1.7932677759251938054955881465403 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.231 Order of pole = 9.134 TOP MAIN SOLVE Loop x[1] = 1.269 y[1] (analytic) = 0 y[1] (numeric) = 1.7952058924643054522410884548716 absolute error = 1.7952058924643054522410884548716 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.231 Order of pole = 9.132 TOP MAIN SOLVE Loop memory used=389.1MB, alloc=4.6MB, time=40.62 x[1] = 1.27 y[1] (analytic) = 0 y[1] (numeric) = 1.7971444083511111364314739345892 absolute error = 1.7971444083511111364314739345892 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.231 Order of pole = 9.13 TOP MAIN SOLVE Loop x[1] = 1.271 y[1] (analytic) = 0 y[1] (numeric) = 1.7990833223844847881760859490768 absolute error = 1.7990833223844847881760859490768 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.23 Order of pole = 9.128 TOP MAIN SOLVE Loop x[1] = 1.272 y[1] (analytic) = 0 y[1] (numeric) = 1.8010226333621282342931807159817 absolute error = 1.8010226333621282342931807159817 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.23 Order of pole = 9.125 TOP MAIN SOLVE Loop x[1] = 1.273 y[1] (analytic) = 0 y[1] (numeric) = 1.8029623400805743858143370433715 absolute error = 1.8029623400805743858143370433715 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.23 Order of pole = 9.123 TOP MAIN SOLVE Loop x[1] = 1.274 y[1] (analytic) = 0 y[1] (numeric) = 1.8049024413351904321642284154071 absolute error = 1.8049024413351904321642284154071 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.229 Order of pole = 9.121 TOP MAIN SOLVE Loop x[1] = 1.275 y[1] (analytic) = 0 y[1] (numeric) = 1.8068429359201810420000793350133 absolute error = 1.8068429359201810420000793350133 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.229 Order of pole = 9.119 TOP MAIN SOLVE Loop x[1] = 1.276 y[1] (analytic) = 0 y[1] (numeric) = 1.8087838226285915706950652714899 absolute error = 1.8087838226285915706950652714899 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.229 Order of pole = 9.117 TOP MAIN SOLVE Loop x[1] = 1.277 y[1] (analytic) = 0 y[1] (numeric) = 1.8107251002523112744498551170922 absolute error = 1.8107251002523112744498551170922 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.229 Order of pole = 9.114 TOP MAIN SOLVE Loop x[1] = 1.278 y[1] (analytic) = 0 y[1] (numeric) = 1.8126667675820765310164347291007 absolute error = 1.8126667675820765310164347291007 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.228 Order of pole = 9.112 TOP MAIN SOLVE Loop x[1] = 1.279 y[1] (analytic) = 0 y[1] (numeric) = 1.8146088234074740670182899235737 absolute error = 1.8146088234074740670182899235737 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.228 Order of pole = 9.11 TOP MAIN SOLVE Loop x[1] = 1.28 y[1] (analytic) = 0 y[1] (numeric) = 1.8165512665169441918509671946058 absolute error = 1.8165512665169441918509671946058 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.228 Order of pole = 9.108 TOP MAIN SOLVE Loop x[1] = 1.281 y[1] (analytic) = 0 y[1] (numeric) = 1.81849409569778403814697045928 absolute error = 1.81849409569778403814697045928 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 9.106 TOP MAIN SOLVE Loop memory used=392.9MB, alloc=4.6MB, time=41.02 x[1] = 1.282 y[1] (analytic) = 0 y[1] (numeric) = 1.8204373097361508087888922743712 absolute error = 1.8204373097361508087888922743712 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 9.103 TOP MAIN SOLVE Loop x[1] = 1.283 y[1] (analytic) = 0 y[1] (numeric) = 1.8223809074170650304546182370112 absolute error = 1.8223809074170650304546182370112 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 9.101 TOP MAIN SOLVE Loop x[1] = 1.284 y[1] (analytic) = 0 y[1] (numeric) = 1.8243248875244138136783836687274 absolute error = 1.8243248875244138136783836687274 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 9.099 TOP MAIN SOLVE Loop x[1] = 1.285 y[1] (analytic) = 0 y[1] (numeric) = 1.8262692488409541194114021912931 absolute error = 1.8262692488409541194114021912931 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.226 Order of pole = 9.097 TOP MAIN SOLVE Loop x[1] = 1.286 y[1] (analytic) = 0 y[1] (numeric) = 1.828213990148316032065726434445 absolute error = 1.828213990148316032065726434445 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.226 Order of pole = 9.095 TOP MAIN SOLVE Loop x[1] = 1.287 y[1] (analytic) = 0 y[1] (numeric) = 1.8301591102270060390249418705008 absolute error = 1.8301591102270060390249418705008 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.226 Order of pole = 9.093 TOP MAIN SOLVE Loop x[1] = 1.288 y[1] (analytic) = 0 y[1] (numeric) = 1.8321046078564103166052356500149 absolute error = 1.8321046078564103166052356500149 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.226 Order of pole = 9.091 TOP MAIN SOLVE Loop x[1] = 1.289 y[1] (analytic) = 0 y[1] (numeric) = 1.8340504818147980224503233166087 absolute error = 1.8340504818147980224503233166087 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.225 Order of pole = 9.088 TOP MAIN SOLVE Loop x[1] = 1.29 y[1] (analytic) = 0 y[1] (numeric) = 1.8359967308793245943436574087663 absolute error = 1.8359967308793245943436574087663 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.225 Order of pole = 9.086 TOP MAIN SOLVE Loop x[1] = 1.291 y[1] (analytic) = 0 y[1] (numeric) = 1.8379433538260350554212832124647 absolute error = 1.8379433538260350554212832124647 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.225 Order of pole = 9.084 TOP MAIN SOLVE Loop x[1] = 1.292 y[1] (analytic) = 0 y[1] (numeric) = 1.8398903494298673257686483117666 absolute error = 1.8398903494298673257686483117666 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.224 Order of pole = 9.082 TOP MAIN SOLVE Loop memory used=396.7MB, alloc=4.6MB, time=41.42 x[1] = 1.293 y[1] (analytic) = 0 y[1] (numeric) = 1.8418377164646555403846140957075 absolute error = 1.8418377164646555403846140957075 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.224 Order of pole = 9.08 TOP MAIN SOLVE Loop x[1] = 1.294 y[1] (analytic) = 0 y[1] (numeric) = 1.8437854537031333734958590197176 absolute error = 1.8437854537031333734958590197176 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.224 Order of pole = 9.078 TOP MAIN SOLVE Loop x[1] = 1.295 y[1] (analytic) = 0 y[1] (numeric) = 1.8457335599169373692048051891871 absolute error = 1.8457335599169373692048051891871 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.224 Order of pole = 9.076 TOP MAIN SOLVE Loop x[1] = 1.296 y[1] (analytic) = 0 y[1] (numeric) = 1.8476820338766102784541417323718 absolute error = 1.8476820338766102784541417323718 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.223 Order of pole = 9.074 TOP MAIN SOLVE Loop x[1] = 1.297 y[1] (analytic) = 0 y[1] (numeric) = 1.8496308743516044022909604603996 absolute error = 1.8496308743516044022909604603996 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.223 Order of pole = 9.072 TOP MAIN SOLVE Loop x[1] = 1.298 y[1] (analytic) = 0 y[1] (numeric) = 1.8515800801102849414134614744286 absolute error = 1.8515800801102849414134614744286 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.223 Order of pole = 9.07 TOP MAIN SOLVE Loop x[1] = 1.299 y[1] (analytic) = 0 y[1] (numeric) = 1.8535296499199333519831286747816 absolute error = 1.8535296499199333519831286747816 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.223 Order of pole = 9.068 TOP MAIN SOLVE Loop x[1] = 1.3 y[1] (analytic) = 0 y[1] (numeric) = 1.8554795825467507076852175548875 absolute error = 1.8554795825467507076852175548875 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.222 Order of pole = 9.066 TOP MAIN SOLVE Loop x[1] = 1.301 y[1] (analytic) = 0 y[1] (numeric) = 1.8574298767558610680203402248515 absolute error = 1.8574298767558610680203402248515 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.222 Order of pole = 9.064 TOP MAIN SOLVE Loop x[1] = 1.302 y[1] (analytic) = 0 y[1] (numeric) = 1.8593805313113148528098753061977 absolute error = 1.8593805313113148528098753061977 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.222 Order of pole = 9.062 TOP MAIN SOLVE Loop x[1] = 1.303 y[1] (analytic) = 0 y[1] (numeric) = 1.8613315449760922228978731715301 absolute error = 1.8613315449760922228978731715301 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.222 Order of pole = 9.06 TOP MAIN SOLVE Loop x[1] = 1.304 y[1] (analytic) = 0 y[1] (numeric) = 1.863282916512106467032069971288 absolute error = 1.863282916512106467032069971288 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.221 Order of pole = 9.058 memory used=400.5MB, alloc=4.6MB, time=41.82 TOP MAIN SOLVE Loop x[1] = 1.305 y[1] (analytic) = 0 y[1] (numeric) = 1.8652346446802073949065669951685 absolute error = 1.8652346446802073949065669951685 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.221 Order of pole = 9.057 TOP MAIN SOLVE Loop x[1] = 1.306 y[1] (analytic) = 0 y[1] (numeric) = 1.8671867282401847363486751589048 absolute error = 1.8671867282401847363486751589048 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.221 Order of pole = 9.055 TOP MAIN SOLVE Loop x[1] = 1.307 y[1] (analytic) = 0 y[1] (numeric) = 1.8691391659507715466323677886547 absolute error = 1.8691391659507715466323677886547 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.221 Order of pole = 9.053 TOP MAIN SOLVE Loop x[1] = 1.308 y[1] (analytic) = 0 y[1] (numeric) = 1.8710919565696476179007283960203 absolute error = 1.8710919565696476179007283960203 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.221 Order of pole = 9.051 TOP MAIN SOLVE Loop x[1] = 1.309 y[1] (analytic) = 0 y[1] (numeric) = 1.8730450988534428966797237974173 absolute error = 1.8730450988534428966797237974173 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.22 Order of pole = 9.049 TOP MAIN SOLVE Loop x[1] = 1.31 y[1] (analytic) = 0 y[1] (numeric) = 1.874998591557740907465576732884 absolute error = 1.874998591557740907465576732884 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.22 Order of pole = 9.048 TOP MAIN SOLVE Loop x[1] = 1.311 y[1] (analytic) = 0 y[1] (numeric) = 1.8769524334370821823679560821988 absolute error = 1.8769524334370821823679560821988 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.22 Order of pole = 9.046 TOP MAIN SOLVE Loop x[1] = 1.312 y[1] (analytic) = 0 y[1] (numeric) = 1.8789066232449676967911468610958 absolute error = 1.8789066232449676967911468610958 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.22 Order of pole = 9.044 TOP MAIN SOLVE Loop x[1] = 1.313 y[1] (analytic) = 0 y[1] (numeric) = 1.8808611597338623111353064081633 absolute error = 1.8808611597338623111353064081633 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.219 Order of pole = 9.043 TOP MAIN SOLVE Loop x[1] = 1.314 y[1] (analytic) = 0 y[1] (numeric) = 1.8828160416551982184998575444127 absolute error = 1.8828160416551982184998575444127 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.219 Order of pole = 9.041 TOP MAIN SOLVE Loop x[1] = 1.315 y[1] (analytic) = 0 y[1] (numeric) = 1.8847712677593783983710140032419 absolute error = 1.8847712677593783983710140032419 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.219 Order of pole = 9.039 TOP MAIN SOLVE Loop memory used=404.3MB, alloc=4.6MB, time=42.22 x[1] = 1.316 y[1] (analytic) = 0 y[1] (numeric) = 1.88672683679578007627537808932 absolute error = 1.88672683679578007627537808932 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.219 Order of pole = 9.038 TOP MAIN SOLVE Loop x[1] = 1.317 y[1] (analytic) = 0 y[1] (numeric) = 1.8886827475127581893814953315106 absolute error = 1.8886827475127581893814953315106 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.219 Order of pole = 9.036 TOP MAIN SOLVE Loop x[1] = 1.318 y[1] (analytic) = 0 y[1] (numeric) = 1.8906389986576488580311958480599 absolute error = 1.8906389986576488580311958480599 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.218 Order of pole = 9.035 TOP MAIN SOLVE Loop x[1] = 1.319 y[1] (analytic) = 0 y[1] (numeric) = 1.8925955889767728631824972426216 absolute error = 1.8925955889767728631824972426216 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.218 Order of pole = 9.033 TOP MAIN SOLVE Loop x[1] = 1.32 y[1] (analytic) = 0 y[1] (numeric) = 1.8945525172154391297457890979971 absolute error = 1.8945525172154391297457890979971 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.218 Order of pole = 9.032 TOP MAIN SOLVE Loop x[1] = 1.321 y[1] (analytic) = 0 y[1] (numeric) = 1.8965097821179482157949645314571 absolute error = 1.8965097821179482157949645314571 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.218 Order of pole = 9.03 TOP MAIN SOLVE Loop x[1] = 1.322 y[1] (analytic) = 0 y[1] (numeric) = 1.8984673824275958076351098218985 absolute error = 1.8984673824275958076351098218985 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.218 Order of pole = 9.029 TOP MAIN SOLVE Loop x[1] = 1.323 y[1] (analytic) = 0 y[1] (numeric) = 1.900425316886676220708308815591 absolute error = 1.900425316886676220708308815591 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.217 Order of pole = 9.027 TOP MAIN SOLVE Loop x[1] = 1.324 y[1] (analytic) = 0 y[1] (numeric) = 1.9023835842364859063190646646043 absolute error = 1.9023835842364859063190646646043 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.217 Order of pole = 9.026 TOP MAIN SOLVE Loop x[1] = 1.325 y[1] (analytic) = 0 y[1] (numeric) = 1.9043421832173269641607874508827 absolute error = 1.9043421832173269641607874508827 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.217 Order of pole = 9.025 TOP MAIN SOLVE Loop x[1] = 1.326 y[1] (analytic) = 0 y[1] (numeric) = 1.9063011125685106606247424000712 absolute error = 1.9063011125685106606247424000712 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.217 Order of pole = 9.023 TOP MAIN SOLVE Loop memory used=408.1MB, alloc=4.6MB, time=42.62 x[1] = 1.327 y[1] (analytic) = 0 y[1] (numeric) = 1.9082603710283609528727996932965 absolute error = 1.9082603710283609528727996932965 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.217 Order of pole = 9.022 TOP MAIN SOLVE Loop x[1] = 1.328 y[1] (analytic) = 0 y[1] (numeric) = 1.9102199573342180186552733428844 absolute error = 1.9102199573342180186552733428844 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.216 Order of pole = 9.021 TOP MAIN SOLVE Loop x[1] = 1.329 y[1] (analytic) = 0 y[1] (numeric) = 1.9121798702224417918550832101523 absolute error = 1.9121798702224417918550832101523 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.216 Order of pole = 9.02 TOP MAIN SOLVE Loop x[1] = 1.33 y[1] (analytic) = 0 y[1] (numeric) = 1.9141401084284155037394210106598 absolute error = 1.9141401084284155037394210106598 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.216 Order of pole = 9.018 TOP MAIN SOLVE Loop x[1] = 1.331 y[1] (analytic) = 0 y[1] (numeric) = 1.9161006706865492299000480753348 absolute error = 1.9161006706865492299000480753348 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.216 Order of pole = 9.017 TOP MAIN SOLVE Loop x[1] = 1.332 y[1] (analytic) = 0 y[1] (numeric) = 1.9180615557302834428632997154178 absolute error = 1.9180615557302834428632997154178 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.216 Order of pole = 9.016 TOP MAIN SOLVE Loop x[1] = 1.333 y[1] (analytic) = 0 y[1] (numeric) = 1.9200227622920925703508182758825 absolute error = 1.9200227622920925703508182758825 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.216 Order of pole = 9.015 TOP MAIN SOLVE Loop x[1] = 1.334 y[1] (analytic) = 0 y[1] (numeric) = 1.921984289103488559171984356595 absolute error = 1.921984289103488559171984356595 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.216 Order of pole = 9.014 TOP MAIN SOLVE Loop x[1] = 1.335 y[1] (analytic) = 0 y[1] (numeric) = 1.9239461348950244447289632336644 absolute error = 1.9239461348950244447289632336644 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.215 Order of pole = 9.013 TOP MAIN SOLVE Loop x[1] = 1.336 y[1] (analytic) = 0 y[1] (numeric) = 1.925908298396297926115231225902 absolute error = 1.925908298396297926115231225902 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.215 Order of pole = 9.012 TOP MAIN SOLVE Loop x[1] = 1.337 y[1] (analytic) = 0 y[1] (numeric) = 1.9278707783359549467883946237486 absolute error = 1.9278707783359549467883946237486 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.215 Order of pole = 9.011 TOP MAIN SOLVE Loop x[1] = 1.338 y[1] (analytic) = 0 y[1] (numeric) = 1.9298335734416932807980618311278 absolute error = 1.9298335734416932807980618311278 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.215 Order of pole = 9.01 TOP MAIN SOLVE Loop memory used=412.0MB, alloc=4.6MB, time=43.02 x[1] = 1.339 y[1] (analytic) = 0 y[1] (numeric) = 1.9317966824402661245494775651343 absolute error = 1.9317966824402661245494775651343 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.215 Order of pole = 9.009 TOP MAIN SOLVE Loop x[1] = 1.34 y[1] (analytic) = 0 y[1] (numeric) = 1.9337601040574856940835763149551 absolute error = 1.9337601040574856940835763149551 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.215 Order of pole = 9.008 TOP MAIN SOLVE Loop x[1] = 1.341 y[1] (analytic) = 0 y[1] (numeric) = 1.9357238370182268278540607806315 absolute error = 1.9357238370182268278540607806315 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.215 Order of pole = 9.007 TOP MAIN SOLVE Loop x[1] = 1.342 y[1] (analytic) = 0 y[1] (numeric) = 1.937687880046430594982059694885 absolute error = 1.937687880046430594982059694885 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.214 Order of pole = 9.007 TOP MAIN SOLVE Loop x[1] = 1.343 y[1] (analytic) = 0 y[1] (numeric) = 1.9396522318651079089688682779341 absolute error = 1.9396522318651079089688682779341 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.214 Order of pole = 9.006 TOP MAIN SOLVE Loop x[1] = 1.344 y[1] (analytic) = 0 y[1] (numeric) = 1.9416168911963431468472235866948 absolute error = 1.9416168911963431468472235866948 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.214 Order of pole = 9.005 TOP MAIN SOLVE Loop x[1] = 1.345 y[1] (analytic) = 0 y[1] (numeric) = 1.94358185676129777375151619667 absolute error = 1.94358185676129777375151619667 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.214 Order of pole = 9.004 TOP MAIN SOLVE Loop x[1] = 1.346 y[1] (analytic) = 0 y[1] (numeric) = 1.9455471272802139728872889978637 absolute error = 1.9455471272802139728872889978637 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.214 Order of pole = 9.004 TOP MAIN SOLVE Loop x[1] = 1.347 y[1] (analytic) = 0 y[1] (numeric) = 1.9475127014724182808803233958751 absolute error = 1.9475127014724182808803233958751 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.214 Order of pole = 9.003 TOP MAIN SOLVE Loop x[1] = 1.348 y[1] (analytic) = 0 y[1] (numeric) = 1.9494785780563252284855628866152 absolute error = 1.9494785780563252284855628866152 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.214 Order of pole = 9.002 TOP MAIN SOLVE Loop x[1] = 1.349 y[1] (analytic) = 0 y[1] (numeric) = 1.9514447557494409866360738185064 absolute error = 1.9514447557494409866360738185064 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.214 Order of pole = 9.002 TOP MAIN SOLVE Loop memory used=415.8MB, alloc=4.6MB, time=43.42 x[1] = 1.35 y[1] (analytic) = 0 y[1] (numeric) = 1.9534112332683670178121931702437 absolute error = 1.9534112332683670178121931702437 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.214 Order of pole = 9.001 TOP MAIN SOLVE Loop x[1] = 1.351 y[1] (analytic) = 0 y[1] (numeric) = 1.9553780093288037327109633558829 absolute error = 1.9553780093288037327109633558829 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 9.001 TOP MAIN SOLVE Loop x[1] = 1.352 y[1] (analytic) = 0 y[1] (numeric) = 1.9573450826455541521959044228352 absolute error = 1.9573450826455541521959044228352 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 9 TOP MAIN SOLVE Loop x[1] = 1.353 y[1] (analytic) = 0 y[1] (numeric) = 1.9593124519325275745071245329543 absolute error = 1.9593124519325275745071245329543 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 9 TOP MAIN SOLVE Loop x[1] = 1.354 y[1] (analytic) = 0 y[1] (numeric) = 1.9612801159027432477117203129597 absolute error = 1.9612801159027432477117203129597 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 9 TOP MAIN SOLVE Loop x[1] = 1.355 y[1] (analytic) = 0 y[1] (numeric) = 1.9632480732683340473743695286059 absolute error = 1.9632480732683340473743695286059 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 8.999 TOP MAIN SOLVE Loop x[1] = 1.356 y[1] (analytic) = 0 y[1] (numeric) = 1.9652163227405501594279695779349 absolute error = 1.9652163227405501594279695779349 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 8.999 TOP MAIN SOLVE Loop x[1] = 1.357 y[1] (analytic) = 0 y[1] (numeric) = 1.9671848630297627682241265132989 absolute error = 1.9671848630297627682241265132989 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 8.999 TOP MAIN SOLVE Loop x[1] = 1.358 y[1] (analytic) = 0 y[1] (numeric) = 1.9691536928454677497432506902526 absolute error = 1.9691536928454677497432506902526 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 8.999 TOP MAIN SOLVE Loop x[1] = 1.359 y[1] (analytic) = 0 y[1] (numeric) = 1.9711228108962893699439667045479 absolute error = 1.9711228108962893699439667045479 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 8.998 TOP MAIN SOLVE Loop x[1] = 1.36 y[1] (analytic) = 0 y[1] (numeric) = 1.9730922158899839882314970169622 absolute error = 1.9730922158899839882314970169622 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 8.998 TOP MAIN SOLVE Loop x[1] = 1.361 y[1] (analytic) = 0 y[1] (numeric) = 1.9750619065334437660246305801971 absolute error = 1.9750619065334437660246305801971 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 8.998 TOP MAIN SOLVE Loop memory used=419.6MB, alloc=4.6MB, time=43.82 x[1] = 1.362 y[1] (analytic) = 0 y[1] (numeric) = 1.9770318815327003804008398732453 absolute error = 1.9770318815327003804008398732453 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 8.998 TOP MAIN SOLVE Loop x[1] = 1.363 y[1] (analytic) = 0 y[1] (numeric) = 1.9790021395929287427990620170761 absolute error = 1.9790021395929287427990620170761 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 8.998 TOP MAIN SOLVE Loop x[1] = 1.364 y[1] (analytic) = 0 y[1] (numeric) = 1.9809726794184507227596120918738 absolute error = 1.9809726794184507227596120918738 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 8.998 TOP MAIN SOLVE Loop x[1] = 1.365 y[1] (analytic) = 0 y[1] (numeric) = 1.9829434997127388766806494010196 absolute error = 1.9829434997127388766806494010196 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 8.998 TOP MAIN SOLVE Loop x[1] = 1.366 y[1] (analytic) = 0 y[1] (numeric) = 1.9849145991784201815705702311598 absolute error = 1.9849145991784201815705702311598 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 8.998 TOP MAIN SOLVE Loop x[1] = 1.367 y[1] (analytic) = 0 y[1] (numeric) = 1.9868859765172797737756536416975 absolute error = 1.9868859765172797737756536416975 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 8.998 TOP MAIN SOLVE Loop x[1] = 1.368 y[1] (analytic) = 0 y[1] (numeric) = 1.9888576304302646926622399814975 absolute error = 1.9888576304302646926622399814975 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 8.999 TOP MAIN SOLVE Loop x[1] = 1.369 y[1] (analytic) = 0 y[1] (numeric) = 1.9908295596174876292326751761437 absolute error = 1.9908295596174876292326751761437 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 8.999 TOP MAIN SOLVE Loop x[1] = 1.37 y[1] (analytic) = 0 y[1] (numeric) = 1.9928017627782306796542073563532 absolute error = 1.9928017627782306796542073563532 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 8.999 TOP MAIN SOLVE Loop x[1] = 1.371 y[1] (analytic) = 0 y[1] (numeric) = 1.994774238610949103679976107758 absolute error = 1.994774238610949103679976107758 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.212 Order of pole = 8.999 TOP MAIN SOLVE Loop x[1] = 1.372 y[1] (analytic) = 0 y[1] (numeric) = 1.9967469858132750879411885148339 absolute error = 1.9967469858132750879411885148339 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.212 Order of pole = 9 TOP MAIN SOLVE Loop memory used=423.4MB, alloc=4.6MB, time=44.23 x[1] = 1.373 y[1] (analytic) = 0 y[1] (numeric) = 1.9987200030820215140895302479061 absolute error = 1.9987200030820215140895302479061 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.212 Order of pole = 9 TOP MAIN SOLVE Loop x[1] = 1.374 y[1] (analytic) = 0 y[1] (numeric) = 2.0006932891131857317688142025087 absolute error = 2.0006932891131857317688142025087 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.212 Order of pole = 9 TOP MAIN SOLVE Loop x[1] = 1.375 y[1] (analytic) = 0 y[1] (numeric) = 2.0026668426019533363948236455326 absolute error = 2.0026668426019533363948236455326 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.212 Order of pole = 9.001 TOP MAIN SOLVE Loop x[1] = 1.376 y[1] (analytic) = 0 y[1] (numeric) = 2.0046406622427019517222614531812 absolute error = 2.0046406622427019517222614531812 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 9.001 TOP MAIN SOLVE Loop x[1] = 1.377 y[1] (analytic) = 0 y[1] (numeric) = 2.0066147467290050171776718423668 absolute error = 2.0066147467290050171776718423668 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 9.002 TOP MAIN SOLVE Loop x[1] = 1.378 y[1] (analytic) = 0 y[1] (numeric) = 2.00858909475363557993715600044 absolute error = 2.00858909475363557993715600044 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 9.002 TOP MAIN SOLVE Loop x[1] = 1.379 y[1] (analytic) = 0 y[1] (numeric) = 2.0105637050085700917276582086444 absolute error = 2.0105637050085700917276582086444 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 9.003 TOP MAIN SOLVE Loop x[1] = 1.38 y[1] (analytic) = 0 y[1] (numeric) = 2.0125385761849922103305544330425 absolute error = 2.0125385761849922103305544330425 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 9.004 TOP MAIN SOLVE Loop x[1] = 1.381 y[1] (analytic) = 0 y[1] (numeric) = 2.0145137069732966057662309234573 absolute error = 2.0145137069732966057662309234573 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 9.004 TOP MAIN SOLVE Loop x[1] = 1.382 y[1] (analytic) = 0 y[1] (numeric) = 2.0164890960630927711382961168228 absolute error = 2.0164890960630927711382961168228 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 9.005 TOP MAIN SOLVE Loop x[1] = 1.383 y[1] (analytic) = 0 y[1] (numeric) = 2.0184647421432088381160250868263 absolute error = 2.0184647421432088381160250868263 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 9.006 TOP MAIN SOLVE Loop x[1] = 1.384 y[1] (analytic) = 0 y[1] (numeric) = 2.0204406439016953970335919174524 absolute error = 2.0204406439016953970335919174524 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 9.006 memory used=427.2MB, alloc=4.6MB, time=44.64 TOP MAIN SOLVE Loop x[1] = 1.385 y[1] (analytic) = 0 y[1] (numeric) = 2.0224168000258293215846017045921 absolute error = 2.0224168000258293215846017045921 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 9.007 TOP MAIN SOLVE Loop x[1] = 1.386 y[1] (analytic) = 0 y[1] (numeric) = 2.0243932092021175980903904078505 absolute error = 2.0243932092021175980903904078505 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 9.008 TOP MAIN SOLVE Loop x[1] = 1.387 y[1] (analytic) = 0 y[1] (numeric) = 2.0263698701163011593205174846575 absolute error = 2.0263698701163011593205174846575 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 9.009 TOP MAIN SOLVE Loop x[1] = 1.388 y[1] (analytic) = 0 y[1] (numeric) = 2.0283467814533587228438331413452 absolute error = 2.0283467814533587228438331413452 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 9.01 TOP MAIN SOLVE Loop x[1] = 1.389 y[1] (analytic) = 0 y[1] (numeric) = 2.030323941897510633888459131578 absolute error = 2.030323941897510633888459131578 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 9.011 TOP MAIN SOLVE Loop x[1] = 1.39 y[1] (analytic) = 0 y[1] (numeric) = 2.0323013501322227126889793219949 absolute error = 2.0323013501322227126889793219949 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 9.012 TOP MAIN SOLVE Loop x[1] = 1.391 y[1] (analytic) = 0 y[1] (numeric) = 2.0342790048402101062990937287148 absolute error = 2.0342790048402101062990937287148 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 9.013 TOP MAIN SOLVE Loop x[1] = 1.392 y[1] (analytic) = 0 y[1] (numeric) = 2.0362569047034411448479474070484 absolute error = 2.0362569047034411448479474070484 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 9.014 TOP MAIN SOLVE Loop x[1] = 1.393 y[1] (analytic) = 0 y[1] (numeric) = 2.0382350484031412022183034509167 absolute error = 2.0382350484031412022183034509167 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 9.015 TOP MAIN SOLVE Loop x[1] = 1.394 y[1] (analytic) = 0 y[1] (numeric) = 2.040213434619796561124687428674 absolute error = 2.040213434619796561124687428674 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 9.016 TOP MAIN SOLVE Loop x[1] = 1.395 y[1] (analytic) = 0 y[1] (numeric) = 2.0421920620331582825695888488328 absolute error = 2.0421920620331582825695888488328 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 9.017 TOP MAIN SOLVE Loop memory used=431.0MB, alloc=4.6MB, time=45.04 x[1] = 1.396 y[1] (analytic) = 0 y[1] (numeric) = 2.0441709293222460796557637131572 absolute error = 2.0441709293222460796557637131572 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.214 Order of pole = 9.019 TOP MAIN SOLVE Loop x[1] = 1.397 y[1] (analytic) = 0 y[1] (numeric) = 2.0461500351653521957326408762896 absolute error = 2.0461500351653521957326408762896 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.214 Order of pole = 9.02 TOP MAIN SOLVE Loop x[1] = 1.398 y[1] (analytic) = 0 y[1] (numeric) = 2.048129378240045286854793791064 absolute error = 2.048129378240045286854793791064 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.214 Order of pole = 9.021 TOP MAIN SOLVE Loop x[1] = 1.399 y[1] (analytic) = 0 y[1] (numeric) = 2.0501089572231743085303982774915 absolute error = 2.0501089572231743085303982774915 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.214 Order of pole = 9.023 TOP MAIN SOLVE Loop x[1] = 1.4 y[1] (analytic) = 0 y[1] (numeric) = 2.0520887707908724067375562116381 absolute error = 2.0520887707908724067375562116381 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.214 Order of pole = 9.024 TOP MAIN SOLVE Loop x[1] = 1.401 y[1] (analytic) = 0 y[1] (numeric) = 2.0540688176185608131863244887999 absolute error = 2.0540688176185608131863244887999 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.214 Order of pole = 9.025 TOP MAIN SOLVE Loop x[1] = 1.402 y[1] (analytic) = 0 y[1] (numeric) = 2.0560490963809527448042482740642 absolute error = 2.0560490963809527448042482740642 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.214 Order of pole = 9.027 TOP MAIN SOLVE Loop x[1] = 1.403 y[1] (analytic) = 0 y[1] (numeric) = 2.05802960575205730742315741308 absolute error = 2.05802960575205730742315741308 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.214 Order of pole = 9.028 TOP MAIN SOLVE Loop x[1] = 1.404 y[1] (analytic) = 0 y[1] (numeric) = 2.0600103444051834036449449371814 absolute error = 2.0600103444051834036449449371814 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.214 Order of pole = 9.03 TOP MAIN SOLVE Loop x[1] = 1.405 y[1] (analytic) = 0 y[1] (numeric) = 2.0619913110129436448640068604643 absolute error = 2.0619913110129436448640068604643 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.215 Order of pole = 9.031 TOP MAIN SOLVE Loop x[1] = 1.406 y[1] (analytic) = 0 y[1] (numeric) = 2.0639725042472582674239829325417 absolute error = 2.0639725042472582674239829325417 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.215 Order of pole = 9.033 TOP MAIN SOLVE Loop memory used=434.8MB, alloc=4.6MB, time=45.45 x[1] = 1.407 y[1] (analytic) = 0 y[1] (numeric) = 2.0659539227793590528863986800359 absolute error = 2.0659539227793590528863986800359 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.215 Order of pole = 9.034 TOP MAIN SOLVE Loop x[1] = 1.408 y[1] (analytic) = 0 y[1] (numeric) = 2.0679355652797932523887699429383 absolute error = 2.0679355652797932523887699429383 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.215 Order of pole = 9.036 TOP MAIN SOLVE Loop x[1] = 1.409 y[1] (analytic) = 0 y[1] (numeric) = 2.0699174304184275150696921893122 absolute error = 2.0699174304184275150696921893122 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.215 Order of pole = 9.037 TOP MAIN SOLVE Loop x[1] = 1.41 y[1] (analytic) = 0 y[1] (numeric) = 2.0718995168644518205383981739576 absolute error = 2.0718995168644518205383981739576 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.215 Order of pole = 9.039 TOP MAIN SOLVE Loop x[1] = 1.411 y[1] (analytic) = 0 y[1] (numeric) = 2.0738818232863834153662289941259 absolute error = 2.0738818232863834153662289941259 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.215 Order of pole = 9.041 TOP MAIN SOLVE Loop x[1] = 1.412 y[1] (analytic) = 0 y[1] (numeric) = 2.0758643483520707535774252886889 absolute error = 2.0758643483520707535774252886889 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.215 Order of pole = 9.043 TOP MAIN SOLVE Loop x[1] = 1.413 y[1] (analytic) = 0 y[1] (numeric) = 2.0778470907286974411166072268533 absolute error = 2.0778470907286974411166072268533 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.216 Order of pole = 9.044 TOP MAIN SOLVE Loop x[1] = 1.414 y[1] (analytic) = 0 y[1] (numeric) = 2.079830049082786184270274039081 absolute error = 2.079830049082786184270274039081 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.216 Order of pole = 9.046 TOP MAIN SOLVE Loop x[1] = 1.415 y[1] (analytic) = 0 y[1] (numeric) = 2.0818132220802027420196161568497 absolute error = 2.0818132220802027420196161568497 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.216 Order of pole = 9.048 TOP MAIN SOLVE Loop x[1] = 1.416 y[1] (analytic) = 0 y[1] (numeric) = 2.0837966083861598823018955497736 absolute error = 2.0837966083861598823018955497736 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.216 Order of pole = 9.05 TOP MAIN SOLVE Loop x[1] = 1.417 y[1] (analytic) = 0 y[1] (numeric) = 2.0857802066652213421576125789122 absolute error = 2.0857802066652213421576125789122 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.216 Order of pole = 9.052 TOP MAIN SOLVE Loop x[1] = 1.418 y[1] (analytic) = 0 y[1] (numeric) = 2.0877640155813057917406406243334 absolute error = 2.0877640155813057917406406243334 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.216 Order of pole = 9.054 TOP MAIN SOLVE Loop memory used=438.7MB, alloc=4.6MB, time=45.85 x[1] = 1.419 y[1] (analytic) = 0 y[1] (numeric) = 2.08974803379769080216847289367 absolute error = 2.08974803379769080216847289367 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.217 Order of pole = 9.056 TOP MAIN SOLVE Loop x[1] = 1.42 y[1] (analytic) = 0 y[1] (numeric) = 2.0917322599770168171896891770159 absolute error = 2.0917322599770168171896891770159 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.217 Order of pole = 9.057 TOP MAIN SOLVE Loop x[1] = 1.421 y[1] (analytic) = 0 y[1] (numeric) = 2.0937166927812911286457138825496 absolute error = 2.0937166927812911286457138825496 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.217 Order of pole = 9.059 TOP MAIN SOLVE Loop x[1] = 1.422 y[1] (analytic) = 0 y[1] (numeric) = 2.0957013308718918557039004672448 absolute error = 2.0957013308718918557039004672448 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.217 Order of pole = 9.061 TOP MAIN SOLVE Loop x[1] = 1.423 y[1] (analytic) = 0 y[1] (numeric) = 2.0976861729095719278389413684233 absolute error = 2.0976861729095719278389413684233 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.217 Order of pole = 9.064 TOP MAIN SOLVE Loop x[1] = 1.424 y[1] (analytic) = 0 y[1] (numeric) = 2.0996712175544630715395667452131 absolute error = 2.0996712175544630715395667452131 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.217 Order of pole = 9.066 TOP MAIN SOLVE Loop x[1] = 1.425 y[1] (analytic) = 0 y[1] (numeric) = 2.1016564634660798007174597546858 absolute error = 2.1016564634660798007174597546858 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.218 Order of pole = 9.068 TOP MAIN SOLVE Loop x[1] = 1.426 y[1] (analytic) = 0 y[1] (numeric) = 2.1036419093033234107952807160429 absolute error = 2.1036419093033234107952807160429 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.218 Order of pole = 9.07 TOP MAIN SOLVE Loop x[1] = 1.427 y[1] (analytic) = 0 y[1] (numeric) = 2.1056275537244859764506573581875 absolute error = 2.1056275537244859764506573581875 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.218 Order of pole = 9.072 TOP MAIN SOLVE Loop x[1] = 1.428 y[1] (analytic) = 0 y[1] (numeric) = 2.1076133953872543529929634018284 absolute error = 2.1076133953872543529929634018284 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.218 Order of pole = 9.074 TOP MAIN SOLVE Loop x[1] = 1.429 y[1] (analytic) = 0 y[1] (numeric) = 2.1095994329487141813496729974031 absolute error = 2.1095994329487141813496729974031 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.218 Order of pole = 9.076 TOP MAIN SOLVE Loop memory used=442.5MB, alloc=4.6MB, time=46.25 x[1] = 1.43 y[1] (analytic) = 0 y[1] (numeric) = 2.1115856650653538966390440250402 absolute error = 2.1115856650653538966390440250402 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.219 Order of pole = 9.078 TOP MAIN SOLVE Loop x[1] = 1.431 y[1] (analytic) = 0 y[1] (numeric) = 2.1135720903930687403058489629873 absolute error = 2.1135720903930687403058489629873 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.219 Order of pole = 9.081 TOP MAIN SOLVE Loop x[1] = 1.432 y[1] (analytic) = 0 y[1] (numeric) = 2.1155587075871647757968379468707 absolute error = 2.1155587075871647757968379468707 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.219 Order of pole = 9.083 TOP MAIN SOLVE Loop x[1] = 1.433 y[1] (analytic) = 0 y[1] (numeric) = 2.1175455153023629077525847742988 absolute error = 2.1175455153023629077525847742988 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.219 Order of pole = 9.085 TOP MAIN SOLVE Loop x[1] = 1.434 y[1] (analytic) = 0 y[1] (numeric) = 2.1195325121928029046923329581281 absolute error = 2.1195325121928029046923329581281 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.219 Order of pole = 9.088 TOP MAIN SOLVE Loop x[1] = 1.435 y[1] (analytic) = 0 y[1] (numeric) = 2.1215196969120474251684254976455 absolute error = 2.1215196969120474251684254976455 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.22 Order of pole = 9.09 TOP MAIN SOLVE Loop x[1] = 1.436 y[1] (analytic) = 0 y[1] (numeric) = 2.1235070681130860473668688204327 absolute error = 2.1235070681130860473668688204327 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.22 Order of pole = 9.092 TOP MAIN SOLVE Loop x[1] = 1.437 y[1] (analytic) = 0 y[1] (numeric) = 2.1254946244483393021305483492291 absolute error = 2.1254946244483393021305483492291 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.22 Order of pole = 9.094 TOP MAIN SOLVE Loop x[1] = 1.438 y[1] (analytic) = 0 y[1] (numeric) = 2.1274823645696627093815803681423 absolute error = 2.1274823645696627093815803681423 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.22 Order of pole = 9.097 TOP MAIN SOLVE Loop x[1] = 1.439 y[1] (analytic) = 0 y[1] (numeric) = 2.1294702871283508179192523015259 absolute error = 2.1294702871283508179192523015259 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.22 Order of pole = 9.099 TOP MAIN SOLVE Loop x[1] = 1.44 y[1] (analytic) = 0 y[1] (numeric) = 2.1314583907751412485699711771886 absolute error = 2.1314583907751412485699711771886 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.221 Order of pole = 9.102 TOP MAIN SOLVE Loop memory used=446.3MB, alloc=4.6MB, time=46.64 x[1] = 1.441 y[1] (analytic) = 0 y[1] (numeric) = 2.13344667416021874066560792377 absolute error = 2.13344667416021874066560792377 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.221 Order of pole = 9.104 TOP MAIN SOLVE Loop x[1] = 1.442 y[1] (analytic) = 0 y[1] (numeric) = 2.1354351359332192018265932505454 absolute error = 2.1354351359332192018265932505454 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.221 Order of pole = 9.106 TOP MAIN SOLVE Loop x[1] = 1.443 y[1] (analytic) = 0 y[1] (numeric) = 2.1374237747432337610260891770483 absolute error = 2.1374237747432337610260891770483 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.221 Order of pole = 9.109 TOP MAIN SOLVE Loop x[1] = 1.444 y[1] (analytic) = 0 y[1] (numeric) = 2.139412589238812824911528820156 absolute error = 2.139412589238812824911528820156 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.222 Order of pole = 9.111 TOP MAIN SOLVE Loop x[1] = 1.445 y[1] (analytic) = 0 y[1] (numeric) = 2.1414015780679701373597858081009 absolute error = 2.1414015780679701373597858081009 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.222 Order of pole = 9.114 TOP MAIN SOLVE Loop x[1] = 1.446 y[1] (analytic) = 0 y[1] (numeric) = 2.1433907398781868422422036746752 absolute error = 2.1433907398781868422422036746752 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.222 Order of pole = 9.116 TOP MAIN SOLVE Loop x[1] = 1.447 y[1] (analytic) = 0 y[1] (numeric) = 2.1453800733164155493756847931165 absolute error = 2.1453800733164155493756847931165 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.222 Order of pole = 9.119 TOP MAIN SOLVE Loop x[1] = 1.448 y[1] (analytic) = 0 y[1] (numeric) = 2.1473695770290844036360078382161 absolute error = 2.1473695770290844036360078382161 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.223 Order of pole = 9.121 TOP MAIN SOLVE Loop x[1] = 1.449 y[1] (analytic) = 0 y[1] (numeric) = 2.149359249662101157209512417499 absolute error = 2.149359249662101157209512417499 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.223 Order of pole = 9.124 TOP MAIN SOLVE Loop x[1] = 1.45 y[1] (analytic) = 0 y[1] (numeric) = 2.1513490898608572449592593883019 absolute error = 2.1513490898608572449592593883019 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.223 Order of pole = 9.126 TOP MAIN SOLVE Loop x[1] = 1.451 y[1] (analytic) = 0 y[1] (numeric) = 2.1533390962702318628817454776347 absolute error = 2.1533390962702318628817454776347 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.223 Order of pole = 9.129 TOP MAIN SOLVE Loop x[1] = 1.452 y[1] (analytic) = 0 y[1] (numeric) = 2.155329267534596049630221146264 absolute error = 2.155329267534596049630221146264 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.223 Order of pole = 9.132 memory used=450.1MB, alloc=4.6MB, time=47.05 TOP MAIN SOLVE Loop x[1] = 1.453 y[1] (analytic) = 0 y[1] (numeric) = 2.1573196022978167710806311879047 absolute error = 2.1573196022978167710806311879047 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.224 Order of pole = 9.134 TOP MAIN SOLVE Loop x[1] = 1.454 y[1] (analytic) = 0 y[1] (numeric) = 2.1593100992032610079161683291614 absolute error = 2.1593100992032610079161683291614 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.224 Order of pole = 9.137 TOP MAIN SOLVE Loop x[1] = 1.455 y[1] (analytic) = 0 y[1] (numeric) = 2.1613007568937998462064010963152 absolute error = 2.1613007568937998462064010963152 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.224 Order of pole = 9.139 TOP MAIN SOLVE Loop x[1] = 1.456 y[1] (analytic) = 0 y[1] (numeric) = 2.1632915740118125709569084416113 absolute error = 2.1632915740118125709569084416113 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.224 Order of pole = 9.142 TOP MAIN SOLVE Loop x[1] = 1.457 y[1] (analytic) = 0 y[1] (numeric) = 2.1652825491991907626053250747536 absolute error = 2.1652825491991907626053250747536 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.225 Order of pole = 9.145 TOP MAIN SOLVE Loop x[1] = 1.458 y[1] (analytic) = 0 y[1] (numeric) = 2.1672736810973423964396731252555 absolute error = 2.1672736810973423964396731252555 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.225 Order of pole = 9.147 TOP MAIN SOLVE Loop x[1] = 1.459 y[1] (analytic) = 0 y[1] (numeric) = 2.1692649683471959449148276685111 absolute error = 2.1692649683471959449148276685111 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.225 Order of pole = 9.15 TOP MAIN SOLVE Loop x[1] = 1.46 y[1] (analytic) = 0 y[1] (numeric) = 2.1712564095892044828429357833327 absolute error = 2.1712564095892044828429357833327 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.225 Order of pole = 9.152 TOP MAIN SOLVE Loop x[1] = 1.461 y[1] (analytic) = 0 y[1] (numeric) = 2.1732480034633497954335811716203 absolute error = 2.1732480034633497954335811716203 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.226 Order of pole = 9.155 TOP MAIN SOLVE Loop x[1] = 1.462 y[1] (analytic) = 0 y[1] (numeric) = 2.1752397486091464891594589621792 absolute error = 2.1752397486091464891594589621792 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.226 Order of pole = 9.158 TOP MAIN SOLVE Loop x[1] = 1.463 y[1] (analytic) = 0 y[1] (numeric) = 2.1772316436656461054232981408475 absolute error = 2.1772316436656461054232981408475 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.226 Order of pole = 9.16 TOP MAIN SOLVE Loop memory used=453.9MB, alloc=4.6MB, time=47.45 x[1] = 1.464 y[1] (analytic) = 0 y[1] (numeric) = 2.1792236872714412370017420984166 absolute error = 2.1792236872714412370017420984166 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.226 Order of pole = 9.163 TOP MAIN SOLVE Loop x[1] = 1.465 y[1] (analytic) = 0 y[1] (numeric) = 2.1812158780646696472418710666938 absolute error = 2.1812158780646696472418710666938 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 9.166 TOP MAIN SOLVE Loop x[1] = 1.466 y[1] (analytic) = 0 y[1] (numeric) = 2.1832082146830183919860237218318 absolute error = 2.1832082146830183919860237218318 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 9.168 TOP MAIN SOLVE Loop x[1] = 1.467 y[1] (analytic) = 0 y[1] (numeric) = 2.1852006957637279442005489731005 absolute error = 2.1852006957637279442005489731005 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 9.171 TOP MAIN SOLVE Loop x[1] = 1.468 y[1] (analytic) = 0 y[1] (numeric) = 2.187193319943596321284092924966 absolute error = 2.187193319943596321284092924966 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 9.173 TOP MAIN SOLVE Loop x[1] = 1.469 y[1] (analytic) = 0 y[1] (numeric) = 2.1891860858589832150310002010212 absolute error = 2.1891860858589832150310002010212 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.228 Order of pole = 9.176 TOP MAIN SOLVE Loop x[1] = 1.47 y[1] (analytic) = 0 y[1] (numeric) = 2.1911789921458141242253832503443 absolute error = 2.1911789921458141242253832503443 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.228 Order of pole = 9.179 TOP MAIN SOLVE Loop x[1] = 1.471 y[1] (analytic) = 0 y[1] (numeric) = 2.1931720374395844898413879205918 absolute error = 2.1931720374395844898413879205918 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.228 Order of pole = 9.181 TOP MAIN SOLVE Loop x[1] = 1.472 y[1] (analytic) = 0 y[1] (numeric) = 2.1951652203753638328251584779119 absolute error = 2.1951652203753638328251584779119 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.228 Order of pole = 9.184 TOP MAIN SOLVE Loop x[1] = 1.473 y[1] (analytic) = 0 y[1] (numeric) = 2.1971585395877998944339803819394 absolute error = 2.1971585395877998944339803819394 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.229 Order of pole = 9.187 TOP MAIN SOLVE Loop x[1] = 1.474 y[1] (analytic) = 0 y[1] (numeric) = 2.1991519937111227791080544850425 absolute error = 2.1991519937111227791080544850425 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.229 Order of pole = 9.189 TOP MAIN SOLVE Loop memory used=457.7MB, alloc=4.6MB, time=47.85 x[1] = 1.475 y[1] (analytic) = 0 y[1] (numeric) = 2.2011455813791490998503319189788 absolute error = 2.2011455813791490998503319189788 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.229 Order of pole = 9.192 TOP MAIN SOLVE Loop x[1] = 1.476 y[1] (analytic) = 0 y[1] (numeric) = 2.203139301225286126089814759515 absolute error = 2.203139301225286126089814759515 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.229 Order of pole = 9.195 TOP MAIN SOLVE Loop x[1] = 1.477 y[1] (analytic) = 0 y[1] (numeric) = 2.2051331518825359340037036207075 absolute error = 2.2051331518825359340037036207075 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.23 Order of pole = 9.197 TOP MAIN SOLVE Loop x[1] = 1.478 y[1] (analytic) = 0 y[1] (numeric) = 2.2071271319834995592737496257556 absolute error = 2.2071271319834995592737496257556 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.23 Order of pole = 9.2 TOP MAIN SOLVE Loop x[1] = 1.479 y[1] (analytic) = 0 y[1] (numeric) = 2.2091212401603811522521447309565 absolute error = 2.2091212401603811522521447309565 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.23 Order of pole = 9.202 TOP MAIN SOLVE Loop x[1] = 1.48 y[1] (analytic) = 0 y[1] (numeric) = 2.2111154750449921355122611436298 absolute error = 2.2111154750449921355122611436298 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.23 Order of pole = 9.205 TOP MAIN SOLVE Loop x[1] = 1.481 y[1] (analytic) = 0 y[1] (numeric) = 2.2131098352687553637595275742634 absolute error = 2.2131098352687553637595275742634 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.231 Order of pole = 9.208 TOP MAIN SOLVE Loop x[1] = 1.482 y[1] (analytic) = 0 y[1] (numeric) = 2.2151043194627092860777072978751 absolute error = 2.2151043194627092860777072978751 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.231 Order of pole = 9.21 TOP MAIN SOLVE Loop x[1] = 1.483 y[1] (analytic) = 0 y[1] (numeric) = 2.2170989262575121104858204700036 absolute error = 2.2170989262575121104858204700036 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.231 Order of pole = 9.213 TOP MAIN SOLVE Loop x[1] = 1.484 y[1] (analytic) = 0 y[1] (numeric) = 2.2190936542834459707809308491435 absolute error = 2.2190936542834459707809308491435 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.231 Order of pole = 9.215 TOP MAIN SOLVE Loop x[1] = 1.485 y[1] (analytic) = 0 y[1] (numeric) = 2.2210885021704210956419950201348 absolute error = 2.2210885021704210956419950201348 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.232 Order of pole = 9.218 TOP MAIN SOLVE Loop memory used=461.5MB, alloc=4.6MB, time=48.25 x[1] = 1.486 y[1] (analytic) = 0 y[1] (numeric) = 2.2230834685479799799699503923054 absolute error = 2.2230834685479799799699503923054 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.232 Order of pole = 9.22 TOP MAIN SOLVE Loop x[1] = 1.487 y[1] (analytic) = 0 y[1] (numeric) = 2.2250785520453015584391966623552 absolute error = 2.2250785520453015584391966623552 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.232 Order of pole = 9.223 TOP MAIN SOLVE Loop x[1] = 1.488 y[1] (analytic) = 0 y[1] (numeric) = 2.2270737512912053812356040853481 absolute error = 2.2270737512912053812356040853481 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.232 Order of pole = 9.226 TOP MAIN SOLVE Loop x[1] = 1.489 y[1] (analytic) = 0 y[1] (numeric) = 2.2290690649141557919561607880517 absolute error = 2.2290690649141557919561607880517 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.232 Order of pole = 9.228 TOP MAIN SOLVE Loop x[1] = 1.49 y[1] (analytic) = 0 y[1] (numeric) = 2.2310644915422661076453504875119 absolute error = 2.2310644915422661076453504875119 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.233 Order of pole = 9.231 TOP MAIN SOLVE Loop x[1] = 1.491 y[1] (analytic) = 0 y[1] (numeric) = 2.2330600298033028009433313444687 absolute error = 2.2330600298033028009433313444687 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.233 Order of pole = 9.233 TOP MAIN SOLVE Loop x[1] = 1.492 y[1] (analytic) = 0 y[1] (numeric) = 2.2350556783246896843209662862889 absolute error = 2.2350556783246896843209662862889 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.233 Order of pole = 9.236 TOP MAIN SOLVE Loop x[1] = 1.493 y[1] (analytic) = 0 y[1] (numeric) = 2.2370514357335120963767349777964 absolute error = 2.2370514357335120963767349777964 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.233 Order of pole = 9.238 TOP MAIN SOLVE Loop x[1] = 1.494 y[1] (analytic) = 0 y[1] (numeric) = 2.2390473006565210901705377009955 absolute error = 2.2390473006565210901705377009955 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.234 Order of pole = 9.24 TOP MAIN SOLVE Loop x[1] = 1.495 y[1] (analytic) = 0 y[1] (numeric) = 2.2410432717201376235693817264863 absolute error = 2.2410432717201376235693817264863 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.234 Order of pole = 9.243 TOP MAIN SOLVE Loop x[1] = 1.496 y[1] (analytic) = 0 y[1] (numeric) = 2.2430393475504567515799213206318 absolute error = 2.2430393475504567515799213206318 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.234 Order of pole = 9.245 TOP MAIN SOLVE Loop x[1] = 1.497 y[1] (analytic) = 0 y[1] (numeric) = 2.245035526773251820642803333526 absolute error = 2.245035526773251820642803333526 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.234 Order of pole = 9.248 TOP MAIN SOLVE Loop memory used=465.4MB, alloc=4.6MB, time=48.64 x[1] = 1.498 y[1] (analytic) = 0 y[1] (numeric) = 2.2470318080139786648637513537901 absolute error = 2.2470318080139786648637513537901 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.235 Order of pole = 9.25 TOP MAIN SOLVE Loop x[1] = 1.499 y[1] (analytic) = 0 y[1] (numeric) = 2.2490281898977798041563026974597 absolute error = 2.2490281898977798041563026974597 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.235 Order of pole = 9.252 TOP MAIN SOLVE Loop x[1] = 1.5 y[1] (analytic) = 0 y[1] (numeric) = 2.2510246710494886442710940199699 absolute error = 2.2510246710494886442710940199699 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.235 Order of pole = 9.255 TOP MAIN SOLVE Loop x[1] = 1.501 y[1] (analytic) = 0 y[1] (numeric) = 2.2530212500936336786865731027602 absolute error = 2.2530212500936336786865731027602 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.235 Order of pole = 9.257 TOP MAIN SOLVE Loop x[1] = 1.502 y[1] (analytic) = 0 y[1] (numeric) = 2.2550179256544426923359963695527 absolute error = 2.2550179256544426923359963695527 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.235 Order of pole = 9.259 TOP MAIN SOLVE Loop x[1] = 1.503 y[1] (analytic) = 0 y[1] (numeric) = 2.2570146963558469671455539321573 absolute error = 2.2570146963558469671455539321573 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.236 Order of pole = 9.262 TOP MAIN SOLVE Loop x[1] = 1.504 y[1] (analytic) = 0 y[1] (numeric) = 2.2590115608214854893584464519723 absolute error = 2.2590115608214854893584464519723 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.236 Order of pole = 9.264 TOP MAIN SOLVE Loop x[1] = 1.505 y[1] (analytic) = 0 y[1] (numeric) = 2.2610085176747091586197208314171 absolute error = 2.2610085176747091586197208314171 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.236 Order of pole = 9.266 TOP MAIN SOLVE Loop x[1] = 1.506 y[1] (analytic) = 0 y[1] (numeric) = 2.2630055655385849987966547195963 absolute error = 2.2630055655385849987966547195963 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.236 Order of pole = 9.268 TOP MAIN SOLVE Loop x[1] = 1.507 y[1] (analytic) = 0 y[1] (numeric) = 2.2650027030359003705094630287878 absolute error = 2.2650027030359003705094630287878 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.237 Order of pole = 9.271 TOP MAIN SOLVE Loop x[1] = 1.508 y[1] (analytic) = 0 y[1] (numeric) = 2.2669999287891671853470831130989 absolute error = 2.2669999287891671853470831130989 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.237 Order of pole = 9.273 TOP MAIN SOLVE Loop memory used=469.2MB, alloc=4.6MB, time=49.04 x[1] = 1.509 y[1] (analytic) = 0 y[1] (numeric) = 2.2689972414206261217427789580803 absolute error = 2.2689972414206261217427789580803 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.237 Order of pole = 9.275 TOP MAIN SOLVE Loop x[1] = 1.51 y[1] (analytic) = 0 y[1] (numeric) = 2.270994639552250842484288670445 absolute error = 2.270994639552250842484288670445 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.237 Order of pole = 9.277 TOP MAIN SOLVE Loop x[1] = 1.511 y[1] (analytic) = 0 y[1] (numeric) = 2.2729921218057522138332237405357 absolute error = 2.2729921218057522138332237405357 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.237 Order of pole = 9.279 TOP MAIN SOLVE Loop x[1] = 1.512 y[1] (analytic) = 0 y[1] (numeric) = 2.2749896868025825262284129770378 absolute error = 2.2749896868025825262284129770378 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.238 Order of pole = 9.281 TOP MAIN SOLVE Loop x[1] = 1.513 y[1] (analytic) = 0 y[1] (numeric) = 2.2769873331639397165478686838579 absolute error = 2.2769873331639397165478686838579 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.238 Order of pole = 9.283 TOP MAIN SOLVE Loop x[1] = 1.514 y[1] (analytic) = 0 y[1] (numeric) = 2.2789850595107715919040375632964 absolute error = 2.2789850595107715919040375632964 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.238 Order of pole = 9.285 TOP MAIN SOLVE Loop x[1] = 1.515 y[1] (analytic) = 0 y[1] (numeric) = 2.2809828644637800549469839878415 absolute error = 2.2809828644637800549469839878415 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.238 Order of pole = 9.287 TOP MAIN SOLVE Loop x[1] = 1.516 y[1] (analytic) = 0 y[1] (numeric) = 2.2829807466434253306501386853103 absolute error = 2.2829807466434253306501386853103 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.238 Order of pole = 9.289 TOP MAIN SOLVE Loop x[1] = 1.517 y[1] (analytic) = 0 y[1] (numeric) = 2.2849787046699301945532315288588 absolute error = 2.2849787046699301945532315288588 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.239 Order of pole = 9.291 TOP MAIN SOLVE Loop x[1] = 1.518 y[1] (analytic) = 0 y[1] (numeric) = 2.2869767371632842024370130147784 absolute error = 2.2869767371632842024370130147784 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.239 Order of pole = 9.293 TOP MAIN SOLVE Loop x[1] = 1.519 y[1] (analytic) = 0 y[1] (numeric) = 2.2889748427432479214043551471832 absolute error = 2.2889748427432479214043551471832 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.239 Order of pole = 9.295 TOP MAIN SOLVE Loop memory used=473.0MB, alloc=4.6MB, time=49.44 x[1] = 1.52 y[1] (analytic) = 0 y[1] (numeric) = 2.2909730200293571623423088298668 absolute error = 2.2909730200293571623423088298668 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.239 Order of pole = 9.297 TOP MAIN SOLVE Loop x[1] = 1.521 y[1] (analytic) = 0 y[1] (numeric) = 2.2929712676409272137396814919553 absolute error = 2.2929712676409272137396814919553 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.239 Order of pole = 9.299 TOP MAIN SOLVE Loop x[1] = 1.522 y[1] (analytic) = 0 y[1] (numeric) = 2.2949695841970570768346855456853 absolute error = 2.2949695841970570768346855456853 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.239 Order of pole = 9.301 TOP MAIN SOLVE Loop x[1] = 1.523 y[1] (analytic) = 0 y[1] (numeric) = 2.2969679683166337020671953918868 absolute error = 2.2969679683166337020671953918868 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.24 Order of pole = 9.303 TOP MAIN SOLVE Loop x[1] = 1.524 y[1] (analytic) = 0 y[1] (numeric) = 2.2989664186183362268101380517105 absolute error = 2.2989664186183362268101380517105 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.24 Order of pole = 9.304 TOP MAIN SOLVE Loop x[1] = 1.525 y[1] (analytic) = 0 y[1] (numeric) = 2.3009649337206402143545301120024 absolute error = 2.3009649337206402143545301120024 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.24 Order of pole = 9.306 TOP MAIN SOLVE Loop x[1] = 1.526 y[1] (analytic) = 0 y[1] (numeric) = 2.3029635122418218941226615266487 absolute error = 2.3029635122418218941226615266487 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.24 Order of pole = 9.308 TOP MAIN SOLVE Loop x[1] = 1.527 y[1] (analytic) = 0 y[1] (numeric) = 2.3049621527999624030839149173737 absolute error = 2.3049621527999624030839149173737 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.24 Order of pole = 9.309 TOP MAIN SOLVE Loop x[1] = 1.528 y[1] (analytic) = 0 y[1] (numeric) = 2.3069608540129520283476973650274 absolute error = 2.3069608540129520283476973650274 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.24 Order of pole = 9.311 TOP MAIN SOLVE Loop x[1] = 1.529 y[1] (analytic) = 0 y[1] (numeric) = 2.308959614498494450907950276516 absolute error = 2.308959614498494450907950276516 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.241 Order of pole = 9.313 TOP MAIN SOLVE Loop x[1] = 1.53 y[1] (analytic) = 0 y[1] (numeric) = 2.3109584328741109905136917533595 absolute error = 2.3109584328741109905136917533595 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.241 Order of pole = 9.314 TOP MAIN SOLVE Loop x[1] = 1.531 y[1] (analytic) = 0 y[1] (numeric) = 2.3129573077571448516400349755663 absolute error = 2.3129573077571448516400349755663 relative error = -1 % Correct digits = -1 h = 0.001 memory used=476.8MB, alloc=4.6MB, time=49.85 Complex estimate of poles used for equation 1 Radius of convergence = 4.241 Order of pole = 9.316 TOP MAIN SOLVE Loop x[1] = 1.532 y[1] (analytic) = 0 y[1] (numeric) = 2.3149562377647653705341154492428 absolute error = 2.3149562377647653705341154492428 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.241 Order of pole = 9.317 TOP MAIN SOLVE Loop x[1] = 1.533 y[1] (analytic) = 0 y[1] (numeric) = 2.3169552215139722633103495482543 absolute error = 2.3169552215139722633103495482543 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.241 Order of pole = 9.319 TOP MAIN SOLVE Loop x[1] = 1.534 y[1] (analytic) = 0 y[1] (numeric) = 2.318954257621599875069436609467 absolute error = 2.318954257621599875069436609467 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.241 Order of pole = 9.32 TOP MAIN SOLVE Loop x[1] = 1.535 y[1] (analytic) = 0 y[1] (numeric) = 2.320953344704321430015506917774 absolute error = 2.320953344704321430015506917774 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.241 Order of pole = 9.321 TOP MAIN SOLVE Loop x[1] = 1.536 y[1] (analytic) = 0 y[1] (numeric) = 2.3229524813786532825458082413686 absolute error = 2.3229524813786532825458082413686 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.242 Order of pole = 9.323 TOP MAIN SOLVE Loop x[1] = 1.537 y[1] (analytic) = 0 y[1] (numeric) = 2.3249516662609591692873141497229 absolute error = 2.3249516662609591692873141497229 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.242 Order of pole = 9.324 TOP MAIN SOLVE Loop x[1] = 1.538 y[1] (analytic) = 0 y[1] (numeric) = 2.3269508979674544620546281665783 absolute error = 2.3269508979674544620546281665783 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.242 Order of pole = 9.325 TOP MAIN SOLVE Loop x[1] = 1.539 y[1] (analytic) = 0 y[1] (numeric) = 2.3289501751142104217035488780919 absolute error = 2.3289501751142104217035488780919 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.242 Order of pole = 9.327 TOP MAIN SOLVE Loop x[1] = 1.54 y[1] (analytic) = 0 y[1] (numeric) = 2.3309494963171584528546524322252 absolute error = 2.3309494963171584528546524322252 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.242 Order of pole = 9.328 TOP MAIN SOLVE Loop x[1] = 1.541 y[1] (analytic) = 0 y[1] (numeric) = 2.3329488601920943594612404296401 absolute error = 2.3329488601920943594612404296401 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.242 Order of pole = 9.329 TOP MAIN SOLVE Loop x[1] = 1.542 y[1] (analytic) = 0 y[1] (numeric) = 2.3349482653546826011959930188853 absolute error = 2.3349482653546826011959930188853 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.242 Order of pole = 9.33 TOP MAIN SOLVE Loop memory used=480.6MB, alloc=4.6MB, time=50.25 x[1] = 1.543 y[1] (analytic) = 0 y[1] (numeric) = 2.3369477104204605506306590696405 absolute error = 2.3369477104204605506306590696405 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.242 Order of pole = 9.331 TOP MAIN SOLVE Loop x[1] = 1.544 y[1] (analytic) = 0 y[1] (numeric) = 2.3389471940048427511831076073363 absolute error = 2.3389471940048427511831076073363 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.242 Order of pole = 9.332 TOP MAIN SOLVE Loop x[1] = 1.545 y[1] (analytic) = 0 y[1] (numeric) = 2.3409467147231251758060572506963 absolute error = 2.3409467147231251758060572506963 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.243 Order of pole = 9.333 TOP MAIN SOLVE Loop x[1] = 1.546 y[1] (analytic) = 0 y[1] (numeric) = 2.3429462711904894863917932007578 absolute error = 2.3429462711904894863917932007578 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.243 Order of pole = 9.334 TOP MAIN SOLVE Loop x[1] = 1.547 y[1] (analytic) = 0 y[1] (numeric) = 2.3449458620220072938671743858136 absolute error = 2.3449458620220072938671743858136 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.243 Order of pole = 9.335 TOP MAIN SOLVE Loop x[1] = 1.548 y[1] (analytic) = 0 y[1] (numeric) = 2.3469454858326444189532266715842 absolute error = 2.3469454858326444189532266715842 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.243 Order of pole = 9.336 TOP MAIN SOLVE Loop x[1] = 1.549 y[1] (analytic) = 0 y[1] (numeric) = 2.3489451412372651535636115998601 absolute error = 2.3489451412372651535636115998601 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.243 Order of pole = 9.337 TOP MAIN SOLVE Loop x[1] = 1.55 y[1] (analytic) = 0 y[1] (numeric) = 2.3509448268506365228162539219462 absolute error = 2.3509448268506365228162539219462 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.243 Order of pole = 9.338 TOP MAIN SOLVE Loop x[1] = 1.551 y[1] (analytic) = 0 y[1] (numeric) = 2.3529445412874325476324052455758 absolute error = 2.3529445412874325476324052455758 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.243 Order of pole = 9.339 TOP MAIN SOLVE Loop x[1] = 1.552 y[1] (analytic) = 0 y[1] (numeric) = 2.3549442831622385078974154156223 absolute error = 2.3549442831622385078974154156223 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.243 Order of pole = 9.34 TOP MAIN SOLVE Loop x[1] = 1.553 y[1] (analytic) = 0 y[1] (numeric) = 2.3569440510895552061574778000037 absolute error = 2.3569440510895552061574778000037 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.243 Order of pole = 9.34 TOP MAIN SOLVE Loop memory used=484.4MB, alloc=4.6MB, time=50.65 x[1] = 1.554 y[1] (analytic) = 0 y[1] (numeric) = 2.3589438436838032318266094527246 absolute error = 2.3589438436838032318266094527246 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.243 Order of pole = 9.341 TOP MAIN SOLVE Loop x[1] = 1.555 y[1] (analytic) = 0 y[1] (numeric) = 2.3609436595593272258781221761001 absolute error = 2.3609436595593272258781221761001 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.243 Order of pole = 9.342 TOP MAIN SOLVE Loop x[1] = 1.556 y[1] (analytic) = 0 y[1] (numeric) = 2.3629434973304001459948358039301 absolute error = 2.3629434973304001459948358039301 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.243 Order of pole = 9.342 TOP MAIN SOLVE Loop x[1] = 1.557 y[1] (analytic) = 0 y[1] (numeric) = 2.3649433556112275321522805768025 absolute error = 2.3649433556112275321522805768025 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.243 Order of pole = 9.343 TOP MAIN SOLVE Loop x[1] = 1.558 y[1] (analytic) = 0 y[1] (numeric) = 2.366943233015951772609131279863 absolute error = 2.366943233015951772609131279863 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.244 Order of pole = 9.343 TOP MAIN SOLVE Loop x[1] = 1.559 y[1] (analytic) = 0 y[1] (numeric) = 2.3689431281586563702791118623547 absolute error = 2.3689431281586563702791118623547 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.244 Order of pole = 9.344 TOP MAIN SOLVE Loop x[1] = 1.56 y[1] (analytic) = 0 y[1] (numeric) = 2.3709430396533702094586055570582 absolute error = 2.3709430396533702094586055570582 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.244 Order of pole = 9.344 TOP MAIN SOLVE Loop x[1] = 1.561 y[1] (analytic) = 0 y[1] (numeric) = 2.3729429661140718228842020665055 absolute error = 2.3729429661140718228842020665055 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.244 Order of pole = 9.345 TOP MAIN SOLVE Loop x[1] = 1.562 y[1] (analytic) = 0 y[1] (numeric) = 2.3749429061546936590944101815396 absolute error = 2.3749429061546936590944101815396 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.244 Order of pole = 9.345 TOP MAIN SOLVE Loop x[1] = 1.563 y[1] (analytic) = 0 y[1] (numeric) = 2.3769428583891263500697612465026 absolute error = 2.3769428583891263500697612465026 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.244 Order of pole = 9.346 TOP MAIN SOLVE Loop x[1] = 1.564 y[1] (analytic) = 0 y[1] (numeric) = 2.3789428214312229791255261840865 absolute error = 2.3789428214312229791255261840865 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.244 Order of pole = 9.346 TOP MAIN SOLVE Loop memory used=488.2MB, alloc=4.6MB, time=51.05 x[1] = 1.565 y[1] (analytic) = 0 y[1] (numeric) = 2.3809427938948033490312663417178 absolute error = 2.3809427938948033490312663417178 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.244 Order of pole = 9.346 TOP MAIN SOLVE Loop x[1] = 1.566 y[1] (analytic) = 0 y[1] (numeric) = 2.3829427743936582503314362203049 absolute error = 2.3829427743936582503314362203049 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.244 Order of pole = 9.346 TOP MAIN SOLVE Loop x[1] = 1.567 y[1] (analytic) = 0 y[1] (numeric) = 2.3849427615415537298412541952775 absolute error = 2.3849427615415537298412541952775 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.244 Order of pole = 9.346 TOP MAIN SOLVE Loop x[1] = 1.568 y[1] (analytic) = 0 y[1] (numeric) = 2.3869427539522353592920556391284 absolute error = 2.3869427539522353592920556391284 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.244 Order of pole = 9.347 TOP MAIN SOLVE Loop x[1] = 1.569 y[1] (analytic) = 0 y[1] (numeric) = 2.3889427502394325041003414041455 absolute error = 2.3889427502394325041003414041455 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.244 Order of pole = 9.347 TOP MAIN SOLVE Loop x[1] = 1.57 y[1] (analytic) = 0 y[1] (numeric) = 2.3909427490168625922347334237184 absolute error = 2.3909427490168625922347334237184 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.244 Order of pole = 9.347 TOP MAIN SOLVE Loop x[1] = 1.571 y[1] (analytic) = 0 y[1] (numeric) = 2.3929427488982353831550482405363 absolute error = 2.3929427488982353831550482405363 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.244 Order of pole = 9.347 TOP MAIN SOLVE Loop x[1] = 1.572 y[1] (analytic) = 0 y[1] (numeric) = 2.3949427484972572367976985701777 absolute error = 2.3949427484972572367976985701777 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.244 Order of pole = 9.347 TOP MAIN SOLVE Loop x[1] = 1.573 y[1] (analytic) = 0 y[1] (numeric) = 2.39694274642763538258163255903 absolute error = 2.39694274642763538258163255903 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.244 Order of pole = 9.347 TOP MAIN SOLVE Loop x[1] = 1.574 y[1] (analytic) = 0 y[1] (numeric) = 2.3989427413030821884090201961845 absolute error = 2.3989427413030821884090201961845 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.244 Order of pole = 9.347 TOP MAIN SOLVE Loop x[1] = 1.575 y[1] (analytic) = 0 y[1] (numeric) = 2.4009427317373194296348963899234 absolute error = 2.4009427317373194296348963899234 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.244 Order of pole = 9.346 TOP MAIN SOLVE Loop x[1] = 1.576 y[1] (analytic) = 0 y[1] (numeric) = 2.4029427163440825579799705206577 absolute error = 2.4029427163440825579799705206577 relative error = -1 % Correct digits = -1 h = 0.001 memory used=492.1MB, alloc=4.6MB, time=51.45 Complex estimate of poles used for equation 1 Radius of convergence = 4.244 Order of pole = 9.346 TOP MAIN SOLVE Loop x[1] = 1.577 y[1] (analytic) = 0 y[1] (numeric) = 2.4049426937371249703608128336737 absolute error = 2.4049426937371249703608128336737 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.244 Order of pole = 9.346 TOP MAIN SOLVE Loop x[1] = 1.578 y[1] (analytic) = 0 y[1] (numeric) = 2.4069426625302222776116288368079 absolute error = 2.4069426625302222776116288368079 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.244 Order of pole = 9.346 TOP MAIN SOLVE Loop x[1] = 1.579 y[1] (analytic) = 0 y[1] (numeric) = 2.4089426213371765730718339201678 absolute error = 2.4089426213371765730718339201678 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.244 Order of pole = 9.345 TOP MAIN SOLVE Loop x[1] = 1.58 y[1] (analytic) = 0 y[1] (numeric) = 2.4109425687718207010136417172498 absolute error = 2.4109425687718207010136417172498 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.244 Order of pole = 9.345 TOP MAIN SOLVE Loop x[1] = 1.581 y[1] (analytic) = 0 y[1] (numeric) = 2.4129425034480225248838812792465 absolute error = 2.4129425034480225248838812792465 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.244 Order of pole = 9.345 TOP MAIN SOLVE Loop x[1] = 1.582 y[1] (analytic) = 0 y[1] (numeric) = 2.4149424239796891953342599369684 absolute error = 2.4149424239796891953342599369684 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.244 Order of pole = 9.344 TOP MAIN SOLVE Loop x[1] = 1.583 y[1] (analytic) = 0 y[1] (numeric) = 2.4169423289807714180142907776015 absolute error = 2.4169423289807714180142907776015 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.244 Order of pole = 9.344 TOP MAIN SOLVE Loop x[1] = 1.584 y[1] (analytic) = 0 y[1] (numeric) = 2.4189422170652677211011059664565 absolute error = 2.4189422170652677211011059664565 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.243 Order of pole = 9.343 TOP MAIN SOLVE Loop x[1] = 1.585 y[1] (analytic) = 0 y[1] (numeric) = 2.4209420868472287225403796969014 absolute error = 2.4209420868472287225403796969014 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.243 Order of pole = 9.343 TOP MAIN SOLVE Loop x[1] = 1.586 y[1] (analytic) = 0 y[1] (numeric) = 2.4229419369407613969725873547776 absolute error = 2.4229419369407613969725873547776 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.243 Order of pole = 9.342 TOP MAIN SOLVE Loop x[1] = 1.587 y[1] (analytic) = 0 y[1] (numeric) = 2.4249417659600333423188305367351 absolute error = 2.4249417659600333423188305367351 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.243 Order of pole = 9.341 TOP MAIN SOLVE Loop memory used=495.9MB, alloc=4.6MB, time=51.84 x[1] = 1.588 y[1] (analytic) = 0 y[1] (numeric) = 2.4269415725192770460004608650478 absolute error = 2.4269415725192770460004608650478 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.243 Order of pole = 9.341 TOP MAIN SOLVE Loop x[1] = 1.589 y[1] (analytic) = 0 y[1] (numeric) = 2.4289413552327941507667390945346 absolute error = 2.4289413552327941507667390945346 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.243 Order of pole = 9.34 TOP MAIN SOLVE Loop x[1] = 1.59 y[1] (analytic) = 0 y[1] (numeric) = 2.4309411127149597201047698101732 absolute error = 2.4309411127149597201047698101732 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.243 Order of pole = 9.339 TOP MAIN SOLVE Loop x[1] = 1.591 y[1] (analytic) = 0 y[1] (numeric) = 2.4329408435802265032059560667905 absolute error = 2.4329408435802265032059560667905 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.243 Order of pole = 9.339 TOP MAIN SOLVE Loop x[1] = 1.592 y[1] (analytic) = 0 y[1] (numeric) = 2.4349405464431291994632226247968 absolute error = 2.4349405464431291994632226247968 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.243 Order of pole = 9.338 TOP MAIN SOLVE Loop x[1] = 1.593 y[1] (analytic) = 0 y[1] (numeric) = 2.4369402199182887224732609882375 absolute error = 2.4369402199182887224732609882375 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.243 Order of pole = 9.337 TOP MAIN SOLVE Loop x[1] = 1.594 y[1] (analytic) = 0 y[1] (numeric) = 2.438939862620416463518054253404 absolute error = 2.438939862620416463518054253404 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.243 Order of pole = 9.336 TOP MAIN SOLVE Loop x[1] = 1.595 y[1] (analytic) = 0 y[1] (numeric) = 2.4409394731643185544999448278055 absolute error = 2.4409394731643185544999448278055 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.243 Order of pole = 9.335 TOP MAIN SOLVE Loop x[1] = 1.596 y[1] (analytic) = 0 y[1] (numeric) = 2.4429390501649001303045133803911 absolute error = 2.4429390501649001303045133803911 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.243 Order of pole = 9.334 TOP MAIN SOLVE Loop x[1] = 1.597 y[1] (analytic) = 0 y[1] (numeric) = 2.4449385922371695905655429344478 absolute error = 2.4449385922371695905655429344478 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.243 Order of pole = 9.333 TOP MAIN SOLVE Loop x[1] = 1.598 y[1] (analytic) = 0 y[1] (numeric) = 2.4469380979962428608063478145101 absolute error = 2.4469380979962428608063478145101 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.242 Order of pole = 9.332 TOP MAIN SOLVE Loop memory used=499.7MB, alloc=4.6MB, time=52.24 x[1] = 1.599 y[1] (analytic) = 0 y[1] (numeric) = 2.4489375660573476529317532078199 absolute error = 2.4489375660573476529317532078199 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.242 Order of pole = 9.331 TOP MAIN SOLVE Loop x[1] = 1.6 y[1] (analytic) = 0 y[1] (numeric) = 2.4509369950358277250450173992912 absolute error = 2.4509369950358277250450173992912 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.242 Order of pole = 9.33 TOP MAIN SOLVE Loop x[1] = 1.601 y[1] (analytic) = 0 y[1] (numeric) = 2.452936383547147140563995286466 absolute error = 2.452936383547147140563995286466 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.242 Order of pole = 9.329 TOP MAIN SOLVE Loop x[1] = 1.602 y[1] (analytic) = 0 y[1] (numeric) = 2.4549357302068945266108485775175 absolute error = 2.4549357302068945266108485775175 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.242 Order of pole = 9.327 TOP MAIN SOLVE Loop x[1] = 1.603 y[1] (analytic) = 0 y[1] (numeric) = 2.4569350336307873316496151208582 absolute error = 2.4569350336307873316496151208582 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.242 Order of pole = 9.326 TOP MAIN SOLVE Loop x[1] = 1.604 y[1] (analytic) = 0 y[1] (numeric) = 2.4589342924346760823459571092556 absolute error = 2.4589342924346760823459571092556 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.242 Order of pole = 9.325 TOP MAIN SOLVE Loop x[1] = 1.605 y[1] (analytic) = 0 y[1] (numeric) = 2.4609335052345486396234154444382 absolute error = 2.4609335052345486396234154444382 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.242 Order of pole = 9.324 TOP MAIN SOLVE Loop x[1] = 1.606 y[1] (analytic) = 0 y[1] (numeric) = 2.4629326706465344538905053398914 absolute error = 2.4629326706465344538905053398914 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.241 Order of pole = 9.322 TOP MAIN SOLVE Loop x[1] = 1.607 y[1] (analytic) = 0 y[1] (numeric) = 2.4649317872869088194129962797824 absolute error = 2.4649317872869088194129962797824 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.241 Order of pole = 9.321 TOP MAIN SOLVE Loop x[1] = 1.608 y[1] (analytic) = 0 y[1] (numeric) = 2.46693085377209712780572774061 absolute error = 2.46693085377209712780572774061 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.241 Order of pole = 9.319 TOP MAIN SOLVE Loop x[1] = 1.609 y[1] (analytic) = 0 y[1] (numeric) = 2.4689298687186791206183206191293 absolute error = 2.4689298687186791206183206191293 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.241 Order of pole = 9.318 TOP MAIN SOLVE Loop memory used=503.5MB, alloc=4.6MB, time=52.64 x[1] = 1.61 y[1] (analytic) = 0 y[1] (numeric) = 2.4709288307433931409891530952376 absolute error = 2.4709288307433931409891530952376 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.241 Order of pole = 9.317 TOP MAIN SOLVE Loop x[1] = 1.611 y[1] (analytic) = 0 y[1] (numeric) = 2.4729277384631403843419786917032 absolute error = 2.4729277384631403843419786917032 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.241 Order of pole = 9.315 TOP MAIN SOLVE Loop x[1] = 1.612 y[1] (analytic) = 0 y[1] (numeric) = 2.4749265904949891480995735737477 absolute error = 2.4749265904949891480995735737477 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.241 Order of pole = 9.313 TOP MAIN SOLVE Loop x[1] = 1.613 y[1] (analytic) = 0 y[1] (numeric) = 2.4769253854561790803888096604289 absolute error = 2.4769253854561790803888096604289 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.24 Order of pole = 9.312 TOP MAIN SOLVE Loop x[1] = 1.614 y[1] (analytic) = 0 y[1] (numeric) = 2.4789241219641254277115598963791 absolute error = 2.4789241219641254277115598963791 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.24 Order of pole = 9.31 TOP MAIN SOLVE Loop x[1] = 1.615 y[1] (analytic) = 0 y[1] (numeric) = 2.4809227986364232815558520565999 absolute error = 2.4809227986364232815558520565999 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.24 Order of pole = 9.309 TOP MAIN SOLVE Loop x[1] = 1.616 y[1] (analytic) = 0 y[1] (numeric) = 2.4829214140908518239216977285622 absolute error = 2.4829214140908518239216977285622 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.24 Order of pole = 9.307 TOP MAIN SOLVE Loop x[1] = 1.617 y[1] (analytic) = 0 y[1] (numeric) = 2.484919966945378571736033634662 absolute error = 2.484919966945378571736033634662 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.24 Order of pole = 9.305 TOP MAIN SOLVE Loop x[1] = 1.618 y[1] (analytic) = 0 y[1] (numeric) = 2.4869184558181636201312232239963 absolute error = 2.4869184558181636201312232239963 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.24 Order of pole = 9.304 TOP MAIN SOLVE Loop x[1] = 1.619 y[1] (analytic) = 0 y[1] (numeric) = 2.488916879327563884561577475301 absolute error = 2.488916879327563884561577475301 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.24 Order of pole = 9.302 TOP MAIN SOLVE Loop x[1] = 1.62 y[1] (analytic) = 0 y[1] (numeric) = 2.490915236092137341732365112577 absolute error = 2.490915236092137341732365112577 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.239 Order of pole = 9.3 TOP MAIN SOLVE Loop memory used=507.3MB, alloc=4.6MB, time=53.04 x[1] = 1.621 y[1] (analytic) = 0 y[1] (numeric) = 2.4929135247306472693157939412711 absolute error = 2.4929135247306472693157939412711 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.239 Order of pole = 9.298 TOP MAIN SOLVE Loop x[1] = 1.622 y[1] (analytic) = 0 y[1] (numeric) = 2.4949117438620664844284567657116 absolute error = 2.4949117438620664844284567657116 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.239 Order of pole = 9.296 TOP MAIN SOLVE Loop x[1] = 1.623 y[1] (analytic) = 0 y[1] (numeric) = 2.4969098921055815808447473476627 absolute error = 2.4969098921055815808447473476627 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.239 Order of pole = 9.294 TOP MAIN SOLVE Loop x[1] = 1.624 y[1] (analytic) = 0 y[1] (numeric) = 2.4989079680805971649207641111942 absolute error = 2.4989079680805971649207641111942 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.239 Order of pole = 9.293 TOP MAIN SOLVE Loop x[1] = 1.625 y[1] (analytic) = 0 y[1] (numeric) = 2.500905970406740090203231790387 absolute error = 2.500905970406740090203231790387 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.238 Order of pole = 9.291 TOP MAIN SOLVE Loop x[1] = 1.626 y[1] (analytic) = 0 y[1] (numeric) = 2.5029038977038636906979839535458 absolute error = 2.5029038977038636906979839535458 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.238 Order of pole = 9.289 TOP MAIN SOLVE Loop x[1] = 1.627 y[1] (analytic) = 0 y[1] (numeric) = 2.5049017485920520127725623203851 absolute error = 2.5049017485920520127725623203851 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.238 Order of pole = 9.287 TOP MAIN SOLVE Loop x[1] = 1.628 y[1] (analytic) = 0 y[1] (numeric) = 2.5068995216916240456675020169168 absolute error = 2.5068995216916240456675020169168 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.238 Order of pole = 9.285 TOP MAIN SOLVE Loop x[1] = 1.629 y[1] (analytic) = 0 y[1] (numeric) = 2.5088972156231379505908853863152 absolute error = 2.5088972156231379505908853863152 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.238 Order of pole = 9.283 TOP MAIN SOLVE Loop x[1] = 1.63 y[1] (analytic) = 0 y[1] (numeric) = 2.5108948290073952883707606926769 absolute error = 2.5108948290073952883707606926769 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.237 Order of pole = 9.28 TOP MAIN SOLVE Loop x[1] = 1.631 y[1] (analytic) = 0 y[1] (numeric) = 2.5128923604654452456400360181452 absolute error = 2.5128923604654452456400360181452 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.237 Order of pole = 9.278 TOP MAIN SOLVE Loop x[1] = 1.632 y[1] (analytic) = 0 y[1] (numeric) = 2.5148898086185888595284728621334 absolute error = 2.5148898086185888595284728621334 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.237 Order of pole = 9.276 TOP MAIN SOLVE Loop memory used=511.1MB, alloc=4.6MB, time=53.44 x[1] = 1.633 y[1] (analytic) = 0 y[1] (numeric) = 2.5168871720883832408364184041633 absolute error = 2.5168871720883832408364184041633 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.237 Order of pole = 9.274 TOP MAIN SOLVE Loop x[1] = 1.634 y[1] (analytic) = 0 y[1] (numeric) = 2.5188844494966457956649300889361 absolute error = 2.5188844494966457956649300889361 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.237 Order of pole = 9.272 TOP MAIN SOLVE Loop x[1] = 1.635 y[1] (analytic) = 0 y[1] (numeric) = 2.5208816394654584454769611334671 absolute error = 2.5208816394654584454769611334671 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.236 Order of pole = 9.27 TOP MAIN SOLVE Loop x[1] = 1.636 y[1] (analytic) = 0 y[1] (numeric) = 2.5228787406171718455642907412378 absolute error = 2.5228787406171718455642907412378 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.236 Order of pole = 9.268 TOP MAIN SOLVE Loop x[1] = 1.637 y[1] (analytic) = 0 y[1] (numeric) = 2.524875751574409601894898237139 absolute error = 2.524875751574409601894898237139 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.236 Order of pole = 9.265 TOP MAIN SOLVE Loop x[1] = 1.638 y[1] (analytic) = 0 y[1] (numeric) = 2.5268726709600724863154960092817 absolute error = 2.5268726709600724863154960092817 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.236 Order of pole = 9.263 TOP MAIN SOLVE Loop x[1] = 1.639 y[1] (analytic) = 0 y[1] (numeric) = 2.5288694973973426500839520593243 absolute error = 2.5288694973973426500839520593243 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.236 Order of pole = 9.261 TOP MAIN SOLVE Loop x[1] = 1.64 y[1] (analytic) = 0 y[1] (numeric) = 2.5308662295096878357063491215846 absolute error = 2.5308662295096878357063491215846 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.235 Order of pole = 9.258 TOP MAIN SOLVE Loop x[1] = 1.641 y[1] (analytic) = 0 y[1] (numeric) = 2.5328628659208655870534437126461 absolute error = 2.5328628659208655870534437126461 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.235 Order of pole = 9.256 TOP MAIN SOLVE Loop x[1] = 1.642 y[1] (analytic) = 0 y[1] (numeric) = 2.5348594052549274577313051172087 absolute error = 2.5348594052549274577313051172087 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.235 Order of pole = 9.254 TOP MAIN SOLVE Loop x[1] = 1.643 y[1] (analytic) = 0 y[1] (numeric) = 2.5368558461362232176809312023431 absolute error = 2.5368558461362232176809312023431 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.235 Order of pole = 9.251 TOP MAIN SOLVE Loop memory used=515.0MB, alloc=4.6MB, time=53.83 x[1] = 1.644 y[1] (analytic) = 0 y[1] (numeric) = 2.5388521871894050579816550808457 absolute error = 2.5388521871894050579816550808457 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.234 Order of pole = 9.249 TOP MAIN SOLVE Loop x[1] = 1.645 y[1] (analytic) = 0 y[1] (numeric) = 2.5408484270394317938331740148329 absolute error = 2.5408484270394317938331740148329 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.234 Order of pole = 9.247 TOP MAIN SOLVE Loop x[1] = 1.646 y[1] (analytic) = 0 y[1] (numeric) = 2.5428445643115730656910495628058 absolute error = 2.5428445643115730656910495628058 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.234 Order of pole = 9.244 TOP MAIN SOLVE Loop x[1] = 1.647 y[1] (analytic) = 0 y[1] (numeric) = 2.5448405976314135385305458269273 absolute error = 2.5448405976314135385305458269273 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.234 Order of pole = 9.242 TOP MAIN SOLVE Loop x[1] = 1.648 y[1] (analytic) = 0 y[1] (numeric) = 2.5468365256248570992136907519281 absolute error = 2.5468365256248570992136907519281 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.234 Order of pole = 9.239 TOP MAIN SOLVE Loop x[1] = 1.649 y[1] (analytic) = 0 y[1] (numeric) = 2.5488323469181310519344637626522 absolute error = 2.5488323469181310519344637626522 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.233 Order of pole = 9.237 TOP MAIN SOLVE Loop x[1] = 1.65 y[1] (analytic) = 0 y[1] (numeric) = 2.5508280601377903117170316035093 absolute error = 2.5508280601377903117170316035093 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.233 Order of pole = 9.235 TOP MAIN SOLVE Loop x[1] = 1.651 y[1] (analytic) = 0 y[1] (numeric) = 2.5528236639107215959419730597646 absolute error = 2.5528236639107215959419730597646 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.233 Order of pole = 9.232 TOP MAIN SOLVE Loop x[1] = 1.652 y[1] (analytic) = 0 y[1] (numeric) = 2.5548191568641476138754522974095 absolute error = 2.5548191568641476138754522974095 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.233 Order of pole = 9.23 TOP MAIN SOLVE Loop x[1] = 1.653 y[1] (analytic) = 0 y[1] (numeric) = 2.5568145376256312541763198550519 absolute error = 2.5568145376256312541763198550519 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.232 Order of pole = 9.227 TOP MAIN SOLVE Loop x[1] = 1.654 y[1] (analytic) = 0 y[1] (numeric) = 2.5588098048230797703561398575786 absolute error = 2.5588098048230797703561398575786 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.232 Order of pole = 9.225 TOP MAIN SOLVE Loop memory used=518.8MB, alloc=4.6MB, time=54.23 x[1] = 1.655 y[1] (analytic) = 0 y[1] (numeric) = 2.5608049570847489641671617970044 absolute error = 2.5608049570847489641671617970044 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.232 Order of pole = 9.222 TOP MAIN SOLVE Loop x[1] = 1.656 y[1] (analytic) = 0 y[1] (numeric) = 2.5627999930392473668932752406604 absolute error = 2.5627999930392473668932752406604 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.232 Order of pole = 9.219 TOP MAIN SOLVE Loop x[1] = 1.657 y[1] (analytic) = 0 y[1] (numeric) = 2.5647949113155404185190060804093 absolute error = 2.5647949113155404185190060804093 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.231 Order of pole = 9.217 TOP MAIN SOLVE Loop x[1] = 1.658 y[1] (analytic) = 0 y[1] (numeric) = 2.5667897105429546447516334286325 absolute error = 2.5667897105429546447516334286325 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.231 Order of pole = 9.214 TOP MAIN SOLVE Loop x[1] = 1.659 y[1] (analytic) = 0 y[1] (numeric) = 2.5687843893511818318715269970265 absolute error = 2.5687843893511818318715269970265 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.231 Order of pole = 9.212 TOP MAIN SOLVE Loop x[1] = 1.66 y[1] (analytic) = 0 y[1] (numeric) = 2.5707789463702831993858257624894 absolute error = 2.5707789463702831993858257624894 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.231 Order of pole = 9.209 TOP MAIN SOLVE Loop x[1] = 1.661 y[1] (analytic) = 0 y[1] (numeric) = 2.572773380230693570460599930284 absolute error = 2.572773380230693570460599930284 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.23 Order of pole = 9.207 TOP MAIN SOLVE Loop x[1] = 1.662 y[1] (analytic) = 0 y[1] (numeric) = 2.5747676895632255401066596479388 absolute error = 2.5747676895632255401066596479388 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.23 Order of pole = 9.204 TOP MAIN SOLVE Loop x[1] = 1.663 y[1] (analytic) = 0 y[1] (numeric) = 2.5767618729990736410941956036965 absolute error = 2.5767618729990736410941956036965 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.23 Order of pole = 9.201 TOP MAIN SOLVE Loop x[1] = 1.664 y[1] (analytic) = 0 y[1] (numeric) = 2.5787559291698185075714585604415 absolute error = 2.5787559291698185075714585604415 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.23 Order of pole = 9.199 TOP MAIN SOLVE Loop x[1] = 1.665 y[1] (analytic) = 0 y[1] (numeric) = 2.5807498567074310363627070296345 absolute error = 2.5807498567074310363627070296345 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.229 Order of pole = 9.196 TOP MAIN SOLVE Loop x[1] = 1.666 y[1] (analytic) = 0 y[1] (numeric) = 2.5827436542442765459206746795432 absolute error = 2.5827436542442765459206746795432 relative error = -1 % Correct digits = -1 h = 0.001 memory used=522.6MB, alloc=4.6MB, time=54.63 Complex estimate of poles used for equation 1 Radius of convergence = 4.229 Order of pole = 9.193 TOP MAIN SOLVE Loop x[1] = 1.667 y[1] (analytic) = 0 y[1] (numeric) = 2.58473732041311893290883169768 absolute error = 2.58473732041311893290883169768 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.229 Order of pole = 9.191 TOP MAIN SOLVE Loop x[1] = 1.668 y[1] (analytic) = 0 y[1] (numeric) = 2.5867308538471248263887371885248 absolute error = 2.5867308538471248263887371885248 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.229 Order of pole = 9.188 TOP MAIN SOLVE Loop x[1] = 1.669 y[1] (analytic) = 0 y[1] (numeric) = 2.5887242531798677395878027840102 absolute error = 2.5887242531798677395878027840102 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.228 Order of pole = 9.186 TOP MAIN SOLVE Loop x[1] = 1.67 y[1] (analytic) = 0 y[1] (numeric) = 2.5907175170453322192228109755599 absolute error = 2.5907175170453322192228109755599 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.228 Order of pole = 9.183 TOP MAIN SOLVE Loop x[1] = 1.671 y[1] (analytic) = 0 y[1] (numeric) = 2.5927106440779179923545552423754 absolute error = 2.5927106440779179923545552423754 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.228 Order of pole = 9.18 TOP MAIN SOLVE Loop x[1] = 1.672 y[1] (analytic) = 0 y[1] (numeric) = 2.5947036329124441107489928508406 absolute error = 2.5947036329124441107489928508406 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.228 Order of pole = 9.178 TOP MAIN SOLVE Loop x[1] = 1.673 y[1] (analytic) = 0 y[1] (numeric) = 2.5966964821841530927203252340249 absolute error = 2.5966964821841530927203252340249 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 9.175 TOP MAIN SOLVE Loop x[1] = 1.674 y[1] (analytic) = 0 y[1] (numeric) = 2.5986891905287150624314451279891 absolute error = 2.5986891905287150624314451279891 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 9.172 TOP MAIN SOLVE Loop x[1] = 1.675 y[1] (analytic) = 0 y[1] (numeric) = 2.6006817565822318866272141425941 absolute error = 2.6006817565822318866272141425941 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 9.17 TOP MAIN SOLVE Loop x[1] = 1.676 y[1] (analytic) = 0 y[1] (numeric) = 2.6026741789812413087760591784492 absolute error = 2.6026741789812413087760591784492 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 9.167 TOP MAIN SOLVE Loop x[1] = 1.677 y[1] (analytic) = 0 y[1] (numeric) = 2.6046664563627210805954010681666 absolute error = 2.6046664563627210805954010681666 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.226 Order of pole = 9.164 TOP MAIN SOLVE Loop memory used=526.4MB, alloc=4.6MB, time=55.03 x[1] = 1.678 y[1] (analytic) = 0 y[1] (numeric) = 2.6066585873640930909364540188778 absolute error = 2.6066585873640930909364540188778 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.226 Order of pole = 9.162 TOP MAIN SOLVE Loop x[1] = 1.679 y[1] (analytic) = 0 y[1] (numeric) = 2.6086505706232274920039598636596 absolute error = 2.6086505706232274920039598636596 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.226 Order of pole = 9.159 TOP MAIN SOLVE Loop x[1] = 1.68 y[1] (analytic) = 0 y[1] (numeric) = 2.6106424047784468228864467917689 absolute error = 2.6106424047784468228864467917689 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.226 Order of pole = 9.157 TOP MAIN SOLVE Loop x[1] = 1.681 y[1] (analytic) = 0 y[1] (numeric) = 2.6126340884685301303726281210431 absolute error = 2.6126340884685301303726281210431 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.226 Order of pole = 9.154 TOP MAIN SOLVE Loop x[1] = 1.682 y[1] (analytic) = 0 y[1] (numeric) = 2.6146256203327170870295828001244 absolute error = 2.6146256203327170870295828001244 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.225 Order of pole = 9.151 TOP MAIN SOLVE Loop x[1] = 1.683 y[1] (analytic) = 0 y[1] (numeric) = 2.6166169990107121065183856829642 absolute error = 2.6166169990107121065183856829642 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.225 Order of pole = 9.149 TOP MAIN SOLVE Loop x[1] = 1.684 y[1] (analytic) = 0 y[1] (numeric) = 2.6186082231426884561228822029815 absolute error = 2.6186082231426884561228822029815 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.225 Order of pole = 9.146 TOP MAIN SOLVE Loop x[1] = 1.685 y[1] (analytic) = 0 y[1] (numeric) = 2.6205992913692923664673288889354 absolute error = 2.6205992913692923664673288889354 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.225 Order of pole = 9.143 TOP MAIN SOLVE Loop x[1] = 1.686 y[1] (analytic) = 0 y[1] (numeric) = 2.6225902023316471383986482086468 absolute error = 2.6225902023316471383986482086468 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.224 Order of pole = 9.141 TOP MAIN SOLVE Loop x[1] = 1.687 y[1] (analytic) = 0 y[1] (numeric) = 2.6245809546713572470090734998039 absolute error = 2.6245809546713572470090734998039 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.224 Order of pole = 9.138 TOP MAIN SOLVE Loop x[1] = 1.688 y[1] (analytic) = 0 y[1] (numeric) = 2.6265715470305124427749872488317 absolute error = 2.6265715470305124427749872488317 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.224 Order of pole = 9.136 TOP MAIN SOLVE Loop memory used=530.2MB, alloc=4.6MB, time=55.43 x[1] = 1.689 y[1] (analytic) = 0 y[1] (numeric) = 2.6285619780516918497877837088219 absolute error = 2.6285619780516918497877837088219 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.224 Order of pole = 9.133 TOP MAIN SOLVE Loop x[1] = 1.69 y[1] (analytic) = 0 y[1] (numeric) = 2.6305522463779680610526148054239 absolute error = 2.6305522463779680610526148054239 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.223 Order of pole = 9.131 TOP MAIN SOLVE Loop x[1] = 1.691 y[1] (analytic) = 0 y[1] (numeric) = 2.6325423506529112308309064650077 absolute error = 2.6325423506529112308309064650077 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.223 Order of pole = 9.128 TOP MAIN SOLVE Loop x[1] = 1.692 y[1] (analytic) = 0 y[1] (numeric) = 2.6345322895205931640025609119369 absolute error = 2.6345322895205931640025609119369 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.223 Order of pole = 9.125 TOP MAIN SOLVE Loop x[1] = 1.693 y[1] (analytic) = 0 y[1] (numeric) = 2.6365220616255914024237891210482 absolute error = 2.6365220616255914024237891210482 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.223 Order of pole = 9.123 TOP MAIN SOLVE Loop x[1] = 1.694 y[1] (analytic) = 0 y[1] (numeric) = 2.6385116656129933082565464770226 absolute error = 2.6385116656129933082565464770226 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.222 Order of pole = 9.12 TOP MAIN SOLVE Loop x[1] = 1.695 y[1] (analytic) = 0 y[1] (numeric) = 2.6405011001284001442455737838687 absolute error = 2.6405011001284001442455737838687 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.222 Order of pole = 9.118 TOP MAIN SOLVE Loop x[1] = 1.696 y[1] (analytic) = 0 y[1] (numeric) = 2.6424903638179311509190750848072 absolute error = 2.6424903638179311509190750848072 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.222 Order of pole = 9.115 TOP MAIN SOLVE Loop x[1] = 1.697 y[1] (analytic) = 0 y[1] (numeric) = 2.6444794553282276206890932950576 absolute error = 2.6444794553282276206890932950576 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.222 Order of pole = 9.113 TOP MAIN SOLVE Loop x[1] = 1.698 y[1] (analytic) = 0 y[1] (numeric) = 2.646468373306456968827674416972 absolute error = 2.646468373306456968827674416972 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.221 Order of pole = 9.11 TOP MAIN SOLVE Loop x[1] = 1.699 y[1] (analytic) = 0 y[1] (numeric) = 2.6484571164003168012949410982291 absolute error = 2.6484571164003168012949410982291 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.221 Order of pole = 9.108 TOP MAIN SOLVE Loop memory used=534.0MB, alloc=4.6MB, time=55.83 x[1] = 1.7 y[1] (analytic) = 0 y[1] (numeric) = 2.6504456832580389793952265089867 absolute error = 2.6504456832580389793952265089867 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.221 Order of pole = 9.106 TOP MAIN SOLVE Loop x[1] = 1.701 y[1] (analytic) = 0 y[1] (numeric) = 2.6524340725283936812374499525741 absolute error = 2.6524340725283936812374499525741 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.221 Order of pole = 9.103 TOP MAIN SOLVE Loop x[1] = 1.702 y[1] (analytic) = 0 y[1] (numeric) = 2.6544222828606934599759462860735 absolute error = 2.6544222828606934599759462860735 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.221 Order of pole = 9.101 TOP MAIN SOLVE Loop x[1] = 1.703 y[1] (analytic) = 0 y[1] (numeric) = 2.6564103129047972988079921115715 absolute error = 2.6564103129047972988079921115715 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.22 Order of pole = 9.098 TOP MAIN SOLVE Loop x[1] = 1.704 y[1] (analytic) = 0 y[1] (numeric) = 2.6583981613111146627043028055329 absolute error = 2.6583981613111146627043028055329 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.22 Order of pole = 9.096 TOP MAIN SOLVE Loop x[1] = 1.705 y[1] (analytic) = 0 y[1] (numeric) = 2.6603858267306095468488057822356 absolute error = 2.6603858267306095468488057822356 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.22 Order of pole = 9.094 TOP MAIN SOLVE Loop x[1] = 1.706 y[1] (analytic) = 0 y[1] (numeric) = 2.6623733078148045217640269370783 absolute error = 2.6623733078148045217640269370783 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.22 Order of pole = 9.091 TOP MAIN SOLVE Loop x[1] = 1.707 y[1] (analytic) = 0 y[1] (numeric) = 2.6643606032157847750984589863997 absolute error = 2.6643606032157847750984589863997 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.22 Order of pole = 9.089 TOP MAIN SOLVE Loop x[1] = 1.708 y[1] (analytic) = 0 y[1] (numeric) = 2.6663477115862021500523124117922 absolute error = 2.6663477115862021500523124117922 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.219 Order of pole = 9.087 TOP MAIN SOLVE Loop x[1] = 1.709 y[1] (analytic) = 0 y[1] (numeric) = 2.6683346315792791804180819283247 absolute error = 2.6683346315792791804180819283247 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.219 Order of pole = 9.084 TOP MAIN SOLVE Loop x[1] = 1.71 y[1] (analytic) = 0 y[1] (numeric) = 2.6703213618488131222123938271555 absolute error = 2.6703213618488131222123938271555 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.219 Order of pole = 9.082 TOP MAIN SOLVE Loop x[1] = 1.711 y[1] (analytic) = 0 y[1] (numeric) = 2.6723079010491799818756321932845 absolute error = 2.6723079010491799818756321932845 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.219 Order of pole = 9.08 memory used=537.8MB, alloc=4.6MB, time=56.23 TOP MAIN SOLVE Loop x[1] = 1.712 y[1] (analytic) = 0 y[1] (numeric) = 2.6742942478353385410158748682152 absolute error = 2.6742942478353385410158748682152 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.219 Order of pole = 9.078 TOP MAIN SOLVE Loop x[1] = 1.713 y[1] (analytic) = 0 y[1] (numeric) = 2.6762804008628343776737031146146 absolute error = 2.6762804008628343776737031146146 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.218 Order of pole = 9.075 TOP MAIN SOLVE Loop x[1] = 1.714 y[1] (analytic) = 0 y[1] (numeric) = 2.678266358787803884084482245235 absolute error = 2.678266358787803884084482245235 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.218 Order of pole = 9.073 TOP MAIN SOLVE Loop x[1] = 1.715 y[1] (analytic) = 0 y[1] (numeric) = 2.680252120266978280914744000925 absolute error = 2.680252120266978280914744000925 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.218 Order of pole = 9.071 TOP MAIN SOLVE Loop x[1] = 1.716 y[1] (analytic) = 0 y[1] (numeric) = 2.6822376839576876279493352020652 absolute error = 2.6822376839576876279493352020652 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.218 Order of pole = 9.069 TOP MAIN SOLVE Loop x[1] = 1.717 y[1] (analytic) = 0 y[1] (numeric) = 2.6842230485178648312060311537419 absolute error = 2.6842230485178648312060311537419 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.218 Order of pole = 9.067 TOP MAIN SOLVE Loop x[1] = 1.718 y[1] (analytic) = 0 y[1] (numeric) = 2.6862082126060496464543464569693 absolute error = 2.6862082126060496464543464569693 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.217 Order of pole = 9.065 TOP MAIN SOLVE Loop x[1] = 1.719 y[1] (analytic) = 0 y[1] (numeric) = 2.6881931748813926791153102658101 absolute error = 2.6881931748813926791153102658101 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.217 Order of pole = 9.063 TOP MAIN SOLVE Loop x[1] = 1.72 y[1] (analytic) = 0 y[1] (numeric) = 2.690177934003659380519007632865 absolute error = 2.690177934003659380519007632865 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.217 Order of pole = 9.061 TOP MAIN SOLVE Loop x[1] = 1.721 y[1] (analytic) = 0 y[1] (numeric) = 2.6921624886332340404967234028235 absolute error = 2.6921624886332340404967234028235 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.217 Order of pole = 9.059 TOP MAIN SOLVE Loop x[1] = 1.722 y[1] (analytic) = 0 y[1] (numeric) = 2.6941468374311237762845601451261 absolute error = 2.6941468374311237762845601451261 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.217 Order of pole = 9.057 TOP MAIN SOLVE Loop memory used=541.7MB, alloc=4.6MB, time=56.63 x[1] = 1.723 y[1] (analytic) = 0 y[1] (numeric) = 2.6961309790589625177154368617928 absolute error = 2.6961309790589625177154368617928 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.217 Order of pole = 9.055 TOP MAIN SOLVE Loop x[1] = 1.724 y[1] (analytic) = 0 y[1] (numeric) = 2.6981149121790149886764106646566 absolute error = 2.6981149121790149886764106646566 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.216 Order of pole = 9.053 TOP MAIN SOLVE Loop x[1] = 1.725 y[1] (analytic) = 0 y[1] (numeric) = 2.7000986354541806848082992871063 absolute error = 2.7000986354541806848082992871063 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.216 Order of pole = 9.051 TOP MAIN SOLVE Loop x[1] = 1.726 y[1] (analytic) = 0 y[1] (numeric) = 2.7020821475479978474246181785186 absolute error = 2.7020821475479978474246181785186 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.216 Order of pole = 9.049 TOP MAIN SOLVE Loop x[1] = 1.727 y[1] (analytic) = 0 y[1] (numeric) = 2.7040654471246474336268820243451 absolute error = 2.7040654471246474336268820243451 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.216 Order of pole = 9.047 TOP MAIN SOLVE Loop x[1] = 1.728 y[1] (analytic) = 0 y[1] (numeric) = 2.7060485328489570825933568408288 absolute error = 2.7060485328489570825933568408288 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.216 Order of pole = 9.045 TOP MAIN SOLVE Loop x[1] = 1.729 y[1] (analytic) = 0 y[1] (numeric) = 2.7080314033864050780183853100635 absolute error = 2.7080314033864050780183853100635 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.216 Order of pole = 9.044 TOP MAIN SOLVE Loop x[1] = 1.73 y[1] (analytic) = 0 y[1] (numeric) = 2.710014057403124306679444748079 absolute error = 2.710014057403124306679444748079 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.215 Order of pole = 9.042 TOP MAIN SOLVE Loop x[1] = 1.731 y[1] (analytic) = 0 y[1] (numeric) = 2.7119964935659062131091340353339 absolute error = 2.7119964935659062131091340353339 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.215 Order of pole = 9.04 TOP MAIN SOLVE Loop x[1] = 1.732 y[1] (analytic) = 0 y[1] (numeric) = 2.7139787105422047503493229849294 absolute error = 2.7139787105422047503493229849294 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.215 Order of pole = 9.038 TOP MAIN SOLVE Loop x[1] = 1.733 y[1] (analytic) = 0 y[1] (numeric) = 2.7159607070001403267647349785093 absolute error = 2.7159607070001403267647349785093 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.215 Order of pole = 9.037 TOP MAIN SOLVE Loop memory used=545.5MB, alloc=4.6MB, time=57.04 x[1] = 1.734 y[1] (analytic) = 0 y[1] (numeric) = 2.71794248160850374889327126268 absolute error = 2.71794248160850374889327126268 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.215 Order of pole = 9.035 TOP MAIN SOLVE Loop x[1] = 1.735 y[1] (analytic) = 0 y[1] (numeric) = 2.719924033036760160310423069359 absolute error = 2.719924033036760160310423069359 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.215 Order of pole = 9.034 TOP MAIN SOLVE Loop x[1] = 1.736 y[1] (analytic) = 0 y[1] (numeric) = 2.7219053599550529764851557012245 absolute error = 2.7219053599550529764851557012245 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.215 Order of pole = 9.032 TOP MAIN SOLVE Loop x[1] = 1.737 y[1] (analytic) = 0 y[1] (numeric) = 2.7238864610342078156046869078803 absolute error = 2.7238864610342078156046869078803 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.214 Order of pole = 9.03 TOP MAIN SOLVE Loop x[1] = 1.738 y[1] (analytic) = 0 y[1] (numeric) = 2.725867334945736425345620268947 absolute error = 2.725867334945736425345620268947 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.214 Order of pole = 9.029 TOP MAIN SOLVE Loop x[1] = 1.739 y[1] (analytic) = 0 y[1] (numeric) = 2.7278479803618406055689328965236 absolute error = 2.7278479803618406055689328965236 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.214 Order of pole = 9.028 TOP MAIN SOLVE Loop x[1] = 1.74 y[1] (analytic) = 0 y[1] (numeric) = 2.7298283959554161269163555708078 absolute error = 2.7298283959554161269163555708078 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.214 Order of pole = 9.026 TOP MAIN SOLVE Loop x[1] = 1.741 y[1] (analytic) = 0 y[1] (numeric) = 2.7318085804000566452857224285929 absolute error = 2.7318085804000566452857224285929 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.214 Order of pole = 9.025 TOP MAIN SOLVE Loop x[1] = 1.742 y[1] (analytic) = 0 y[1] (numeric) = 2.7337885323700576121629065343415 absolute error = 2.7337885323700576121629065343415 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.214 Order of pole = 9.023 TOP MAIN SOLVE Loop x[1] = 1.743 y[1] (analytic) = 0 y[1] (numeric) = 2.735768250540420180787997077046 absolute error = 2.735768250540420180787997077046 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.214 Order of pole = 9.022 TOP MAIN SOLVE Loop x[1] = 1.744 y[1] (analytic) = 0 y[1] (numeric) = 2.7377477335868551081334135525803 absolute error = 2.7377477335868551081334135525803 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.214 Order of pole = 9.021 TOP MAIN SOLVE Loop x[1] = 1.745 y[1] (analytic) = 0 y[1] (numeric) = 2.7397269801857866526716921101967 absolute error = 2.7397269801857866526716921101967 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.214 Order of pole = 9.019 memory used=549.3MB, alloc=4.6MB, time=57.44 TOP MAIN SOLVE Loop x[1] = 1.746 y[1] (analytic) = 0 y[1] (numeric) = 2.7417059890143564679107192626808 absolute error = 2.7417059890143564679107192626808 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.214 Order of pole = 9.018 TOP MAIN SOLVE Loop x[1] = 1.747 y[1] (analytic) = 0 y[1] (numeric) = 2.7436847587504274916742283819065 absolute error = 2.7436847587504274916742283819065 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 9.017 TOP MAIN SOLVE Loop x[1] = 1.748 y[1] (analytic) = 0 y[1] (numeric) = 2.7456632880725878311054148245887 absolute error = 2.7456632880725878311054148245887 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 9.016 TOP MAIN SOLVE Loop x[1] = 1.749 y[1] (analytic) = 0 y[1] (numeric) = 2.7476415756601546433715661563604 absolute error = 2.7476415756601546433715661563604 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 9.015 TOP MAIN SOLVE Loop x[1] = 1.75 y[1] (analytic) = 0 y[1] (numeric) = 2.74961962019317801204764476536 absolute error = 2.74961962019317801204764476536 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 9.014 TOP MAIN SOLVE Loop x[1] = 1.751 y[1] (analytic) = 0 y[1] (numeric) = 2.7515974203524448191568011787481 absolute error = 2.7515974203524448191568011787481 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 9.013 TOP MAIN SOLVE Loop x[1] = 1.752 y[1] (analytic) = 0 y[1] (numeric) = 2.7535749748194826128458376164226 absolute error = 2.7535749748194826128458376164226 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 9.012 TOP MAIN SOLVE Loop x[1] = 1.753 y[1] (analytic) = 0 y[1] (numeric) = 2.7555522822765634706736827351174 absolute error = 2.7555522822765634706736827351174 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 9.011 TOP MAIN SOLVE Loop x[1] = 1.754 y[1] (analytic) = 0 y[1] (numeric) = 2.7575293414067078584909801324826 absolute error = 2.7575293414067078584909801324826 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 9.01 TOP MAIN SOLVE Loop x[1] = 1.755 y[1] (analytic) = 0 y[1] (numeric) = 2.7595061508936884848889349940994 absolute error = 2.7595061508936884848889349940994 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 9.009 TOP MAIN SOLVE Loop x[1] = 1.756 y[1] (analytic) = 0 y[1] (numeric) = 2.7614827094220341511956052761099 absolute error = 2.7614827094220341511956052761099 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 9.008 TOP MAIN SOLVE Loop memory used=553.1MB, alloc=4.6MB, time=57.84 x[1] = 1.757 y[1] (analytic) = 0 y[1] (numeric) = 2.7634590156770335969978660216754 absolute error = 2.7634590156770335969978660216754 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 9.007 TOP MAIN SOLVE Loop x[1] = 1.758 y[1] (analytic) = 0 y[1] (numeric) = 2.7654350683447393411673178102463 absolute error = 2.7654350683447393411673178102463 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 9.006 TOP MAIN SOLVE Loop x[1] = 1.759 y[1] (analytic) = 0 y[1] (numeric) = 2.7674108661119715183684529340584 absolute error = 2.7674108661119715183684529340584 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 9.005 TOP MAIN SOLVE Loop x[1] = 1.76 y[1] (analytic) = 0 y[1] (numeric) = 2.7693864076663217110274356857923 absolute error = 2.7693864076663217110274356857923 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 9.005 TOP MAIN SOLVE Loop x[1] = 1.761 y[1] (analytic) = 0 y[1] (numeric) = 2.7713616916961567767398961243624 absolute error = 2.7713616916961567767398961243624 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 9.004 TOP MAIN SOLVE Loop x[1] = 1.762 y[1] (analytic) = 0 y[1] (numeric) = 2.7733367168906226710961798617647 absolute error = 2.7733367168906226710961798617647 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 9.003 TOP MAIN SOLVE Loop x[1] = 1.763 y[1] (analytic) = 0 y[1] (numeric) = 2.775311481939648265902539782223 absolute error = 2.775311481939648265902539782223 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 9.003 TOP MAIN SOLVE Loop x[1] = 1.764 y[1] (analytic) = 0 y[1] (numeric) = 2.7772859855339491627767991649458 absolute error = 2.7772859855339491627767991649458 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 9.002 TOP MAIN SOLVE Loop x[1] = 1.765 y[1] (analytic) = 0 y[1] (numeric) = 2.779260226365031502097059433058 absolute error = 2.779260226365031502097059433058 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 9.002 TOP MAIN SOLVE Loop x[1] = 1.766 y[1] (analytic) = 0 y[1] (numeric) = 2.7812342031251957672820696931062 absolute error = 2.7812342031251957672820696931062 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 9.001 TOP MAIN SOLVE Loop x[1] = 1.767 y[1] (analytic) = 0 y[1] (numeric) = 2.7832079145075405843819193613706 absolute error = 2.7832079145075405843819193613706 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.212 Order of pole = 9.001 TOP MAIN SOLVE Loop x[1] = 1.768 y[1] (analytic) = 0 y[1] (numeric) = 2.785181359205966516957759494447 absolute error = 2.785181359205966516957759494447 relative error = -1 % Correct digits = -1 memory used=556.9MB, alloc=4.6MB, time=58.25 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.212 Order of pole = 9 TOP MAIN SOLVE Loop x[1] = 1.769 y[1] (analytic) = 0 y[1] (numeric) = 2.7871545359151798562293029515982 absolute error = 2.7871545359151798562293029515982 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.212 Order of pole = 9 TOP MAIN SOLVE Loop x[1] = 1.77 y[1] (analytic) = 0 y[1] (numeric) = 2.7891274433306964064688982146171 absolute error = 2.7891274433306964064688982146171 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.212 Order of pole = 9 TOP MAIN SOLVE Loop x[1] = 1.771 y[1] (analytic) = 0 y[1] (numeric) = 2.7911000801488452656210165767848 absolute error = 2.7911000801488452656210165767848 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 8.999 TOP MAIN SOLVE Loop x[1] = 1.772 y[1] (analytic) = 0 y[1] (numeric) = 2.793072445066772601126037485354 absolute error = 2.793072445066772601126037485354 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 8.999 TOP MAIN SOLVE Loop x[1] = 1.773 y[1] (analytic) = 0 y[1] (numeric) = 2.7950445367824454209272620812229 absolute error = 2.7950445367824454209272620812229 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 8.999 TOP MAIN SOLVE Loop x[1] = 1.774 y[1] (analytic) = 0 y[1] (numeric) = 2.7970163539946553396401304244891 absolute error = 2.7970163539946553396401304244891 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 8.999 TOP MAIN SOLVE Loop x[1] = 1.775 y[1] (analytic) = 0 y[1] (numeric) = 2.7989878954030223398626635247703 absolute error = 2.7989878954030223398626635247703 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 8.998 TOP MAIN SOLVE Loop x[1] = 1.776 y[1] (analytic) = 0 y[1] (numeric) = 2.8009591597079985286061971099374 absolute error = 2.8009591597079985286061971099374 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 8.998 TOP MAIN SOLVE Loop x[1] = 1.777 y[1] (analytic) = 0 y[1] (numeric) = 2.8029301456108718888255200656116 absolute error = 2.8029301456108718888255200656116 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 8.998 TOP MAIN SOLVE Loop x[1] = 1.778 y[1] (analytic) = 0 y[1] (numeric) = 2.8049008518137700260275766598125 absolute error = 2.8049008518137700260275766598125 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 8.998 TOP MAIN SOLVE Loop x[1] = 1.779 y[1] (analytic) = 0 y[1] (numeric) = 2.8068712770196639099379380318876 absolute error = 2.8068712770196639099379380318876 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 8.998 TOP MAIN SOLVE Loop memory used=560.7MB, alloc=4.6MB, time=58.65 x[1] = 1.78 y[1] (analytic) = 0 y[1] (numeric) = 2.8088414199323716112042949716875 absolute error = 2.8088414199323716112042949716875 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 8.998 TOP MAIN SOLVE Loop x[1] = 1.781 y[1] (analytic) = 0 y[1] (numeric) = 2.8108112792565620331162707432432 absolute error = 2.8108112792565620331162707432432 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 8.998 TOP MAIN SOLVE Loop x[1] = 1.782 y[1] (analytic) = 0 y[1] (numeric) = 2.8127808536977586383208996163371 absolute error = 2.8127808536977586383208996163371 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 8.998 TOP MAIN SOLVE Loop x[1] = 1.783 y[1] (analytic) = 0 y[1] (numeric) = 2.8147501419623431705131638586982 absolute error = 2.8147501419623431705131638586982 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 8.999 TOP MAIN SOLVE Loop x[1] = 1.784 y[1] (analytic) = 0 y[1] (numeric) = 2.8167191427575593710810292104691 absolute error = 2.8167191427575593710810292104691 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 8.999 TOP MAIN SOLVE Loop x[1] = 1.785 y[1] (analytic) = 0 y[1] (numeric) = 2.8186878547915166906844663104578 absolute error = 2.8186878547915166906844663104578 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 8.999 TOP MAIN SOLVE Loop x[1] = 1.786 y[1] (analytic) = 0 y[1] (numeric) = 2.8206562767731939957479931698554 absolute error = 2.8206562767731939957479931698554 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 8.999 TOP MAIN SOLVE Loop x[1] = 1.787 y[1] (analytic) = 0 y[1] (numeric) = 2.8226244074124432698463215929482 absolute error = 2.8226244074124432698463215929482 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 9 TOP MAIN SOLVE Loop x[1] = 1.788 y[1] (analytic) = 0 y[1] (numeric) = 2.8245922454199933099627384252263 absolute error = 2.8245922454199933099627384252263 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 9 TOP MAIN SOLVE Loop x[1] = 1.789 y[1] (analytic) = 0 y[1] (numeric) = 2.8265597895074534175999006665611 absolute error = 2.8265597895074534175999006665611 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 9 TOP MAIN SOLVE Loop x[1] = 1.79 y[1] (analytic) = 0 y[1] (numeric) = 2.8285270383873170847227718201363 absolute error = 2.8285270383873170847227718201363 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 9.001 TOP MAIN SOLVE Loop memory used=564.5MB, alloc=4.6MB, time=59.05 x[1] = 1.791 y[1] (analytic) = 0 y[1] (numeric) = 2.8304939907729656745134753559349 absolute error = 2.8304939907729656745134753559349 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.213 Order of pole = 9.001 TOP MAIN SOLVE Loop x[1] = 1.792 y[1] (analytic) = 0 y[1] (numeric) = 2.8324606453786720969178898501535 absolute error = 2.8324606453786720969178898501535 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.214 Order of pole = 9.002 TOP MAIN SOLVE Loop x[1] = 1.793 y[1] (analytic) = 0 y[1] (numeric) = 2.8344270009196044789638592182889 absolute error = 2.8344270009196044789638592182889 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.214 Order of pole = 9.002 TOP MAIN SOLVE Loop x[1] = 1.794 y[1] (analytic) = 0 y[1] (numeric) = 2.8363930561118298298309404891647 absolute error = 2.8363930561118298298309404891647 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.214 Order of pole = 9.003 TOP MAIN SOLVE Loop x[1] = 1.795 y[1] (analytic) = 0 y[1] (numeric) = 2.838358809672317700651660769189 absolute error = 2.838358809672317700651660769189 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.214 Order of pole = 9.003 TOP MAIN SOLVE Loop x[1] = 1.796 y[1] (analytic) = 0 y[1] (numeric) = 2.8403242603189438390243044199945 absolute error = 2.8403242603189438390243044199945 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.214 Order of pole = 9.004 TOP MAIN SOLVE Loop x[1] = 1.797 y[1] (analytic) = 0 y[1] (numeric) = 2.8422894067704938382173010176579 absolute error = 2.8422894067704938382173010176579 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.214 Order of pole = 9.005 TOP MAIN SOLVE Loop x[1] = 1.798 y[1] (analytic) = 0 y[1] (numeric) = 2.8442542477466667810453343772616 absolute error = 2.8442542477466667810453343772616 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.214 Order of pole = 9.005 TOP MAIN SOLVE Loop x[1] = 1.799 y[1] (analytic) = 0 y[1] (numeric) = 2.8462187819680788783973428119875 absolute error = 2.8462187819680788783973428119875 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.214 Order of pole = 9.006 TOP MAIN SOLVE Loop x[1] = 1.8 y[1] (analytic) = 0 y[1] (numeric) = 2.8481830081562671023966308505539 absolute error = 2.8481830081562671023966308505539 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.214 Order of pole = 9.007 TOP MAIN SOLVE Loop x[1] = 1.801 y[1] (analytic) = 0 y[1] (numeric) = 2.8501469250336928141733628599571 absolute error = 2.8501469250336928141733628599571 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.215 Order of pole = 9.008 TOP MAIN SOLVE Loop x[1] = 1.802 y[1] (analytic) = 0 y[1] (numeric) = 2.8521105313237453862297594114922 absolute error = 2.8521105313237453862297594114922 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.215 Order of pole = 9.008 TOP MAIN SOLVE Loop memory used=568.4MB, alloc=4.6MB, time=59.45 x[1] = 1.803 y[1] (analytic) = 0 y[1] (numeric) = 2.8540738257507458193783677862264 absolute error = 2.8540738257507458193783677862264 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.215 Order of pole = 9.009 TOP MAIN SOLVE Loop x[1] = 1.804 y[1] (analytic) = 0 y[1] (numeric) = 2.8560368070399503542338287408202 absolute error = 2.8560368070399503542338287408202 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.215 Order of pole = 9.01 TOP MAIN SOLVE Loop x[1] = 1.805 y[1] (analytic) = 0 y[1] (numeric) = 2.8579994739175540772386125451534 absolute error = 2.8579994739175540772386125451534 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.215 Order of pole = 9.011 TOP MAIN SOLVE Loop x[1] = 1.806 y[1] (analytic) = 0 y[1] (numeric) = 2.8599618251106945212032483589438 absolute error = 2.8599618251106945212032483589438 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.215 Order of pole = 9.012 TOP MAIN SOLVE Loop x[1] = 1.807 y[1] (analytic) = 0 y[1] (numeric) = 2.8619238593474552603416222347674 absolute error = 2.8619238593474552603416222347674 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.215 Order of pole = 9.013 TOP MAIN SOLVE Loop x[1] = 1.808 y[1] (analytic) = 0 y[1] (numeric) = 2.8638855753568694997819704189159 absolute error = 2.8638855753568694997819704189159 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.216 Order of pole = 9.014 TOP MAIN SOLVE Loop x[1] = 1.809 y[1] (analytic) = 0 y[1] (numeric) = 2.8658469718689236595342461686861 absolute error = 2.8658469718689236595342461686861 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.216 Order of pole = 9.015 TOP MAIN SOLVE Loop x[1] = 1.81 y[1] (analytic) = 0 y[1] (numeric) = 2.8678080476145609528945900142945 absolute error = 2.8678080476145609528945900142945 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.216 Order of pole = 9.016 TOP MAIN SOLVE Loop x[1] = 1.811 y[1] (analytic) = 0 y[1] (numeric) = 2.8697688013256849592676852649676 absolute error = 2.8697688013256849592676852649676 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.216 Order of pole = 9.018 TOP MAIN SOLVE Loop x[1] = 1.812 y[1] (analytic) = 0 y[1] (numeric) = 2.8717292317351631913878325911878 absolute error = 2.8717292317351631913878325911878 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.216 Order of pole = 9.019 TOP MAIN SOLVE Loop x[1] = 1.813 y[1] (analytic) = 0 y[1] (numeric) = 2.8736893375768306569196297078808 absolute error = 2.8736893375768306569196297078808 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.216 Order of pole = 9.02 TOP MAIN SOLVE Loop memory used=572.2MB, alloc=4.6MB, time=59.85 x[1] = 1.814 y[1] (analytic) = 0 y[1] (numeric) = 2.8756491175854934144191945358305 absolute error = 2.8756491175854934144191945358305 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.217 Order of pole = 9.021 TOP MAIN SOLVE Loop x[1] = 1.815 y[1] (analytic) = 0 y[1] (numeric) = 2.8776085704969321236369227300993 absolute error = 2.8776085704969321236369227300993 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.217 Order of pole = 9.023 TOP MAIN SOLVE Loop x[1] = 1.816 y[1] (analytic) = 0 y[1] (numeric) = 2.879567695047905590142823134028 absolute error = 2.879567695047905590142823134028 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.217 Order of pole = 9.024 TOP MAIN SOLVE Loop x[1] = 1.817 y[1] (analytic) = 0 y[1] (numeric) = 2.8815264899761543042555275447888 absolute error = 2.8815264899761543042555275447888 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.217 Order of pole = 9.025 TOP MAIN SOLVE Loop x[1] = 1.818 y[1] (analytic) = 0 y[1] (numeric) = 2.8834849540204039742561241607699 absolute error = 2.8834849540204039742561241607699 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.217 Order of pole = 9.027 TOP MAIN SOLVE Loop x[1] = 1.819 y[1] (analytic) = 0 y[1] (numeric) = 2.885443085920369053868017221582 absolute error = 2.885443085920369053868017221582 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.217 Order of pole = 9.028 TOP MAIN SOLVE Loop x[1] = 1.82 y[1] (analytic) = 0 y[1] (numeric) = 2.8874008844167562639840686474906 absolute error = 2.8874008844167562639840686474906 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.218 Order of pole = 9.029 TOP MAIN SOLVE Loop x[1] = 1.821 y[1] (analytic) = 0 y[1] (numeric) = 2.8893583482512681086223309358929 absolute error = 2.8893583482512681086223309358929 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.218 Order of pole = 9.031 TOP MAIN SOLVE Loop x[1] = 1.822 y[1] (analytic) = 0 y[1] (numeric) = 2.8913154761666063850917341773653 absolute error = 2.8913154761666063850917341773653 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.218 Order of pole = 9.032 TOP MAIN SOLVE Loop x[1] = 1.823 y[1] (analytic) = 0 y[1] (numeric) = 2.8932722669064756883491438121022 absolute error = 2.8932722669064756883491438121022 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.218 Order of pole = 9.034 TOP MAIN SOLVE Loop x[1] = 1.824 y[1] (analytic) = 0 y[1] (numeric) = 2.8952287192155869095292596585392 absolute error = 2.8952287192155869095292596585392 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.218 Order of pole = 9.035 TOP MAIN SOLVE Loop x[1] = 1.825 y[1] (analytic) = 0 y[1] (numeric) = 2.8971848318396607286288808088921 absolute error = 2.8971848318396607286288808088921 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.219 Order of pole = 9.037 memory used=576.0MB, alloc=4.6MB, time=60.26 TOP MAIN SOLVE Loop x[1] = 1.826 y[1] (analytic) = 0 y[1] (numeric) = 2.8991406035254311013271152005356 absolute error = 2.8991406035254311013271152005356 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.219 Order of pole = 9.038 TOP MAIN SOLVE Loop x[1] = 1.827 y[1] (analytic) = 0 y[1] (numeric) = 2.9010960330206487399231670368795 absolute error = 2.9010960330206487399231670368795 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.219 Order of pole = 9.04 TOP MAIN SOLVE Loop x[1] = 1.828 y[1] (analytic) = 0 y[1] (numeric) = 2.903051119074084588373389745957 absolute error = 2.903051119074084588373389745957 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.219 Order of pole = 9.042 TOP MAIN SOLVE Loop x[1] = 1.829 y[1] (analytic) = 0 y[1] (numeric) = 2.9050058604355332914093468286028 absolute error = 2.9050058604355332914093468286028 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.22 Order of pole = 9.043 TOP MAIN SOLVE Loop x[1] = 1.83 y[1] (analytic) = 0 y[1] (numeric) = 2.9069602558558166577186777601512 absolute error = 2.9069602558558166577186777601512 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.22 Order of pole = 9.045 TOP MAIN SOLVE Loop x[1] = 1.831 y[1] (analytic) = 0 y[1] (numeric) = 2.9089143040867871171706210693015 absolute error = 2.9089143040867871171706210693015 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.22 Order of pole = 9.047 TOP MAIN SOLVE Loop x[1] = 1.832 y[1] (analytic) = 0 y[1] (numeric) = 2.9108680038813311720681018244611 absolute error = 2.9108680038813311720681018244611 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.22 Order of pole = 9.048 TOP MAIN SOLVE Loop x[1] = 1.833 y[1] (analytic) = 0 y[1] (numeric) = 2.9128213539933728424083460107599 absolute error = 2.9128213539933728424083460107599 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.22 Order of pole = 9.05 TOP MAIN SOLVE Loop x[1] = 1.834 y[1] (analytic) = 0 y[1] (numeric) = 2.9147743531778771051340396793055 absolute error = 2.9147743531778771051340396793055 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.221 Order of pole = 9.052 TOP MAIN SOLVE Loop x[1] = 1.835 y[1] (analytic) = 0 y[1] (numeric) = 2.9167270001908533273571062933959 absolute error = 2.9167270001908533273571062933959 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.221 Order of pole = 9.054 TOP MAIN SOLVE Loop x[1] = 1.836 y[1] (analytic) = 0 y[1] (numeric) = 2.9186792937893586935372313835881 absolute error = 2.9186792937893586935372313835881 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.221 Order of pole = 9.056 TOP MAIN SOLVE Loop memory used=579.8MB, alloc=4.6MB, time=60.66 x[1] = 1.837 y[1] (analytic) = 0 y[1] (numeric) = 2.9206312327315016265973194540156 absolute error = 2.9206312327315016265973194540156 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.221 Order of pole = 9.057 TOP MAIN SOLVE Loop x[1] = 1.838 y[1] (analytic) = 0 y[1] (numeric) = 2.9225828157764452029581240554137 absolute error = 2.9225828157764452029581240554137 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.222 Order of pole = 9.059 TOP MAIN SOLVE Loop x[1] = 1.839 y[1] (analytic) = 0 y[1] (numeric) = 2.924534041684410561474348055226 absolute error = 2.924534041684410561474348055226 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.222 Order of pole = 9.061 TOP MAIN SOLVE Loop x[1] = 1.84 y[1] (analytic) = 0 y[1] (numeric) = 2.9264849092166803062545673911848 absolute error = 2.9264849092166803062545673911848 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.222 Order of pole = 9.063 TOP MAIN SOLVE Loop x[1] = 1.841 y[1] (analytic) = 0 y[1] (numeric) = 2.928435417135601903347387991149 absolute error = 2.928435417135601903347387991149 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.222 Order of pole = 9.065 TOP MAIN SOLVE Loop x[1] = 1.842 y[1] (analytic) = 0 y[1] (numeric) = 2.9303855642045910712763020780109 absolute error = 2.9303855642045910712763020780109 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.223 Order of pole = 9.067 TOP MAIN SOLVE Loop x[1] = 1.843 y[1] (analytic) = 0 y[1] (numeric) = 2.932335349188135165405766753402 absolute error = 2.932335349188135165405766753402 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.223 Order of pole = 9.069 TOP MAIN SOLVE Loop x[1] = 1.844 y[1] (analytic) = 0 y[1] (numeric) = 2.9342847708517965561210845670021 absolute error = 2.9342847708517965561210845670021 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.223 Order of pole = 9.071 TOP MAIN SOLVE Loop x[1] = 1.845 y[1] (analytic) = 0 y[1] (numeric) = 2.936233827962216000804722728742 absolute error = 2.936233827962216000804722728742 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.223 Order of pole = 9.073 TOP MAIN SOLVE Loop x[1] = 1.846 y[1] (analytic) = 0 y[1] (numeric) = 2.9381825192871160095917647083414 absolute error = 2.9381825192871160095917647083414 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.224 Order of pole = 9.075 TOP MAIN SOLVE Loop x[1] = 1.847 y[1] (analytic) = 0 y[1] (numeric) = 2.9401308435953042048872451896994 absolute error = 2.9401308435953042048872451896994 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.224 Order of pole = 9.077 TOP MAIN SOLVE Loop x[1] = 1.848 y[1] (analytic) = 0 memory used=583.6MB, alloc=4.6MB, time=61.07 y[1] (numeric) = 2.9420787996566766746281767059047 absolute error = 2.9420787996566766746281767059047 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.224 Order of pole = 9.079 TOP MAIN SOLVE Loop x[1] = 1.849 y[1] (analytic) = 0 y[1] (numeric) = 2.9440263862422213192731337733113 absolute error = 2.9440263862422213192731337733113 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.224 Order of pole = 9.081 TOP MAIN SOLVE Loop x[1] = 1.85 y[1] (analytic) = 0 y[1] (numeric) = 2.9459736021240211925023179694809 absolute error = 2.9459736021240211925023179694809 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.225 Order of pole = 9.083 TOP MAIN SOLVE Loop x[1] = 1.851 y[1] (analytic) = 0 y[1] (numeric) = 2.9479204460752578356110851590783 absolute error = 2.9479204460752578356110851590783 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.225 Order of pole = 9.085 TOP MAIN SOLVE Loop x[1] = 1.852 y[1] (analytic) = 0 y[1] (numeric) = 2.9498669168702146055799739632625 absolute error = 2.9498669168702146055799739632625 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.225 Order of pole = 9.087 TOP MAIN SOLVE Loop x[1] = 1.853 y[1] (analytic) = 0 y[1] (numeric) = 2.9518130132842799968043325909995 absolute error = 2.9518130132842799968043325909995 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.225 Order of pole = 9.089 TOP MAIN SOLVE Loop x[1] = 1.854 y[1] (analytic) = 0 y[1] (numeric) = 2.9537587340939509564666993042671 absolute error = 2.9537587340939509564666993042671 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.226 Order of pole = 9.091 TOP MAIN SOLVE Loop x[1] = 1.855 y[1] (analytic) = 0 y[1] (numeric) = 2.9557040780768361935351500725827 absolute error = 2.9557040780768361935351500725827 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.226 Order of pole = 9.093 TOP MAIN SOLVE Loop x[1] = 1.856 y[1] (analytic) = 0 y[1] (numeric) = 2.9576490440116594813708853848946 absolute error = 2.9576490440116594813708853848946 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.226 Order of pole = 9.096 TOP MAIN SOLVE Loop x[1] = 1.857 y[1] (analytic) = 0 y[1] (numeric) = 2.959593630678262953928386727882 absolute error = 2.959593630678262953928386727882 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.226 Order of pole = 9.098 TOP MAIN SOLVE Loop x[1] = 1.858 y[1] (analytic) = 0 y[1] (numeric) = 2.9615378368576103955315319083512 absolute error = 2.9615378368576103955315319083512 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 9.1 TOP MAIN SOLVE Loop x[1] = 1.859 y[1] (analytic) = 0 y[1] (numeric) = 2.9634816613317905242091171929247 absolute error = 2.9634816613317905242091171929247 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 9.102 TOP MAIN SOLVE Loop memory used=587.4MB, alloc=4.6MB, time=61.48 x[1] = 1.86 y[1] (analytic) = 0 y[1] (numeric) = 2.9654251028840202685732931598454 absolute error = 2.9654251028840202685732931598454 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 9.104 TOP MAIN SOLVE Loop x[1] = 1.861 y[1] (analytic) = 0 y[1] (numeric) = 2.967368160298648038224480204685 absolute error = 2.967368160298648038224480204685 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.228 Order of pole = 9.106 TOP MAIN SOLVE Loop x[1] = 1.862 y[1] (analytic) = 0 y[1] (numeric) = 2.9693108323611569876663888132985 absolute error = 2.9693108323611569876663888132985 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.228 Order of pole = 9.109 TOP MAIN SOLVE Loop x[1] = 1.863 y[1] (analytic) = 0 y[1] (numeric) = 2.9712531178581682737148290107295 absolute error = 2.9712531178581682737148290107295 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.228 Order of pole = 9.111 TOP MAIN SOLVE Loop x[1] = 1.864 y[1] (analytic) = 0 y[1] (numeric) = 2.9731950155774443063840528131853 absolute error = 2.9731950155774443063840528131853 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.228 Order of pole = 9.113 TOP MAIN SOLVE Loop x[1] = 1.865 y[1] (analytic) = 0 y[1] (numeric) = 2.9751365243078919932344330508924 absolute error = 2.9751365243078919932344330508924 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.229 Order of pole = 9.115 TOP MAIN SOLVE Loop x[1] = 1.866 y[1] (analytic) = 0 y[1] (numeric) = 2.9770776428395659771653415918415 absolute error = 2.9770776428395659771653415918415 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.229 Order of pole = 9.117 TOP MAIN SOLVE Loop x[1] = 1.867 y[1] (analytic) = 0 y[1] (numeric) = 2.9790183699636718676371497793712 absolute error = 2.9790183699636718676371497793712 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.229 Order of pole = 9.12 TOP MAIN SOLVE Loop x[1] = 1.868 y[1] (analytic) = 0 y[1] (numeric) = 2.98095870447256946530633379944 absolute error = 2.98095870447256946530633379944 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.23 Order of pole = 9.122 TOP MAIN SOLVE Loop x[1] = 1.869 y[1] (analytic) = 0 y[1] (numeric) = 2.9828986451597759800577277155349 absolute error = 2.9828986451597759800577277155349 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.23 Order of pole = 9.124 TOP MAIN SOLVE Loop x[1] = 1.87 y[1] (analytic) = 0 y[1] (numeric) = 2.9848381908199692424180270496736 absolute error = 2.9848381908199692424180270496736 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.23 Order of pole = 9.126 TOP MAIN SOLVE Loop memory used=591.2MB, alloc=4.6MB, time=61.87 x[1] = 1.871 y[1] (analytic) = 0 y[1] (numeric) = 2.9867773402489909083347060461157 absolute error = 2.9867773402489909083347060461157 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.23 Order of pole = 9.129 TOP MAIN SOLVE Loop x[1] = 1.872 y[1] (analytic) = 0 y[1] (numeric) = 2.9887160922438496573045721294155 absolute error = 2.9887160922438496573045721294155 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.231 Order of pole = 9.131 TOP MAIN SOLVE Loop x[1] = 1.873 y[1] (analytic) = 0 y[1] (numeric) = 2.9906544456027243838362415595569 absolute error = 2.9906544456027243838362415595569 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.231 Order of pole = 9.133 TOP MAIN SOLVE Loop x[1] = 1.874 y[1] (analytic) = 0 y[1] (numeric) = 2.9925923991249673822308808933264 absolute error = 2.9925923991249673822308808933264 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.231 Order of pole = 9.135 TOP MAIN SOLVE Loop x[1] = 1.875 y[1] (analytic) = 0 y[1] (numeric) = 2.9945299516111075246656195820246 absolute error = 2.9945299516111075246656195820246 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.231 Order of pole = 9.137 TOP MAIN SOLVE Loop x[1] = 1.876 y[1] (analytic) = 0 y[1] (numeric) = 2.996467101862853432564099870306 absolute error = 2.996467101862853432564099870306 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.232 Order of pole = 9.14 TOP MAIN SOLVE Loop x[1] = 1.877 y[1] (analytic) = 0 y[1] (numeric) = 2.9984038486830966412386911085964 absolute error = 2.9984038486830966412386911085964 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.232 Order of pole = 9.142 TOP MAIN SOLVE Loop x[1] = 1.878 y[1] (analytic) = 0 y[1] (numeric) = 3.0003401908759147577889566513736 absolute error = 3.0003401908759147577889566513736 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.232 Order of pole = 9.144 TOP MAIN SOLVE Loop x[1] = 1.879 y[1] (analytic) = 0 y[1] (numeric) = 3.0022761272465746122410226848355 absolute error = 3.0022761272465746122410226848355 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.233 Order of pole = 9.146 TOP MAIN SOLVE Loop x[1] = 1.88 y[1] (analytic) = 0 y[1] (numeric) = 3.0042116566015354019125596093304 absolute error = 3.0042116566015354019125596093304 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.233 Order of pole = 9.149 TOP MAIN SOLVE Loop x[1] = 1.881 y[1] (analytic) = 0 y[1] (numeric) = 3.0061467777484518289881479936002 absolute error = 3.0061467777484518289881479936002 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.233 Order of pole = 9.151 TOP MAIN SOLVE Loop x[1] = 1.882 y[1] (analytic) = 0 y[1] (numeric) = 3.0080814894961772312898626186059 absolute error = 3.0080814894961772312898626186059 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.233 Order of pole = 9.153 TOP MAIN SOLVE Loop memory used=595.1MB, alloc=4.6MB, time=62.28 x[1] = 1.883 y[1] (analytic) = 0 y[1] (numeric) = 3.0100157906547667062279697376734 absolute error = 3.0100157906547667062279697376734 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.234 Order of pole = 9.155 TOP MAIN SOLVE Loop x[1] = 1.884 y[1] (analytic) = 0 y[1] (numeric) = 3.01194968003548022791669439613 absolute error = 3.01194968003548022791669439613 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.234 Order of pole = 9.157 TOP MAIN SOLVE Loop x[1] = 1.885 y[1] (analytic) = 0 y[1] (numeric) = 3.013883156450785757440076476708 absolute error = 3.013883156450785757440076476708 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.234 Order of pole = 9.16 TOP MAIN SOLVE Loop x[1] = 1.886 y[1] (analytic) = 0 y[1] (numeric) = 3.0158162187143623462529960659797 absolute error = 3.0158162187143623462529960659797 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.235 Order of pole = 9.162 TOP MAIN SOLVE Loop x[1] = 1.887 y[1] (analytic) = 0 y[1] (numeric) = 3.0177488656411032327025107711664 absolute error = 3.0177488656411032327025107711664 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.235 Order of pole = 9.164 TOP MAIN SOLVE Loop x[1] = 1.888 y[1] (analytic) = 0 y[1] (numeric) = 3.0196810960471189316547097550415 absolute error = 3.0196810960471189316547097550415 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.235 Order of pole = 9.166 TOP MAIN SOLVE Loop x[1] = 1.889 y[1] (analytic) = 0 y[1] (numeric) = 3.021612908749740317212351498529 absolute error = 3.021612908749740317212351498529 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.235 Order of pole = 9.168 TOP MAIN SOLVE Loop x[1] = 1.89 y[1] (analytic) = 0 y[1] (numeric) = 3.0235443025675216985086146451905 absolute error = 3.0235443025675216985086146451905 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.236 Order of pole = 9.17 TOP MAIN SOLVE Loop x[1] = 1.891 y[1] (analytic) = 0 y[1] (numeric) = 3.0254752763202438885623537283015 absolute error = 3.0254752763202438885623537283015 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.236 Order of pole = 9.172 TOP MAIN SOLVE Loop x[1] = 1.892 y[1] (analytic) = 0 y[1] (numeric) = 3.0274058288289172661803141288432 absolute error = 3.0274058288289172661803141288432 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.236 Order of pole = 9.175 TOP MAIN SOLVE Loop x[1] = 1.893 y[1] (analytic) = 0 y[1] (numeric) = 3.029335958915784830891823260686 absolute error = 3.029335958915784830891823260686 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.237 Order of pole = 9.177 TOP MAIN SOLVE Loop memory used=598.9MB, alloc=4.6MB, time=62.68 x[1] = 1.894 y[1] (analytic) = 0 y[1] (numeric) = 3.031265665404325250901537726712 absolute error = 3.031265665404325250901537726712 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.237 Order of pole = 9.179 TOP MAIN SOLVE Loop x[1] = 1.895 y[1] (analytic) = 0 y[1] (numeric) = 3.0331949471192559040458890358267 absolute error = 3.0331949471192559040458890358267 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.237 Order of pole = 9.181 TOP MAIN SOLVE Loop x[1] = 1.896 y[1] (analytic) = 0 y[1] (numeric) = 3.035123802886535911738933414933 absolute error = 3.035123802886535911738933414933 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.237 Order of pole = 9.183 TOP MAIN SOLVE Loop x[1] = 1.897 y[1] (analytic) = 0 y[1] (numeric) = 3.0370522315333691658933742911981 absolute error = 3.0370522315333691658933742911981 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.238 Order of pole = 9.185 TOP MAIN SOLVE Loop x[1] = 1.898 y[1] (analytic) = 0 y[1] (numeric) = 3.0389802318882073488025891575206 absolute error = 3.0389802318882073488025891575206 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.238 Order of pole = 9.187 TOP MAIN SOLVE Loop x[1] = 1.899 y[1] (analytic) = 0 y[1] (numeric) = 3.0409078027807529459695557672129 absolute error = 3.0409078027807529459695557672129 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.238 Order of pole = 9.189 TOP MAIN SOLVE Loop x[1] = 1.9 y[1] (analytic) = 0 y[1] (numeric) = 3.0428349430419622518686359317393 absolute error = 3.0428349430419622518686359317393 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.238 Order of pole = 9.191 TOP MAIN SOLVE Loop x[1] = 1.901 y[1] (analytic) = 0 y[1] (numeric) = 3.0447616515040483686262386170988 absolute error = 3.0447616515040483686262386170988 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.239 Order of pole = 9.193 TOP MAIN SOLVE Loop x[1] = 1.902 y[1] (analytic) = 0 y[1] (numeric) = 3.0466879270004841976064475493042 absolute error = 3.0466879270004841976064475493042 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.239 Order of pole = 9.195 TOP MAIN SOLVE Loop x[1] = 1.903 y[1] (analytic) = 0 y[1] (numeric) = 3.0486137683660054238877621465842 absolute error = 3.0486137683660054238877621465842 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.239 Order of pole = 9.197 TOP MAIN SOLVE Loop x[1] = 1.904 y[1] (analytic) = 0 y[1] (numeric) = 3.0505391744366134936171642946173 absolute error = 3.0505391744366134936171642946173 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.239 Order of pole = 9.199 TOP MAIN SOLVE Loop x[1] = 1.905 y[1] (analytic) = 0 y[1] (numeric) = 3.0524641440495785842277872704885 absolute error = 3.0524641440495785842277872704885 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 memory used=602.7MB, alloc=4.6MB, time=63.08 Radius of convergence = 4.24 Order of pole = 9.201 TOP MAIN SOLVE Loop x[1] = 1.906 y[1] (analytic) = 0 y[1] (numeric) = 3.0543886760434425675065270003372 absolute error = 3.0543886760434425675065270003372 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.24 Order of pole = 9.203 TOP MAIN SOLVE Loop x[1] = 1.907 y[1] (analytic) = 0 y[1] (numeric) = 3.0563127692580219654979998040309 absolute error = 3.0563127692580219654979998040309 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.24 Order of pole = 9.205 TOP MAIN SOLVE Loop x[1] = 1.908 y[1] (analytic) = 0 y[1] (numeric) = 3.0582364225344108992313148368442 absolute error = 3.0582364225344108992313148368442 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.24 Order of pole = 9.207 TOP MAIN SOLVE Loop x[1] = 1.909 y[1] (analytic) = 0 y[1] (numeric) = 3.0601596347149840302561935822403 absolute error = 3.0601596347149840302561935822403 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.241 Order of pole = 9.208 TOP MAIN SOLVE Loop x[1] = 1.91 y[1] (analytic) = 0 y[1] (numeric) = 3.0620824046433994949750329806329 absolute error = 3.0620824046433994949750329806329 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.241 Order of pole = 9.21 TOP MAIN SOLVE Loop x[1] = 1.911 y[1] (analytic) = 0 y[1] (numeric) = 3.0640047311646018317575730956417 absolute error = 3.0640047311646018317575730956417 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.241 Order of pole = 9.212 TOP MAIN SOLVE Loop x[1] = 1.912 y[1] (analytic) = 0 y[1] (numeric) = 3.065926613124824900824894621034 absolute error = 3.065926613124824900824894621034 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.241 Order of pole = 9.214 TOP MAIN SOLVE Loop x[1] = 1.913 y[1] (analytic) = 0 y[1] (numeric) = 3.0678480493715947968895360174554 absolute error = 3.0678480493715947968895360174554 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.242 Order of pole = 9.216 TOP MAIN SOLVE Loop x[1] = 1.914 y[1] (analytic) = 0 y[1] (numeric) = 3.0697690387537327545385846373904 absolute error = 3.0697690387537327545385846373904 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.242 Order of pole = 9.217 TOP MAIN SOLVE Loop x[1] = 1.915 y[1] (analytic) = 0 y[1] (numeric) = 3.0716895801213580463466608487367 absolute error = 3.0716895801213580463466608487367 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.242 Order of pole = 9.219 TOP MAIN SOLVE Loop x[1] = 1.916 y[1] (analytic) = 0 y[1] (numeric) = 3.0736096723258908737057789011248 absolute error = 3.0736096723258908737057789011248 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.242 Order of pole = 9.221 TOP MAIN SOLVE Loop memory used=606.5MB, alloc=4.6MB, time=63.48 x[1] = 1.917 y[1] (analytic) = 0 y[1] (numeric) = 3.075529314220055250359133093843 absolute error = 3.075529314220055250359133093843 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.243 Order of pole = 9.222 TOP MAIN SOLVE Loop x[1] = 1.918 y[1] (analytic) = 0 y[1] (numeric) = 3.0774485046578818786259226991344 absolute error = 3.0774485046578818786259226991344 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.243 Order of pole = 9.224 TOP MAIN SOLVE Loop x[1] = 1.919 y[1] (analytic) = 0 y[1] (numeric) = 3.0793672424947110183043940688966 absolute error = 3.0793672424947110183043940688966 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.243 Order of pole = 9.226 TOP MAIN SOLVE Loop x[1] = 1.92 y[1] (analytic) = 0 y[1] (numeric) = 3.0812855265871953482403434056241 absolute error = 3.0812855265871953482403434056241 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.243 Order of pole = 9.227 TOP MAIN SOLVE Loop x[1] = 1.921 y[1] (analytic) = 0 y[1] (numeric) = 3.0832033557933028205483888089761 absolute error = 3.0832033557933028205483888089761 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.244 Order of pole = 9.229 TOP MAIN SOLVE Loop x[1] = 1.922 y[1] (analytic) = 0 y[1] (numeric) = 3.0851207289723195074733854168105 absolute error = 3.0851207289723195074733854168105 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.244 Order of pole = 9.23 TOP MAIN SOLVE Loop x[1] = 1.923 y[1] (analytic) = 0 y[1] (numeric) = 3.0870376449848524408794227430833 absolute error = 3.0870376449848524408794227430833 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.244 Order of pole = 9.232 TOP MAIN SOLVE Loop x[1] = 1.924 y[1] (analytic) = 0 y[1] (numeric) = 3.0889541026928324443539086738593 absolute error = 3.0889541026928324443539086738593 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.244 Order of pole = 9.233 TOP MAIN SOLVE Loop x[1] = 1.925 y[1] (analytic) = 0 y[1] (numeric) = 3.0908701009595169579143100159934 absolute error = 3.0908701009595169579143100159934 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.244 Order of pole = 9.235 TOP MAIN SOLVE Loop x[1] = 1.926 y[1] (analytic) = 0 y[1] (numeric) = 3.0927856386494928553051850000097 absolute error = 3.0927856386494928553051850000097 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.245 Order of pole = 9.236 TOP MAIN SOLVE Loop x[1] = 1.927 y[1] (analytic) = 0 y[1] (numeric) = 3.09470071462867925387320871851 absolute error = 3.09470071462867925387320871851 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.245 Order of pole = 9.238 TOP MAIN SOLVE Loop memory used=610.3MB, alloc=4.6MB, time=63.89 x[1] = 1.928 y[1] (analytic) = 0 y[1] (numeric) = 3.0966153277643303170079581332646 absolute error = 3.0966153277643303170079581332646 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.245 Order of pole = 9.239 TOP MAIN SOLVE Loop x[1] = 1.929 y[1] (analytic) = 0 y[1] (numeric) = 3.0985294769250380491362890071656 absolute error = 3.0985294769250380491362890071656 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.245 Order of pole = 9.24 TOP MAIN SOLVE Loop x[1] = 1.93 y[1] (analytic) = 0 y[1] (numeric) = 3.1004431609807350832582029106272 absolute error = 3.1004431609807350832582029106272 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.245 Order of pole = 9.242 TOP MAIN SOLVE Loop x[1] = 1.931 y[1] (analytic) = 0 y[1] (numeric) = 3.1023563788026974610121683149945 absolute error = 3.1023563788026974610121683149945 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.246 Order of pole = 9.243 TOP MAIN SOLVE Loop x[1] = 1.932 y[1] (analytic) = 0 y[1] (numeric) = 3.1042691292635474052579257172412 absolute error = 3.1042691292635474052579257172412 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.246 Order of pole = 9.244 TOP MAIN SOLVE Loop x[1] = 1.933 y[1] (analytic) = 0 y[1] (numeric) = 3.106181411237256085164872739886 absolute error = 3.106181411237256085164872739886 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.246 Order of pole = 9.245 TOP MAIN SOLVE Loop x[1] = 1.934 y[1] (analytic) = 0 y[1] (numeric) = 3.1080932235991463737941912168152 absolute error = 3.1080932235991463737941912168152 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.246 Order of pole = 9.247 TOP MAIN SOLVE Loop x[1] = 1.935 y[1] (analytic) = 0 y[1] (numeric) = 3.1100045652258955981629444087492 absolute error = 3.1100045652258955981629444087492 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.246 Order of pole = 9.248 TOP MAIN SOLVE Loop x[1] = 1.936 y[1] (analytic) = 0 y[1] (numeric) = 3.1119154349955382817784386906066 absolute error = 3.1119154349955382817784386906066 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.247 Order of pole = 9.249 TOP MAIN SOLVE Loop x[1] = 1.937 y[1] (analytic) = 0 y[1] (numeric) = 3.113825831787468879631210316192 absolute error = 3.113825831787468879631210316192 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.247 Order of pole = 9.25 TOP MAIN SOLVE Loop x[1] = 1.938 y[1] (analytic) = 0 y[1] (numeric) = 3.1157357544824445056350641926319 absolute error = 3.1157357544824445056350641926319 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.247 Order of pole = 9.251 TOP MAIN SOLVE Loop x[1] = 1.939 y[1] (analytic) = 0 y[1] (numeric) = 3.1176452019625876525026579869955 absolute error = 3.1176452019625876525026579869955 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.247 Order of pole = 9.252 TOP MAIN SOLVE Loop memory used=614.1MB, alloc=4.6MB, time=64.29 x[1] = 1.94 y[1] (analytic) = 0 y[1] (numeric) = 3.1195541731113889040451913397367 absolute error = 3.1195541731113889040451913397367 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.247 Order of pole = 9.253 TOP MAIN SOLVE Loop x[1] = 1.941 y[1] (analytic) = 0 y[1] (numeric) = 3.1214626668137096398848264731672 absolute error = 3.1214626668137096398848264731672 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.247 Order of pole = 9.254 TOP MAIN SOLVE Loop x[1] = 1.942 y[1] (analytic) = 0 y[1] (numeric) = 3.1233706819557847325685330572869 absolute error = 3.1233706819557847325685330572869 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.248 Order of pole = 9.255 TOP MAIN SOLVE Loop x[1] = 1.943 y[1] (analytic) = 0 y[1] (numeric) = 3.1252782174252252370721168291487 absolute error = 3.1252782174252252370721168291487 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.248 Order of pole = 9.256 TOP MAIN SOLVE Loop x[1] = 1.944 y[1] (analytic) = 0 y[1] (numeric) = 3.1271852721110210726832581546885 absolute error = 3.1271852721110210726832581546885 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.248 Order of pole = 9.257 TOP MAIN SOLVE Loop x[1] = 1.945 y[1] (analytic) = 0 y[1] (numeric) = 3.1290918449035436972524534727918 absolute error = 3.1290918449035436972524534727918 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.248 Order of pole = 9.257 TOP MAIN SOLVE Loop x[1] = 1.946 y[1] (analytic) = 0 y[1] (numeric) = 3.1309979346945487738008193694748 absolute error = 3.1309979346945487738008193694748 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.248 Order of pole = 9.258 TOP MAIN SOLVE Loop x[1] = 1.947 y[1] (analytic) = 0 y[1] (numeric) = 3.1329035403771788294737858946059 absolute error = 3.1329035403771788294737858946059 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.248 Order of pole = 9.259 TOP MAIN SOLVE Loop x[1] = 1.948 y[1] (analytic) = 0 y[1] (numeric) = 3.1348086608459659068297726537651 absolute error = 3.1348086608459659068297726537651 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.249 Order of pole = 9.26 TOP MAIN SOLVE Loop x[1] = 1.949 y[1] (analytic) = 0 y[1] (numeric) = 3.1367132949968342074530081828099 absolute error = 3.1367132949968342074530081828099 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.249 Order of pole = 9.26 TOP MAIN SOLVE Loop x[1] = 1.95 y[1] (analytic) = 0 y[1] (numeric) = 3.1386174417271027278797201416655 absolute error = 3.1386174417271027278797201416655 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.249 Order of pole = 9.261 TOP MAIN SOLVE Loop memory used=618.0MB, alloc=4.6MB, time=64.69 x[1] = 1.951 y[1] (analytic) = 0 y[1] (numeric) = 3.1405210999354878878269909459659 absolute error = 3.1405210999354878878269909459659 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.249 Order of pole = 9.261 TOP MAIN SOLVE Loop x[1] = 1.952 y[1] (analytic) = 0 y[1] (numeric) = 3.1424242685221061507136405896132 absolute error = 3.1424242685221061507136405896132 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.249 Order of pole = 9.262 TOP MAIN SOLVE Loop x[1] = 1.953 y[1] (analytic) = 0 y[1] (numeric) = 3.1443269463884766364625655972818 absolute error = 3.1443269463884766364625655972818 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.249 Order of pole = 9.263 TOP MAIN SOLVE Loop x[1] = 1.954 y[1] (analytic) = 0 y[1] (numeric) = 3.1462291324375237265740302825397 absolute error = 3.1462291324375237265740302825397 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.249 Order of pole = 9.263 TOP MAIN SOLVE Loop x[1] = 1.955 y[1] (analytic) = 0 y[1] (numeric) = 3.1481308255735796614594737737819 absolute error = 3.1481308255735796614594737737819 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.249 Order of pole = 9.263 TOP MAIN SOLVE Loop x[1] = 1.956 y[1] (analytic) = 0 y[1] (numeric) = 3.1500320247023871300254636057368 absolute error = 3.1500320247023871300254636057368 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.25 Order of pole = 9.264 TOP MAIN SOLVE Loop x[1] = 1.957 y[1] (analytic) = 0 y[1] (numeric) = 3.1519327287311018514974940581027 absolute error = 3.1519327287311018514974940581027 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.25 Order of pole = 9.264 TOP MAIN SOLVE Loop x[1] = 1.958 y[1] (analytic) = 0 y[1] (numeric) = 3.1538329365682951494733948540731 absolute error = 3.1538329365682951494733948540731 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.25 Order of pole = 9.265 TOP MAIN SOLVE Loop x[1] = 1.959 y[1] (analytic) = 0 y[1] (numeric) = 3.1557326471239565181961833092948 absolute error = 3.1557326471239565181961833092948 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.25 Order of pole = 9.265 TOP MAIN SOLVE Loop x[1] = 1.96 y[1] (analytic) = 0 y[1] (numeric) = 3.1576318593094961810362605453497 absolute error = 3.1576318593094961810362605453497 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.25 Order of pole = 9.265 TOP MAIN SOLVE Loop x[1] = 1.961 y[1] (analytic) = 0 y[1] (numeric) = 3.1595305720377476411729199503425 absolute error = 3.1595305720377476411729199503425 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.25 Order of pole = 9.265 TOP MAIN SOLVE Loop x[1] = 1.962 y[1] (analytic) = 0 y[1] (numeric) = 3.1614287842229702244652036817846 absolute error = 3.1614287842229702244652036817846 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.25 Order of pole = 9.266 TOP MAIN SOLVE Loop memory used=621.8MB, alloc=4.6MB, time=65.10 x[1] = 1.963 y[1] (analytic) = 0 y[1] (numeric) = 3.1633264947808516145022106628731 absolute error = 3.1633264947808516145022106628731 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.25 Order of pole = 9.266 TOP MAIN SOLVE Loop x[1] = 1.964 y[1] (analytic) = 0 y[1] (numeric) = 3.1652237026285103798230272216506 absolute error = 3.1652237026285103798230272216506 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.25 Order of pole = 9.266 TOP MAIN SOLVE Loop x[1] = 1.965 y[1] (analytic) = 0 y[1] (numeric) = 3.1671204066844984932965192625748 absolute error = 3.1671204066844984932965192625748 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.25 Order of pole = 9.266 TOP MAIN SOLVE Loop x[1] = 1.966 y[1] (analytic) = 0 y[1] (numeric) = 3.1690166058688038436512926409058 absolute error = 3.1690166058688038436512926409058 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.25 Order of pole = 9.266 TOP MAIN SOLVE Loop x[1] = 1.967 y[1] (analytic) = 0 y[1] (numeric) = 3.1709122991028527391461962312148 absolute error = 3.1709122991028527391461962312148 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.266 TOP MAIN SOLVE Loop x[1] = 1.968 y[1] (analytic) = 0 y[1] (numeric) = 3.1728074853095124033718100414088 absolute error = 3.1728074853095124033718100414088 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.266 TOP MAIN SOLVE Loop x[1] = 1.969 y[1] (analytic) = 0 y[1] (numeric) = 3.1747021634130934631734286221305 absolute error = 3.1747021634130934631734286221305 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.266 TOP MAIN SOLVE Loop x[1] = 1.97 y[1] (analytic) = 0 y[1] (numeric) = 3.1765963323393524286861179574141 absolute error = 3.1765963323393524286861179574141 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.266 TOP MAIN SOLVE Loop x[1] = 1.971 y[1] (analytic) = 0 y[1] (numeric) = 3.178489991015494165472491995233 absolute error = 3.178489991015494165472491995233 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.265 TOP MAIN SOLVE Loop x[1] = 1.972 y[1] (analytic) = 0 y[1] (numeric) = 3.1803831383701743587539229852476 absolute error = 3.1803831383701743587539229852476 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.265 TOP MAIN SOLVE Loop x[1] = 1.973 y[1] (analytic) = 0 y[1] (numeric) = 3.1822757733335019697259678348283 absolute error = 3.1822757733335019697259678348283 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.265 TOP MAIN SOLVE Loop memory used=625.6MB, alloc=4.6MB, time=65.51 x[1] = 1.974 y[1] (analytic) = 0 y[1] (numeric) = 3.1841678948370416839488607724751 absolute error = 3.1841678948370416839488607724751 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.265 TOP MAIN SOLVE Loop x[1] = 1.975 y[1] (analytic) = 0 y[1] (numeric) = 3.1860595018138163518039907192577 absolute error = 3.1860595018138163518039907192577 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.264 TOP MAIN SOLVE Loop x[1] = 1.976 y[1] (analytic) = 0 y[1] (numeric) = 3.1879505931983094210073499130439 absolute error = 3.1879505931983094210073499130439 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.264 TOP MAIN SOLVE Loop x[1] = 1.977 y[1] (analytic) = 0 y[1] (numeric) = 3.1898411679264673611710085062498 absolute error = 3.1898411679264673611710085062498 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.263 TOP MAIN SOLVE Loop x[1] = 1.978 y[1] (analytic) = 0 y[1] (numeric) = 3.191731224935702080403738064813 absolute error = 3.191731224935702080403738064813 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.263 TOP MAIN SOLVE Loop x[1] = 1.979 y[1] (analytic) = 0 y[1] (numeric) = 3.1936207631648933339419751332459 absolute error = 3.1936207631648933339419751332459 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.262 TOP MAIN SOLVE Loop x[1] = 1.98 y[1] (analytic) = 0 y[1] (numeric) = 3.1955097815543911248023842971494 absolute error = 3.1955097815543911248023842971494 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.262 TOP MAIN SOLVE Loop x[1] = 1.981 y[1] (analytic) = 0 y[1] (numeric) = 3.1973982790460180964473484696433 absolute error = 3.1973982790460180964473484696433 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.261 TOP MAIN SOLVE Loop x[1] = 1.982 y[1] (analytic) = 0 y[1] (numeric) = 3.1992862545830719174547824509806 absolute error = 3.1992862545830719174547824509806 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.261 TOP MAIN SOLVE Loop x[1] = 1.983 y[1] (analytic) = 0 y[1] (numeric) = 3.2011737071103276581837341603423 absolute error = 3.2011737071103276581837341603423 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.26 TOP MAIN SOLVE Loop x[1] = 1.984 y[1] (analytic) = 0 y[1] (numeric) = 3.2030606355740401594273063146428 absolute error = 3.2030606355740401594273063146428 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.259 TOP MAIN SOLVE Loop x[1] = 1.985 y[1] (analytic) = 0 y[1] (numeric) = 3.2049470389219463930444997302977 absolute error = 3.2049470389219463930444997302977 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.259 memory used=629.4MB, alloc=4.6MB, time=65.91 TOP MAIN SOLVE Loop x[1] = 1.986 y[1] (analytic) = 0 y[1] (numeric) = 3.2068329161032678145626478494975 absolute error = 3.2068329161032678145626478494975 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.258 TOP MAIN SOLVE Loop x[1] = 1.987 y[1] (analytic) = 0 y[1] (numeric) = 3.208718266068712707742180541784 absolute error = 3.208718266068712707742180541784 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.257 TOP MAIN SOLVE Loop x[1] = 1.988 y[1] (analytic) = 0 y[1] (numeric) = 3.2106030877704785210955237038216 absolute error = 3.2106030877704785210955237038216 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.256 TOP MAIN SOLVE Loop x[1] = 1.989 y[1] (analytic) = 0 y[1] (numeric) = 3.2124873801622541963520096743804 absolute error = 3.2124873801622541963520096743804 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.255 TOP MAIN SOLVE Loop x[1] = 1.99 y[1] (analytic) = 0 y[1] (numeric) = 3.2143711421992224888607419968916 absolute error = 3.2143711421992224888607419968916 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.254 TOP MAIN SOLVE Loop x[1] = 1.991 y[1] (analytic) = 0 y[1] (numeric) = 3.2162543728380622799234265976818 absolute error = 3.2162543728380622799234265976818 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.253 TOP MAIN SOLVE Loop x[1] = 1.992 y[1] (analytic) = 0 y[1] (numeric) = 3.2181370710369508810492500033311 absolute error = 3.2181370710369508810492500033311 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.252 TOP MAIN SOLVE Loop x[1] = 1.993 y[1] (analytic) = 0 y[1] (numeric) = 3.2200192357555663301239537947183 absolute error = 3.2200192357555663301239537947183 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.251 TOP MAIN SOLVE Loop x[1] = 1.994 y[1] (analytic) = 0 y[1] (numeric) = 3.2219008659550896794853230874028 absolute error = 3.2219008659550896794853230874028 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.25 TOP MAIN SOLVE Loop x[1] = 1.995 y[1] (analytic) = 0 y[1] (numeric) = 3.2237819605982072758973754372367 absolute error = 3.2237819605982072758973754372367 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.249 TOP MAIN SOLVE Loop x[1] = 1.996 y[1] (analytic) = 0 y[1] (numeric) = 3.2256625186491130324156051956939 absolute error = 3.2256625186491130324156051956939 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.248 TOP MAIN SOLVE Loop memory used=633.2MB, alloc=4.6MB, time=66.32 x[1] = 1.997 y[1] (analytic) = 0 y[1] (numeric) = 3.2275425390735106921357069805297 absolute error = 3.2275425390735106921357069805297 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.247 TOP MAIN SOLVE Loop x[1] = 1.998 y[1] (analytic) = 0 y[1] (numeric) = 3.2294220208386160838182705832449 absolute error = 3.2294220208386160838182705832449 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.245 TOP MAIN SOLVE Loop x[1] = 1.999 y[1] (analytic) = 0 y[1] (numeric) = 3.2313009629131593693820083046041 absolute error = 3.2313009629131593693820083046041 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.244 TOP MAIN SOLVE Loop x[1] = 2 y[1] (analytic) = 0 y[1] (numeric) = 3.2331793642673872832581443923482 absolute error = 3.2331793642673872832581443923482 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.243 TOP MAIN SOLVE Loop x[1] = 2.001 y[1] (analytic) = 0 y[1] (numeric) = 3.2350572238730653635986649504348 absolute error = 3.2350572238730653635986649504348 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.242 TOP MAIN SOLVE Loop x[1] = 2.002 y[1] (analytic) = 0 y[1] (numeric) = 3.2369345407034801753311953958307 absolute error = 3.2369345407034801753311953958307 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.24 TOP MAIN SOLVE Loop x[1] = 2.003 y[1] (analytic) = 0 y[1] (numeric) = 3.2388113137334415250533412562651 absolute error = 3.2388113137334415250533412562651 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.239 TOP MAIN SOLVE Loop x[1] = 2.004 y[1] (analytic) = 0 y[1] (numeric) = 3.240687541939284667759396829618 absolute error = 3.240687541939284667759396829618 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 9.237 TOP MAIN SOLVE Loop x[1] = 2.005 y[1] (analytic) = 0 y[1] (numeric) = 3.2425632242988725053923949619693 absolute error = 3.2425632242988725053923949619693 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.25 Order of pole = 9.236 TOP MAIN SOLVE Loop x[1] = 2.006 y[1] (analytic) = 0 y[1] (numeric) = 3.2444383597915977772145399459592 absolute error = 3.2444383597915977772145399459592 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.25 Order of pole = 9.234 TOP MAIN SOLVE Loop x[1] = 2.007 y[1] (analytic) = 0 y[1] (numeric) = 3.2463129473983852419891342932074 absolute error = 3.2463129473983852419891342932074 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.25 Order of pole = 9.233 TOP MAIN SOLVE Loop memory used=637.0MB, alloc=4.6MB, time=66.73 x[1] = 2.008 y[1] (analytic) = 0 y[1] (numeric) = 3.2481869861016938519671788933092 absolute error = 3.2481869861016938519671788933092 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.25 Order of pole = 9.231 TOP MAIN SOLVE Loop x[1] = 2.009 y[1] (analytic) = 0 y[1] (numeric) = 3.250060474885518918671894836561 absolute error = 3.250060474885518918671894836561 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.25 Order of pole = 9.229 TOP MAIN SOLVE Loop x[1] = 2.01 y[1] (analytic) = 0 y[1] (numeric) = 3.2519334127353942704744839472697 absolute error = 3.2519334127353942704744839472697 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.25 Order of pole = 9.228 TOP MAIN SOLVE Loop x[1] = 2.011 y[1] (analytic) = 0 y[1] (numeric) = 3.253805798638394401954513848468 absolute error = 3.253805798638394401954513848468 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.25 Order of pole = 9.226 TOP MAIN SOLVE Loop x[1] = 2.012 y[1] (analytic) = 0 y[1] (numeric) = 3.255677631583136615038382156291 absolute error = 3.255677631583136615038382156291 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.25 Order of pole = 9.224 TOP MAIN SOLVE Loop x[1] = 2.013 y[1] (analytic) = 0 y[1] (numeric) = 3.2575489105597831519093831823652 absolute error = 3.2575489105597831519093831823652 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.25 Order of pole = 9.222 TOP MAIN SOLVE Loop x[1] = 2.014 y[1] (analytic) = 0 y[1] (numeric) = 3.2594196345600433196829693045291 absolute error = 3.2594196345600433196829693045291 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.25 Order of pole = 9.221 TOP MAIN SOLVE Loop x[1] = 2.015 y[1] (analytic) = 0 y[1] (numeric) = 3.2612898025771756068408679492373 absolute error = 3.2612898025771756068408679492373 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.25 Order of pole = 9.219 TOP MAIN SOLVE Loop x[1] = 2.016 y[1] (analytic) = 0 y[1] (numeric) = 3.2631594136059897914177839123071 absolute error = 3.2631594136059897914177839123071 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.249 Order of pole = 9.217 TOP MAIN SOLVE Loop x[1] = 2.017 y[1] (analytic) = 0 y[1] (numeric) = 3.265028466642849040934485527451 absolute error = 3.265028466642849040934485527451 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.249 Order of pole = 9.215 TOP MAIN SOLVE Loop x[1] = 2.018 y[1] (analytic) = 0 y[1] (numeric) = 3.266896960685672004071141973499 absolute error = 3.266896960685672004071141973499 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.249 Order of pole = 9.213 TOP MAIN SOLVE Loop x[1] = 2.019 y[1] (analytic) = 0 y[1] (numeric) = 3.2687648947339348940748477905655 absolute error = 3.2687648947339348940748477905655 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.249 Order of pole = 9.211 TOP MAIN SOLVE Loop memory used=640.8MB, alloc=4.6MB, time=67.14 x[1] = 2.02 y[1] (analytic) = 0 y[1] (numeric) = 3.2706322677886735638953394518569 absolute error = 3.2706322677886735638953394518569 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.249 Order of pole = 9.209 TOP MAIN SOLVE Loop x[1] = 2.021 y[1] (analytic) = 0 y[1] (numeric) = 3.272499078852485573042977610553 absolute error = 3.272499078852485573042977610553 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.249 Order of pole = 9.207 TOP MAIN SOLVE Loop x[1] = 2.022 y[1] (analytic) = 0 y[1] (numeric) = 3.2743653269295322461631374094453 absolute error = 3.2743653269295322461631374094453 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.249 Order of pole = 9.205 TOP MAIN SOLVE Loop x[1] = 2.023 y[1] (analytic) = 0 y[1] (numeric) = 3.2762310110255407233212180039747 absolute error = 3.2762310110255407233212180039747 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.249 Order of pole = 9.203 TOP MAIN SOLVE Loop x[1] = 2.024 y[1] (analytic) = 0 y[1] (numeric) = 3.2780961301478060019925512061982 absolute error = 3.2780961301478060019925512061982 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.248 Order of pole = 9.201 TOP MAIN SOLVE Loop x[1] = 2.025 y[1] (analytic) = 0 y[1] (numeric) = 3.2799606833051929707515579072373 absolute error = 3.2799606833051929707515579072373 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.248 Order of pole = 9.199 TOP MAIN SOLVE Loop x[1] = 2.026 y[1] (analytic) = 0 y[1] (numeric) = 3.2818246695081384346545696781289 absolute error = 3.2818246695081384346545696781289 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.248 Order of pole = 9.196 TOP MAIN SOLVE Loop x[1] = 2.027 y[1] (analytic) = 0 y[1] (numeric) = 3.2836880877686531323108016829273 absolute error = 3.2836880877686531323108016829273 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.248 Order of pole = 9.194 TOP MAIN SOLVE Loop x[1] = 2.028 y[1] (analytic) = 0 y[1] (numeric) = 3.2855509371003237446360317626056 absolute error = 3.2855509371003237446360317626056 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.248 Order of pole = 9.192 TOP MAIN SOLVE Loop x[1] = 2.029 y[1] (analytic) = 0 y[1] (numeric) = 3.2874132165183148952836092629914 absolute error = 3.2874132165183148952836092629914 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.248 Order of pole = 9.19 TOP MAIN SOLVE Loop x[1] = 2.03 y[1] (analytic) = 0 y[1] (numeric) = 3.289274925039371142747485883858 absolute error = 3.289274925039371142747485883858 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.248 Order of pole = 9.187 TOP MAIN SOLVE Loop memory used=644.7MB, alloc=4.6MB, time=67.55 x[1] = 2.031 y[1] (analytic) = 0 y[1] (numeric) = 3.2911360616818189641320295185973 absolute error = 3.2911360616818189641320295185973 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.247 Order of pole = 9.185 TOP MAIN SOLVE Loop x[1] = 2.032 y[1] (analytic) = 0 y[1] (numeric) = 3.2929966254655687305834507338383 absolute error = 3.2929966254655687305834507338383 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.247 Order of pole = 9.183 TOP MAIN SOLVE Loop x[1] = 2.033 y[1] (analytic) = 0 y[1] (numeric) = 3.2948566154121166743777402051656 absolute error = 3.2948566154121166743777402051656 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.247 Order of pole = 9.18 TOP MAIN SOLVE Loop x[1] = 2.034 y[1] (analytic) = 0 y[1] (numeric) = 3.296716030544546847660084077954 absolute error = 3.296716030544546847660084077954 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.247 Order of pole = 9.178 TOP MAIN SOLVE Loop x[1] = 2.035 y[1] (analytic) = 0 y[1] (numeric) = 3.2985748698875330728307928604859 absolute error = 3.2985748698875330728307928604859 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.247 Order of pole = 9.175 TOP MAIN SOLVE Loop x[1] = 2.036 y[1] (analytic) = 0 y[1] (numeric) = 3.3004331324673408845728480791832 absolute error = 3.3004331324673408845728480791832 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.247 Order of pole = 9.173 TOP MAIN SOLVE Loop x[1] = 2.037 y[1] (analytic) = 0 y[1] (numeric) = 3.3022908173118294635162395321814 absolute error = 3.3022908173118294635162395321814 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.247 Order of pole = 9.171 TOP MAIN SOLVE Loop x[1] = 2.038 y[1] (analytic) = 0 y[1] (numeric) = 3.3041479234504535615343345668271 absolute error = 3.3041479234504535615343345668271 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.246 Order of pole = 9.168 TOP MAIN SOLVE Loop x[1] = 2.039 y[1] (analytic) = 0 y[1] (numeric) = 3.3060044499142654186675893782154 absolute error = 3.3060044499142654186675893782154 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.246 Order of pole = 9.166 TOP MAIN SOLVE Loop x[1] = 2.04 y[1] (analytic) = 0 y[1] (numeric) = 3.3078603957359166716699808788211 absolute error = 3.3078603957359166716699808788211 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.246 Order of pole = 9.163 TOP MAIN SOLVE Loop x[1] = 2.041 y[1] (analytic) = 0 y[1] (numeric) = 3.3097157599496602541736062228511 absolute error = 3.3097157599496602541736062228511 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.246 Order of pole = 9.16 TOP MAIN SOLVE Loop x[1] = 2.042 y[1] (analytic) = 0 y[1] (numeric) = 3.3115705415913522884669655823735 absolute error = 3.3115705415913522884669655823735 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.246 Order of pole = 9.158 TOP MAIN SOLVE Loop memory used=648.5MB, alloc=4.6MB, time=67.95 x[1] = 2.043 y[1] (analytic) = 0 y[1] (numeric) = 3.3134247396984539688825122647968 absolute error = 3.3134247396984539688825122647968 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.246 Order of pole = 9.155 TOP MAIN SOLVE Loop x[1] = 2.044 y[1] (analytic) = 0 y[1] (numeric) = 3.3152783533100334367891227321061 absolute error = 3.3152783533100334367891227321061 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.245 Order of pole = 9.153 TOP MAIN SOLVE Loop x[1] = 2.045 y[1] (analytic) = 0 y[1] (numeric) = 3.317131381466767647185207530643 absolute error = 3.317131381466767647185207530643 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.245 Order of pole = 9.15 TOP MAIN SOLVE Loop x[1] = 2.046 y[1] (analytic) = 0 y[1] (numeric) = 3.3189838232109442268882525653758 absolute error = 3.3189838232109442268882525653758 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.245 Order of pole = 9.147 TOP MAIN SOLVE Loop x[1] = 2.047 y[1] (analytic) = 0 y[1] (numeric) = 3.3208356775864633243166485537752 absolute error = 3.3208356775864633243166485537752 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.245 Order of pole = 9.144 TOP MAIN SOLVE Loop x[1] = 2.048 y[1] (analytic) = 0 y[1] (numeric) = 3.3226869436388394508597348708274 absolute error = 3.3226869436388394508597348708274 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.245 Order of pole = 9.142 TOP MAIN SOLVE Loop x[1] = 2.049 y[1] (analytic) = 0 y[1] (numeric) = 3.3245376204152033138320523476109 absolute error = 3.3245376204152033138320523476109 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.244 Order of pole = 9.139 TOP MAIN SOLVE Loop x[1] = 2.05 y[1] (analytic) = 0 y[1] (numeric) = 3.326387706964303641007867910475 absolute error = 3.326387706964303641007867910475 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.244 Order of pole = 9.136 TOP MAIN SOLVE Loop x[1] = 2.051 y[1] (analytic) = 0 y[1] (numeric) = 3.3282372023365089967321022454242 absolute error = 3.3282372023365089967321022454242 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.244 Order of pole = 9.134 TOP MAIN SOLVE Loop x[1] = 2.052 y[1] (analytic) = 0 y[1] (numeric) = 3.3300861055838095896038599420682 absolute error = 3.3300861055838095896038599420682 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.244 Order of pole = 9.131 TOP MAIN SOLVE Loop x[1] = 2.053 y[1] (analytic) = 0 y[1] (numeric) = 3.3319344157598190717288298126893 absolute error = 3.3319344157598190717288298126893 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.244 Order of pole = 9.128 TOP MAIN SOLVE Loop memory used=652.3MB, alloc=4.6MB, time=68.34 x[1] = 2.054 y[1] (analytic) = 0 y[1] (numeric) = 3.3337821319197763295368912938383 absolute error = 3.3337821319197763295368912938383 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.243 Order of pole = 9.125 TOP MAIN SOLVE Loop x[1] = 2.055 y[1] (analytic) = 0 y[1] (numeric) = 3.3356292531205472661613310196503 absolute error = 3.3356292531205472661613310196503 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.243 Order of pole = 9.122 TOP MAIN SOLVE Loop x[1] = 2.056 y[1] (analytic) = 0 y[1] (numeric) = 3.3374757784206265753761418070059 absolute error = 3.3374757784206265753761418070059 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.243 Order of pole = 9.119 TOP MAIN SOLVE Loop x[1] = 2.057 y[1] (analytic) = 0 y[1] (numeric) = 3.3393217068801395070879444120017 absolute error = 3.3393217068801395070879444120017 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.243 Order of pole = 9.117 TOP MAIN SOLVE Loop x[1] = 2.058 y[1] (analytic) = 0 y[1] (numeric) = 3.3411670375608436243791405041842 absolute error = 3.3411670375608436243791405041842 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.243 Order of pole = 9.114 TOP MAIN SOLVE Loop x[1] = 2.059 y[1] (analytic) = 0 y[1] (numeric) = 3.3430117695261305520989733588827 absolute error = 3.3430117695261305520989733588827 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.242 Order of pole = 9.111 TOP MAIN SOLVE Loop x[1] = 2.06 y[1] (analytic) = 0 y[1] (numeric) = 3.3448559018410277169992407880069 absolute error = 3.3448559018410277169992407880069 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.242 Order of pole = 9.108 TOP MAIN SOLVE Loop x[1] = 2.061 y[1] (analytic) = 0 y[1] (numeric) = 3.346699433572200079411472815097 absolute error = 3.346699433572200079411472815097 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.242 Order of pole = 9.105 TOP MAIN SOLVE Loop x[1] = 2.062 y[1] (analytic) = 0 y[1] (numeric) = 3.3485423637879518564624545504822 absolute error = 3.3485423637879518564624545504822 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.242 Order of pole = 9.102 TOP MAIN SOLVE Loop x[1] = 2.063 y[1] (analytic) = 0 y[1] (numeric) = 3.3503846915582282368250426363693 absolute error = 3.3503846915582282368250426363693 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.242 Order of pole = 9.099 TOP MAIN SOLVE Loop x[1] = 2.064 y[1] (analytic) = 0 y[1] (numeric) = 3.3522264159546170870012915087986 absolute error = 3.3522264159546170870012915087986 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.241 Order of pole = 9.096 TOP MAIN SOLVE Loop x[1] = 2.065 y[1] (analytic) = 0 y[1] (numeric) = 3.3540675360503506491349735629286 absolute error = 3.3540675360503506491349735629286 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.241 Order of pole = 9.093 memory used=656.1MB, alloc=4.6MB, time=68.75 TOP MAIN SOLVE Loop x[1] = 2.066 y[1] (analytic) = 0 y[1] (numeric) = 3.3559080509203072303506451092942 absolute error = 3.3559080509203072303506451092942 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.241 Order of pole = 9.09 TOP MAIN SOLVE Loop x[1] = 2.067 y[1] (analytic) = 0 y[1] (numeric) = 3.3577479596410128836164777707894 absolute error = 3.3577479596410128836164777707894 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.241 Order of pole = 9.087 TOP MAIN SOLVE Loop x[1] = 2.068 y[1] (analytic) = 0 y[1] (numeric) = 3.3595872612906430801281426924073 absolute error = 3.3595872612906430801281426924073 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.241 Order of pole = 9.084 TOP MAIN SOLVE Loop x[1] = 2.069 y[1] (analytic) = 0 y[1] (numeric) = 3.3614259549490243732111026174956 absolute error = 3.3614259549490243732111026174956 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.24 Order of pole = 9.081 TOP MAIN SOLVE Loop x[1] = 2.07 y[1] (analytic) = 0 y[1] (numeric) = 3.3632640396976360537387345247066 absolute error = 3.3632640396976360537387345247066 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.24 Order of pole = 9.078 TOP MAIN SOLVE Loop x[1] = 2.071 y[1] (analytic) = 0 y[1] (numeric) = 3.365101514619611797063773118211 absolute error = 3.365101514619611797063773118211 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.24 Order of pole = 9.075 TOP MAIN SOLVE Loop x[1] = 2.072 y[1] (analytic) = 0 y[1] (numeric) = 3.3669383787997413014606330193583 absolute error = 3.3669383787997413014606330193583 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.24 Order of pole = 9.072 TOP MAIN SOLVE Loop x[1] = 2.073 y[1] (analytic) = 0 y[1] (numeric) = 3.36877463132447191807623502008 absolute error = 3.36877463132447191807623502008 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.24 Order of pole = 9.069 TOP MAIN SOLVE Loop x[1] = 2.074 y[1] (analytic) = 0 y[1] (numeric) = 3.3706102712819102723870292262002 absolute error = 3.3706102712819102723870292262002 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.239 Order of pole = 9.066 TOP MAIN SOLVE Loop x[1] = 2.075 y[1] (analytic) = 0 y[1] (numeric) = 3.3724452977618238771599753417243 absolute error = 3.3724452977618238771599753417243 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.239 Order of pole = 9.063 TOP MAIN SOLVE Loop x[1] = 2.076 y[1] (analytic) = 0 y[1] (numeric) = 3.3742797098556427369153077223762 absolute error = 3.3742797098556427369153077223762 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.239 Order of pole = 9.06 TOP MAIN SOLVE Loop memory used=659.9MB, alloc=4.6MB, time=69.16 x[1] = 2.077 y[1] (analytic) = 0 y[1] (numeric) = 3.3761135066564609438889801574307 absolute error = 3.3761135066564609438889801574307 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.239 Order of pole = 9.057 TOP MAIN SOLVE Loop x[1] = 2.078 y[1] (analytic) = 0 y[1] (numeric) = 3.3779466872590382654927526225078 absolute error = 3.3779466872590382654927526225078 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.238 Order of pole = 9.054 TOP MAIN SOLVE Loop x[1] = 2.079 y[1] (analytic) = 0 y[1] (numeric) = 3.3797792507598017232699494817351 absolute error = 3.3797792507598017232699494817351 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.238 Order of pole = 9.051 TOP MAIN SOLVE Loop x[1] = 2.08 y[1] (analytic) = 0 y[1] (numeric) = 3.3816111962568471633449858048195 absolute error = 3.3816111962568471633449858048195 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.238 Order of pole = 9.048 TOP MAIN SOLVE Loop x[1] = 2.081 y[1] (analytic) = 0 y[1] (numeric) = 3.3834425228499408183648256023778 absolute error = 3.3834425228499408183648256023778 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.238 Order of pole = 9.045 TOP MAIN SOLVE Loop x[1] = 2.082 y[1] (analytic) = 0 y[1] (numeric) = 3.385273229640520860930602870637 absolute error = 3.385273229640520860930602870637 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.238 Order of pole = 9.042 TOP MAIN SOLVE Loop x[1] = 2.083 y[1] (analytic) = 0 y[1] (numeric) = 3.3871033157316989485177033736074 absolute error = 3.3871033157316989485177033736074 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.237 Order of pole = 9.039 TOP MAIN SOLVE Loop x[1] = 2.084 y[1] (analytic) = 0 y[1] (numeric) = 3.3889327802282617598826720763395 absolute error = 3.3889327802282617598826720763395 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.237 Order of pole = 9.036 TOP MAIN SOLVE Loop x[1] = 2.085 y[1] (analytic) = 0 y[1] (numeric) = 3.3907616222366725229553780761813 absolute error = 3.3907616222366725229553780761813 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.237 Order of pole = 9.033 TOP MAIN SOLVE Loop x[1] = 2.086 y[1] (analytic) = 0 y[1] (numeric) = 3.3925898408650725342149357593414 absolute error = 3.3925898408650725342149357593414 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.237 Order of pole = 9.03 TOP MAIN SOLVE Loop x[1] = 2.087 y[1] (analytic) = 0 y[1] (numeric) = 3.3944174352232826695479477368215 absolute error = 3.3944174352232826695479477368215 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.237 Order of pole = 9.027 TOP MAIN SOLVE Loop memory used=663.7MB, alloc=4.6MB, time=69.56 x[1] = 2.088 y[1] (analytic) = 0 y[1] (numeric) = 3.3962444044228048865877018861987 absolute error = 3.3962444044228048865877018861987 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.236 Order of pole = 9.024 TOP MAIN SOLVE Loop x[1] = 2.089 y[1] (analytic) = 0 y[1] (numeric) = 3.3980707475768237185330215431013 absolute error = 3.3980707475768237185330215431013 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.236 Order of pole = 9.021 TOP MAIN SOLVE Loop x[1] = 2.09 y[1] (analytic) = 0 y[1] (numeric) = 3.3998964638002077594455345478241 absolute error = 3.3998964638002077594455345478241 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.236 Order of pole = 9.018 TOP MAIN SOLVE Loop x[1] = 2.091 y[1] (analytic) = 0 y[1] (numeric) = 3.401721552209511141024193457664 absolute error = 3.401721552209511141024193457664 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.236 Order of pole = 9.015 TOP MAIN SOLVE Loop x[1] = 2.092 y[1] (analytic) = 0 y[1] (numeric) = 3.4035460119229750008559457835165 absolute error = 3.4035460119229750008559457835165 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.236 Order of pole = 9.012 TOP MAIN SOLVE Loop x[1] = 2.093 y[1] (analytic) = 0 y[1] (numeric) = 3.4053698420605289421415195993558 absolute error = 3.4053698420605289421415195993558 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.235 Order of pole = 9.009 TOP MAIN SOLVE Loop x[1] = 2.094 y[1] (analytic) = 0 y[1] (numeric) = 3.4071930417437924848953563047235 absolute error = 3.4071930417437924848953563047235 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.235 Order of pole = 9.006 TOP MAIN SOLVE Loop x[1] = 2.095 y[1] (analytic) = 0 y[1] (numeric) = 3.4090156100960765086187886925719 absolute error = 3.4090156100960765086187886925719 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.235 Order of pole = 9.003 TOP MAIN SOLVE Loop x[1] = 2.096 y[1] (analytic) = 0 y[1] (numeric) = 3.4108375462423846864456287870481 absolute error = 3.4108375462423846864456287870481 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.235 Order of pole = 9 TOP MAIN SOLVE Loop x[1] = 2.097 y[1] (analytic) = 0 y[1] (numeric) = 3.4126588493094149107593961673692 absolute error = 3.4126588493094149107593961673692 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.235 Order of pole = 8.997 TOP MAIN SOLVE Loop x[1] = 2.098 y[1] (analytic) = 0 y[1] (numeric) = 3.4144795184255607102814836841276 absolute error = 3.4144795184255607102814836841276 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.234 Order of pole = 8.994 TOP MAIN SOLVE Loop x[1] = 2.099 y[1] (analytic) = 0 y[1] (numeric) = 3.416299552720912658629623602488 absolute error = 3.416299552720912658629623602488 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.234 Order of pole = 8.992 TOP MAIN SOLVE Loop memory used=667.5MB, alloc=4.6MB, time=69.97 x[1] = 2.1 y[1] (analytic) = 0 y[1] (numeric) = 3.4181189513272597743460832720994 absolute error = 3.4181189513272597743460832720994 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.234 Order of pole = 8.989 TOP MAIN SOLVE Loop x[1] = 2.101 y[1] (analytic) = 0 y[1] (numeric) = 3.4199377133780909123950854254563 absolute error = 3.4199377133780909123950854254563 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.234 Order of pole = 8.986 TOP MAIN SOLVE Loop x[1] = 2.102 y[1] (analytic) = 0 y[1] (numeric) = 3.4217558380085961471290141442132 absolute error = 3.4217558380085961471290141442132 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.234 Order of pole = 8.983 TOP MAIN SOLVE Loop x[1] = 2.103 y[1] (analytic) = 0 y[1] (numeric) = 3.4235733243556681467230334059 absolute error = 3.4235733243556681467230334059 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.233 Order of pole = 8.98 TOP MAIN SOLVE Loop x[1] = 2.104 y[1] (analytic) = 0 y[1] (numeric) = 3.425390171557903539077810930915 absolute error = 3.425390171557903539077810930915 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.233 Order of pole = 8.977 TOP MAIN SOLVE Loop x[1] = 2.105 y[1] (analytic) = 0 y[1] (numeric) = 3.4272063787556042691901057909037 absolute error = 3.4272063787556042691901057909037 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.233 Order of pole = 8.974 TOP MAIN SOLVE Loop x[1] = 2.106 y[1] (analytic) = 0 y[1] (numeric) = 3.4290219450907789479910439139831 absolute error = 3.4290219450907789479910439139831 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.233 Order of pole = 8.971 TOP MAIN SOLVE Loop x[1] = 2.107 y[1] (analytic) = 0 y[1] (numeric) = 3.4308368697071441926519712290636 absolute error = 3.4308368697071441926519712290636 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.233 Order of pole = 8.969 TOP MAIN SOLVE Loop x[1] = 2.108 y[1] (analytic) = 0 y[1] (numeric) = 3.4326511517501259583578397300699 absolute error = 3.4326511517501259583578397300699 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.232 Order of pole = 8.966 TOP MAIN SOLVE Loop x[1] = 2.109 y[1] (analytic) = 0 y[1] (numeric) = 3.4344647903668608615481472104993 absolute error = 3.4344647903668608615481472104993 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.232 Order of pole = 8.963 TOP MAIN SOLVE Loop x[1] = 2.11 y[1] (analytic) = 0 y[1] (numeric) = 3.4362777847061974946255168187977 absolute error = 3.4362777847061974946255168187977 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.232 Order of pole = 8.96 TOP MAIN SOLVE Loop memory used=671.4MB, alloc=4.6MB, time=70.37 x[1] = 2.111 y[1] (analytic) = 0 y[1] (numeric) = 3.43809013391869773213206791481 absolute error = 3.43809013391869773213206791481 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.232 Order of pole = 8.958 TOP MAIN SOLVE Loop x[1] = 2.112 y[1] (analytic) = 0 y[1] (numeric) = 3.4399018371566380283937949664016 absolute error = 3.4399018371566380283937949664016 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.232 Order of pole = 8.955 TOP MAIN SOLVE Loop x[1] = 2.113 y[1] (analytic) = 0 y[1] (numeric) = 3.4417128935740107066332364125791 absolute error = 3.4417128935740107066332364125791 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.231 Order of pole = 8.952 TOP MAIN SOLVE Loop x[1] = 2.114 y[1] (analytic) = 0 y[1] (numeric) = 3.4435233023265252395507805343928 absolute error = 3.4435233023265252395507805343928 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.231 Order of pole = 8.949 TOP MAIN SOLVE Loop x[1] = 2.115 y[1] (analytic) = 0 y[1] (numeric) = 3.4453330625716095213750204169167 absolute error = 3.4453330625716095213750204169167 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.231 Order of pole = 8.947 TOP MAIN SOLVE Loop x[1] = 2.116 y[1] (analytic) = 0 y[1] (numeric) = 3.447142173468411131382635054007 absolute error = 3.447142173468411131382635054007 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.231 Order of pole = 8.944 TOP MAIN SOLVE Loop x[1] = 2.117 y[1] (analytic) = 0 y[1] (numeric) = 3.4489506341777985888883385416736 absolute error = 3.4489506341777985888883385416736 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.231 Order of pole = 8.941 TOP MAIN SOLVE Loop x[1] = 2.118 y[1] (analytic) = 0 y[1] (numeric) = 3.4507584438623625997055041251035 absolute error = 3.4507584438623625997055041251035 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.231 Order of pole = 8.939 TOP MAIN SOLVE Loop x[1] = 2.119 y[1] (analytic) = 0 y[1] (numeric) = 3.4525656016864172940781346079862 absolute error = 3.4525656016864172940781346079862 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.23 Order of pole = 8.936 TOP MAIN SOLVE Loop x[1] = 2.12 y[1] (analytic) = 0 y[1] (numeric) = 3.454372106816001456084915300156 absolute error = 3.454372106816001456084915300156 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.23 Order of pole = 8.934 TOP MAIN SOLVE Loop x[1] = 2.121 y[1] (analytic) = 0 y[1] (numeric) = 3.4561779584188797445161502700248 absolute error = 3.4561779584188797445161502700248 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.23 Order of pole = 8.931 TOP MAIN SOLVE Loop x[1] = 2.122 y[1] (analytic) = 0 y[1] (numeric) = 3.4579831556645439052244471811822 absolute error = 3.4579831556645439052244471811822 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.23 Order of pole = 8.928 memory used=675.2MB, alloc=4.6MB, time=70.78 TOP MAIN SOLVE Loop x[1] = 2.123 y[1] (analytic) = 0 y[1] (numeric) = 3.4597876977242139749500804272329 absolute error = 3.4597876977242139749500804272329 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.23 Order of pole = 8.926 TOP MAIN SOLVE Loop x[1] = 2.124 y[1] (analytic) = 0 y[1] (numeric) = 3.4615915837708394766220266347717 absolute error = 3.4615915837708394766220266347717 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.23 Order of pole = 8.924 TOP MAIN SOLVE Loop x[1] = 2.125 y[1] (analytic) = 0 y[1] (numeric) = 3.4633948129791006061357308807245 absolute error = 3.4633948129791006061357308807245 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.23 Order of pole = 8.921 TOP MAIN SOLVE Loop x[1] = 2.126 y[1] (analytic) = 0 y[1] (numeric) = 3.4651973845254094106087261664522 absolute error = 3.4651973845254094106087261664522 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.229 Order of pole = 8.919 TOP MAIN SOLVE Loop x[1] = 2.127 y[1] (analytic) = 0 y[1] (numeric) = 3.466999297587910958115292806387 absolute error = 3.466999297587910958115292806387 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.229 Order of pole = 8.916 TOP MAIN SOLVE Loop x[1] = 2.128 y[1] (analytic) = 0 y[1] (numeric) = 3.4688005513464844989014084229023 absolute error = 3.4688005513464844989014084229023 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.229 Order of pole = 8.914 TOP MAIN SOLVE Loop x[1] = 2.129 y[1] (analytic) = 0 y[1] (numeric) = 3.4706011449827446180813031909656 absolute error = 3.4706011449827446180813031909656 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.229 Order of pole = 8.911 TOP MAIN SOLVE Loop x[1] = 2.13 y[1] (analytic) = 0 y[1] (numeric) = 3.4724010776800423798169988452531 absolute error = 3.4724010776800423798169988452531 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.229 Order of pole = 8.909 TOP MAIN SOLVE Loop x[1] = 2.131 y[1] (analytic) = 0 y[1] (numeric) = 3.4742003486234664629822737481758 absolute error = 3.4742003486234664629822737481758 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.229 Order of pole = 8.907 TOP MAIN SOLVE Loop x[1] = 2.132 y[1] (analytic) = 0 y[1] (numeric) = 3.4759989569998442883125600190463 absolute error = 3.4759989569998442883125600190463 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.229 Order of pole = 8.905 TOP MAIN SOLVE Loop x[1] = 2.133 y[1] (analytic) = 0 y[1] (numeric) = 3.4777969019977431370423423417697 absolute error = 3.4777969019977431370423423417697 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.228 Order of pole = 8.902 TOP MAIN SOLVE Loop memory used=679.0MB, alloc=4.6MB, time=71.18 x[1] = 2.134 y[1] (analytic) = 0 y[1] (numeric) = 3.47959418280747126103169160034 absolute error = 3.47959418280747126103169160034 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.228 Order of pole = 8.9 TOP MAIN SOLVE Loop x[1] = 2.135 y[1] (analytic) = 0 y[1] (numeric) = 3.4813907986210789843836299374369 absolute error = 3.4813907986210789843836299374369 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.228 Order of pole = 8.898 TOP MAIN SOLVE Loop x[1] = 2.136 y[1] (analytic) = 0 y[1] (numeric) = 3.4831867486323597965540871909182 absolute error = 3.4831867486323597965540871909182 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.228 Order of pole = 8.896 TOP MAIN SOLVE Loop x[1] = 2.137 y[1] (analytic) = 0 y[1] (numeric) = 3.4849820320368514369562719353676 absolute error = 3.4849820320368514369562719353676 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.228 Order of pole = 8.894 TOP MAIN SOLVE Loop x[1] = 2.138 y[1] (analytic) = 0 y[1] (numeric) = 3.4867766480318369710613435404594 absolute error = 3.4867766480318369710613435404594 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.228 Order of pole = 8.891 TOP MAIN SOLVE Loop x[1] = 2.139 y[1] (analytic) = 0 y[1] (numeric) = 3.4885705958163458579973347541247 absolute error = 3.4885705958163458579973347541247 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.228 Order of pole = 8.889 TOP MAIN SOLVE Loop x[1] = 2.14 y[1] (analytic) = 0 y[1] (numeric) = 3.4903638745911550096483373257236 absolute error = 3.4903638745911550096483373257236 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.228 Order of pole = 8.887 TOP MAIN SOLVE Loop x[1] = 2.141 y[1] (analytic) = 0 y[1] (numeric) = 3.4921564835587898412560261020312 absolute error = 3.4921564835587898412560261020312 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.228 Order of pole = 8.885 TOP MAIN SOLVE Loop x[1] = 2.142 y[1] (analytic) = 0 y[1] (numeric) = 3.4939484219235253135256598562146 absolute error = 3.4939484219235253135256598562146 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.228 Order of pole = 8.883 TOP MAIN SOLVE Loop x[1] = 2.143 y[1] (analytic) = 0 y[1] (numeric) = 3.4957396888913869662387598465011 absolute error = 3.4957396888913869662387598465011 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 8.881 TOP MAIN SOLVE Loop x[1] = 2.144 y[1] (analytic) = 0 y[1] (numeric) = 3.4975302836701519433747297463049 absolute error = 3.4975302836701519433747297463049 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 8.879 TOP MAIN SOLVE Loop memory used=682.8MB, alloc=4.6MB, time=71.59 x[1] = 2.145 y[1] (analytic) = 0 y[1] (numeric) = 3.4993202054693500097437431405776 absolute error = 3.4993202054693500097437431405776 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 8.877 TOP MAIN SOLVE Loop x[1] = 2.146 y[1] (analytic) = 0 y[1] (numeric) = 3.5011094535002645591332872434726 absolute error = 3.5011094535002645591332872434726 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 8.876 TOP MAIN SOLVE Loop x[1] = 2.147 y[1] (analytic) = 0 y[1] (numeric) = 3.5028980269759336139708138594627 absolute error = 3.5028980269759336139708138594627 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 8.874 TOP MAIN SOLVE Loop x[1] = 2.148 y[1] (analytic) = 0 y[1] (numeric) = 3.5046859251111508165050108832113 absolute error = 3.5046859251111508165050108832113 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 8.872 TOP MAIN SOLVE Loop x[1] = 2.149 y[1] (analytic) = 0 y[1] (numeric) = 3.5064731471224664115082698121824 absolute error = 3.5064731471224664115082698121824 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 8.87 TOP MAIN SOLVE Loop x[1] = 2.15 y[1] (analytic) = 0 y[1] (numeric) = 3.5082596922281882205029868295722 absolute error = 3.5082596922281882205029868295722 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 8.868 TOP MAIN SOLVE Loop x[1] = 2.151 y[1] (analytic) = 0 y[1] (numeric) = 3.5100455596483826075143970030679 absolute error = 3.5100455596483826075143970030679 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 8.867 TOP MAIN SOLVE Loop x[1] = 2.152 y[1] (analytic) = 0 y[1] (numeric) = 3.5118307486048754363527030365857 absolute error = 3.5118307486048754363527030365857 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 8.865 TOP MAIN SOLVE Loop x[1] = 2.153 y[1] (analytic) = 0 y[1] (numeric) = 3.5136152583212530194273218069226 absolute error = 3.5136152583212530194273218069226 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 8.863 TOP MAIN SOLVE Loop x[1] = 2.154 y[1] (analytic) = 0 y[1] (numeric) = 3.5153990880228630580961336145798 absolute error = 3.5153990880228630580961336145798 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 8.862 TOP MAIN SOLVE Loop x[1] = 2.155 y[1] (analytic) = 0 y[1] (numeric) = 3.5171822369368155745526806772956 absolute error = 3.5171822369368155745526806772956 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 8.86 TOP MAIN SOLVE Loop x[1] = 2.156 y[1] (analytic) = 0 y[1] (numeric) = 3.5189647042919838352543228954717 absolute error = 3.5189647042919838352543228954717 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 8.859 TOP MAIN SOLVE Loop memory used=686.6MB, alloc=4.6MB, time=71.99 x[1] = 2.157 y[1] (analytic) = 0 y[1] (numeric) = 3.5207464893190052658944203201092 absolute error = 3.5207464893190052658944203201092 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.226 Order of pole = 8.857 TOP MAIN SOLVE Loop x[1] = 2.158 y[1] (analytic) = 0 y[1] (numeric) = 3.5225275912502823579216730555008 absolute error = 3.5225275912502823579216730555008 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.226 Order of pole = 8.856 TOP MAIN SOLVE Loop x[1] = 2.159 y[1] (analytic) = 0 y[1] (numeric) = 3.5243080093199835666098105301803 absolute error = 3.5243080093199835666098105301803 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.226 Order of pole = 8.854 TOP MAIN SOLVE Loop x[1] = 2.16 y[1] (analytic) = 0 y[1] (numeric) = 3.526087742764044200680883169928 absolute error = 3.526087742764044200680883169928 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.226 Order of pole = 8.853 TOP MAIN SOLVE Loop x[1] = 2.161 y[1] (analytic) = 0 y[1] (numeric) = 3.5278667908201673034854705053925 absolute error = 3.5278667908201673034854705053925 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.226 Order of pole = 8.851 TOP MAIN SOLVE Loop x[1] = 2.162 y[1] (analytic) = 0 y[1] (numeric) = 3.5296451527278245257431806435497 absolute error = 3.5296451527278245257431806435497 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.226 Order of pole = 8.85 TOP MAIN SOLVE Loop x[1] = 2.163 y[1] (analytic) = 0 y[1] (numeric) = 3.5314228277282569898468768261977 absolute error = 3.5314228277282569898468768261977 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.226 Order of pole = 8.849 TOP MAIN SOLVE Loop x[1] = 2.164 y[1] (analytic) = 0 y[1] (numeric) = 3.5331998150644761457341274894192 absolute error = 3.5331998150644761457341274894192 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.226 Order of pole = 8.848 TOP MAIN SOLVE Loop x[1] = 2.165 y[1] (analytic) = 0 y[1] (numeric) = 3.53497611398126461832943682486 absolute error = 3.53497611398126461832943682486 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.226 Order of pole = 8.846 TOP MAIN SOLVE Loop x[1] = 2.166 y[1] (analytic) = 0 y[1] (numeric) = 3.5367517237251770465608733262107 absolute error = 3.5367517237251770465608733262107 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.226 Order of pole = 8.845 TOP MAIN SOLVE Loop x[1] = 2.167 y[1] (analytic) = 0 y[1] (numeric) = 3.5385266435445409139547741818712 absolute error = 3.5385266435445409139547741818712 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.226 Order of pole = 8.844 TOP MAIN SOLVE Loop memory used=690.4MB, alloc=4.6MB, time=72.39 x[1] = 2.168 y[1] (analytic) = 0 y[1] (numeric) = 3.5403008726894573708122636468694 absolute error = 3.5403008726894573708122636468694 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.226 Order of pole = 8.843 TOP MAIN SOLVE Loop x[1] = 2.169 y[1] (analytic) = 0 y[1] (numeric) = 3.5420744104118020479713836931334 absolute error = 3.5420744104118020479713836931334 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.226 Order of pole = 8.842 TOP MAIN SOLVE Loop x[1] = 2.17 y[1] (analytic) = 0 y[1] (numeric) = 3.5438472559652258621586952966249 absolute error = 3.5438472559652258621586952966249 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.226 Order of pole = 8.841 TOP MAIN SOLVE Loop x[1] = 2.171 y[1] (analytic) = 0 y[1] (numeric) = 3.5456194086051558129342686720771 absolute error = 3.5456194086051558129342686720771 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.226 Order of pole = 8.84 TOP MAIN SOLVE Loop x[1] = 2.172 y[1] (analytic) = 0 y[1] (numeric) = 3.5473908675887957712340406105912 absolute error = 3.5473908675887957712340406105912 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.226 Order of pole = 8.839 TOP MAIN SOLVE Loop x[1] = 2.173 y[1] (analytic) = 0 y[1] (numeric) = 3.5491616321751272595135768115799 absolute error = 3.5491616321751272595135768115799 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.226 Order of pole = 8.838 TOP MAIN SOLVE Loop x[1] = 2.174 y[1] (analytic) = 0 y[1] (numeric) = 3.5509317016249102234973367279585 absolute error = 3.5509317016249102234973367279585 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.226 Order of pole = 8.837 TOP MAIN SOLVE Loop x[1] = 2.175 y[1] (analytic) = 0 y[1] (numeric) = 3.5527010752006837955375979615267 absolute error = 3.5527010752006837955375979615267 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.226 Order of pole = 8.836 TOP MAIN SOLVE Loop x[1] = 2.176 y[1] (analytic) = 0 y[1] (numeric) = 3.5544697521667670495872566536173 absolute error = 3.5544697521667670495872566536173 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.226 Order of pole = 8.835 TOP MAIN SOLVE Loop x[1] = 2.177 y[1] (analytic) = 0 y[1] (numeric) = 3.5562377317892597477907796137639 absolute error = 3.5562377317892597477907796137639 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.226 Order of pole = 8.835 TOP MAIN SOLVE Loop x[1] = 2.178 y[1] (analytic) = 0 y[1] (numeric) = 3.5580050133360430786976431158295 absolute error = 3.5580050133360430786976431158295 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.226 Order of pole = 8.834 TOP MAIN SOLVE Loop x[1] = 2.179 y[1] (analytic) = 0 y[1] (numeric) = 3.5597715960767803871026523661939 absolute error = 3.5597715960767803871026523661939 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 8.833 memory used=694.3MB, alloc=4.6MB, time=72.79 TOP MAIN SOLVE Loop x[1] = 2.18 y[1] (analytic) = 0 y[1] (numeric) = 3.5615374792829178955175946116949 absolute error = 3.5615374792829178955175946116949 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 8.832 TOP MAIN SOLVE Loop x[1] = 2.181 y[1] (analytic) = 0 y[1] (numeric) = 3.5633026622276854172787377055193 absolute error = 3.5633026622276854172787377055193 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 8.832 TOP MAIN SOLVE Loop x[1] = 2.182 y[1] (analytic) = 0 y[1] (numeric) = 3.5650671441860970612947446866144 absolute error = 3.5650671441860970612947446866144 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 8.831 TOP MAIN SOLVE Loop x[1] = 2.183 y[1] (analytic) = 0 y[1] (numeric) = 3.5668309244349519284396335519166 absolute error = 3.5668309244349519284396335519166 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 8.831 TOP MAIN SOLVE Loop x[1] = 2.184 y[1] (analytic) = 0 y[1] (numeric) = 3.5685940022528347995954699102378 absolute error = 3.5685940022528347995954699102378 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 8.83 TOP MAIN SOLVE Loop x[1] = 2.185 y[1] (analytic) = 0 y[1] (numeric) = 3.5703563769201168153495386014968 absolute error = 3.5703563769201168153495386014968 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 8.83 TOP MAIN SOLVE Loop x[1] = 2.186 y[1] (analytic) = 0 y[1] (numeric) = 3.5721180477189561473507986446061 absolute error = 3.5721180477189561473507986446061 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 8.829 TOP MAIN SOLVE Loop x[1] = 2.187 y[1] (analytic) = 0 y[1] (numeric) = 3.573879013933298661330484041207 absolute error = 3.573879013933298661330484041207 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 8.829 TOP MAIN SOLVE Loop x[1] = 2.188 y[1] (analytic) = 0 y[1] (numeric) = 3.5756392748488785717917710100733 absolute error = 3.5756392748488785717917710100733 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 8.828 TOP MAIN SOLVE Loop x[1] = 2.189 y[1] (analytic) = 0 y[1] (numeric) = 3.57739882975321908837349015786 absolute error = 3.57739882975321908837349015786 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 8.828 TOP MAIN SOLVE Loop x[1] = 2.19 y[1] (analytic) = 0 y[1] (numeric) = 3.5791576779356330538929199054455 absolute error = 3.5791576779356330538929199054455 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 8.828 TOP MAIN SOLVE Loop memory used=698.1MB, alloc=4.6MB, time=73.20 x[1] = 2.191 y[1] (analytic) = 0 y[1] (numeric) = 3.5809158186872235740727551849005 absolute error = 3.5809158186872235740727551849005 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 8.828 TOP MAIN SOLVE Loop x[1] = 2.192 y[1] (analytic) = 0 y[1] (numeric) = 3.5826732513008846389574029995965 absolute error = 3.5826732513008846389574029995965 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 8.827 TOP MAIN SOLVE Loop x[1] = 2.193 y[1] (analytic) = 0 y[1] (numeric) = 3.5844299750713017360238138986485 absolute error = 3.5844299750713017360238138986485 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.228 Order of pole = 8.827 TOP MAIN SOLVE Loop x[1] = 2.194 y[1] (analytic) = 0 y[1] (numeric) = 3.5861859892949524549921157562581 absolute error = 3.5861859892949524549921157562581 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.228 Order of pole = 8.827 TOP MAIN SOLVE Loop x[1] = 2.195 y[1] (analytic) = 0 y[1] (numeric) = 3.5879412932701070843413734660898 absolute error = 3.5879412932701070843413734660898 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.228 Order of pole = 8.827 TOP MAIN SOLVE Loop x[1] = 2.196 y[1] (analytic) = 0 y[1] (numeric) = 3.5896958862968291995358552600751 absolute error = 3.5896958862968291995358552600751 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.228 Order of pole = 8.827 TOP MAIN SOLVE Loop x[1] = 2.197 y[1] (analytic) = 0 y[1] (numeric) = 3.591449767676976242967243339501 absolute error = 3.591449767676976242967243339501 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.228 Order of pole = 8.827 TOP MAIN SOLVE Loop x[1] = 2.198 y[1] (analytic) = 0 y[1] (numeric) = 3.5932029367142000956182833634081 absolute error = 3.5932029367142000956182833634081 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.228 Order of pole = 8.827 TOP MAIN SOLVE Loop x[1] = 2.199 y[1] (analytic) = 0 y[1] (numeric) = 3.5949553927139476404534240747065 absolute error = 3.5949553927139476404534240747065 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.228 Order of pole = 8.827 TOP MAIN SOLVE Loop x[1] = 2.2 y[1] (analytic) = 0 y[1] (numeric) = 3.5967071349834613175420549575313 absolute error = 3.5967071349834613175420549575313 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.228 Order of pole = 8.827 TOP MAIN SOLVE Loop x[1] = 2.201 y[1] (analytic) = 0 y[1] (numeric) = 3.5984581628317796709200063097096 absolute error = 3.5984581628317796709200063097096 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.228 Order of pole = 8.827 TOP MAIN SOLVE Loop x[1] = 2.202 y[1] (analytic) = 0 y[1] (numeric) = 3.6002084755697378871950324813202 absolute error = 3.6002084755697378871950324813202 relative error = -1 % Correct digits = -1 h = 0.001 memory used=701.9MB, alloc=4.6MB, time=73.59 Complex estimate of poles used for equation 1 Radius of convergence = 4.229 Order of pole = 8.827 TOP MAIN SOLVE Loop x[1] = 2.203 y[1] (analytic) = 0 y[1] (numeric) = 3.6019580725099683259020552737135 absolute error = 3.6019580725099683259020552737135 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.229 Order of pole = 8.827 TOP MAIN SOLVE Loop x[1] = 2.204 y[1] (analytic) = 0 y[1] (numeric) = 3.6037069529669010416140006125367 absolute error = 3.6037069529669010416140006125367 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.229 Order of pole = 8.827 TOP MAIN SOLVE Loop x[1] = 2.205 y[1] (analytic) = 0 y[1] (numeric) = 3.6054551162567642978141176028112 absolute error = 3.6054551162567642978141176028112 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.229 Order of pole = 8.828 TOP MAIN SOLVE Loop x[1] = 2.206 y[1] (analytic) = 0 y[1] (numeric) = 3.6072025616975850725357249434525 absolute error = 3.6072025616975850725357249434525 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.229 Order of pole = 8.828 TOP MAIN SOLVE Loop x[1] = 2.207 y[1] (analytic) = 0 y[1] (numeric) = 3.6089492886091895557753854223397 absolute error = 3.6089492886091895557753854223397 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.229 Order of pole = 8.828 TOP MAIN SOLVE Loop x[1] = 2.208 y[1] (analytic) = 0 y[1] (numeric) = 3.6106952963132036386855648306614 absolute error = 3.6106952963132036386855648306614 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.229 Order of pole = 8.829 TOP MAIN SOLVE Loop x[1] = 2.209 y[1] (analytic) = 0 y[1] (numeric) = 3.6124405841330533945528871263187 absolute error = 3.6124405841330533945528871263187 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.23 Order of pole = 8.829 TOP MAIN SOLVE Loop x[1] = 2.21 y[1] (analytic) = 0 y[1] (numeric) = 3.614185151393965551568153040192 absolute error = 3.614185151393965551568153040192 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.23 Order of pole = 8.829 TOP MAIN SOLVE Loop x[1] = 2.211 y[1] (analytic) = 0 y[1] (numeric) = 3.6159289974229679573943445556095 absolute error = 3.6159289974229679573943445556095 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.23 Order of pole = 8.83 TOP MAIN SOLVE Loop x[1] = 2.212 y[1] (analytic) = 0 y[1] (numeric) = 3.617672121548890035538892799936 absolute error = 3.617672121548890035538892799936 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.23 Order of pole = 8.83 TOP MAIN SOLVE Loop x[1] = 2.213 y[1] (analytic) = 0 y[1] (numeric) = 3.6194145231023632335365418673674 absolute error = 3.6194145231023632335365418673674 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.23 Order of pole = 8.831 TOP MAIN SOLVE Loop memory used=705.7MB, alloc=4.6MB, time=74.00 x[1] = 2.214 y[1] (analytic) = 0 y[1] (numeric) = 3.6211562014158214629491959433214 absolute error = 3.6211562014158214629491959433214 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.23 Order of pole = 8.831 TOP MAIN SOLVE Loop x[1] = 2.215 y[1] (analytic) = 0 y[1] (numeric) = 3.6228971558235015311891918227952 absolute error = 3.6228971558235015311891918227952 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.231 Order of pole = 8.832 TOP MAIN SOLVE Loop x[1] = 2.216 y[1] (analytic) = 0 y[1] (numeric) = 3.6246373856614435651724935072763 absolute error = 3.6246373856614435651724935072763 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.231 Order of pole = 8.833 TOP MAIN SOLVE Loop x[1] = 2.217 y[1] (analytic) = 0 y[1] (numeric) = 3.6263768902674914268083600267848 absolute error = 3.6263768902674914268083600267848 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.231 Order of pole = 8.833 TOP MAIN SOLVE Loop x[1] = 2.218 y[1] (analytic) = 0 y[1] (numeric) = 3.6281156689812931203320919649574 absolute error = 3.6281156689812931203320919649574 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.231 Order of pole = 8.834 TOP MAIN SOLVE Loop x[1] = 2.219 y[1] (analytic) = 0 y[1] (numeric) = 3.6298537211443011914875163653031 absolute error = 3.6298537211443011914875163653031 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.231 Order of pole = 8.835 TOP MAIN SOLVE Loop x[1] = 2.22 y[1] (analytic) = 0 y[1] (numeric) = 3.6315910460997731185659237654352 absolute error = 3.6315910460997731185659237654352 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.232 Order of pole = 8.835 TOP MAIN SOLVE Loop x[1] = 2.221 y[1] (analytic) = 0 y[1] (numeric) = 3.633327643192771695308225042768 absolute error = 3.633327643192771695308225042768 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.232 Order of pole = 8.836 TOP MAIN SOLVE Loop x[1] = 2.222 y[1] (analytic) = 0 y[1] (numeric) = 3.6350635117701654056771495594273 absolute error = 3.6350635117701654056771495594273 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.232 Order of pole = 8.837 TOP MAIN SOLVE Loop x[1] = 2.223 y[1] (analytic) = 0 y[1] (numeric) = 3.6367986511806287905063597655272 absolute error = 3.6367986511806287905063597655272 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.232 Order of pole = 8.838 TOP MAIN SOLVE Loop x[1] = 2.224 y[1] (analytic) = 0 y[1] (numeric) = 3.6385330607746428060334109580777 absolute error = 3.6385330607746428060334109580777 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.232 Order of pole = 8.839 TOP MAIN SOLVE Loop memory used=709.5MB, alloc=4.6MB, time=74.41 x[1] = 2.225 y[1] (analytic) = 0 y[1] (numeric) = 3.6402667399044951743235382971829 absolute error = 3.6402667399044951743235382971829 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.233 Order of pole = 8.839 TOP MAIN SOLVE Loop x[1] = 2.226 y[1] (analytic) = 0 y[1] (numeric) = 3.6419996879242807255913064514389 absolute error = 3.6419996879242807255913064514389 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.233 Order of pole = 8.84 TOP MAIN SOLVE Loop x[1] = 2.227 y[1] (analytic) = 0 y[1] (numeric) = 3.6437319041899017324272103801196 absolute error = 3.6437319041899017324272103801196 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.233 Order of pole = 8.841 TOP MAIN SOLVE Loop x[1] = 2.228 y[1] (analytic) = 0 y[1] (numeric) = 3.6454633880590682359363687604293 absolute error = 3.6454633880590682359363687604293 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.233 Order of pole = 8.842 TOP MAIN SOLVE Loop x[1] = 2.229 y[1] (analytic) = 0 y[1] (numeric) = 3.6471941388912983637965044333771 absolute error = 3.6471941388912983637965044333771 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.234 Order of pole = 8.843 TOP MAIN SOLVE Loop x[1] = 2.23 y[1] (analytic) = 0 y[1] (numeric) = 3.6489241560479186402424589712815 absolute error = 3.6489241560479186402424589712815 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.234 Order of pole = 8.844 TOP MAIN SOLVE Loop x[1] = 2.231 y[1] (analytic) = 0 y[1] (numeric) = 3.650653438892064287984541063121 absolute error = 3.650653438892064287984541063121 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.234 Order of pole = 8.845 TOP MAIN SOLVE Loop x[1] = 2.232 y[1] (analytic) = 0 y[1] (numeric) = 3.6523819867886795220680608705042 absolute error = 3.6523819867886795220680608705042 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.234 Order of pole = 8.846 TOP MAIN SOLVE Loop x[1] = 2.233 y[1] (analytic) = 0 y[1] (numeric) = 3.6541097991045178356814548265234 absolute error = 3.6541097991045178356814548265234 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.235 Order of pole = 8.848 TOP MAIN SOLVE Loop x[1] = 2.234 y[1] (analytic) = 0 y[1] (numeric) = 3.6558368752081422779204575317795 absolute error = 3.6558368752081422779204575317795 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.235 Order of pole = 8.849 TOP MAIN SOLVE Loop x[1] = 2.235 y[1] (analytic) = 0 y[1] (numeric) = 3.6575632144699257235158294460125 absolute error = 3.6575632144699257235158294460125 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.235 Order of pole = 8.85 TOP MAIN SOLVE Loop x[1] = 2.236 y[1] (analytic) = 0 y[1] (numeric) = 3.6592888162620511345322009796413 absolute error = 3.6592888162620511345322009796413 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.235 Order of pole = 8.851 TOP MAIN SOLVE Loop memory used=713.3MB, alloc=4.6MB, time=74.81 x[1] = 2.237 y[1] (analytic) = 0 y[1] (numeric) = 3.6610136799585118140456453567111 absolute error = 3.6610136799585118140456453567111 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.235 Order of pole = 8.852 TOP MAIN SOLVE Loop x[1] = 2.238 y[1] (analytic) = 0 y[1] (numeric) = 3.6627378049351116518076442488648 absolute error = 3.6627378049351116518076442488648 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.236 Order of pole = 8.853 TOP MAIN SOLVE Loop x[1] = 2.239 y[1] (analytic) = 0 y[1] (numeric) = 3.664461190569465361903161668605 absolute error = 3.664461190569465361903161668605 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.236 Order of pole = 8.855 TOP MAIN SOLVE Loop x[1] = 2.24 y[1] (analytic) = 0 y[1] (numeric) = 3.6661838362409987124105929589028 absolute error = 3.6661838362409987124105929589028 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.236 Order of pole = 8.856 TOP MAIN SOLVE Loop x[1] = 2.241 y[1] (analytic) = 0 y[1] (numeric) = 3.6679057413309487470714069247466 absolute error = 3.6679057413309487470714069247466 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.237 Order of pole = 8.857 TOP MAIN SOLVE Loop x[1] = 2.242 y[1] (analytic) = 0 y[1] (numeric) = 3.6696269052223639989773502201245 absolute error = 3.6696269052223639989773502201245 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.237 Order of pole = 8.859 TOP MAIN SOLVE Loop x[1] = 2.243 y[1] (analytic) = 0 y[1] (numeric) = 3.6713473273001046962831340308088 absolute error = 3.6713473273001046962831340308088 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.237 Order of pole = 8.86 TOP MAIN SOLVE Loop x[1] = 2.244 y[1] (analytic) = 0 y[1] (numeric) = 3.6730670069508429599525738787826 absolute error = 3.6730670069508429599525738787826 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.237 Order of pole = 8.861 TOP MAIN SOLVE Loop x[1] = 2.245 y[1] (analytic) = 0 y[1] (numeric) = 3.6747859435630629935462040178314 absolute error = 3.6747859435630629935462040178314 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.238 Order of pole = 8.863 TOP MAIN SOLVE Loop x[1] = 2.246 y[1] (analytic) = 0 y[1] (numeric) = 3.6765041365270612650584383913452 absolute error = 3.6765041365270612650584383913452 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.238 Order of pole = 8.864 TOP MAIN SOLVE Loop x[1] = 2.247 y[1] (analytic) = 0 y[1] (numeric) = 3.6782215852349466808124004823579 absolute error = 3.6782215852349466808124004823579 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.238 Order of pole = 8.866 TOP MAIN SOLVE Loop memory used=717.1MB, alloc=4.6MB, time=75.21 x[1] = 2.248 y[1] (analytic) = 0 y[1] (numeric) = 3.6799382890806407514205946019242 absolute error = 3.6799382890806407514205946019242 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.238 Order of pole = 8.867 TOP MAIN SOLVE Loop x[1] = 2.249 y[1] (analytic) = 0 y[1] (numeric) = 3.6816542474598777498196412347252 absolute error = 3.6816542474598777498196412347252 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.239 Order of pole = 8.868 TOP MAIN SOLVE Loop x[1] = 2.25 y[1] (analytic) = 0 y[1] (numeric) = 3.6833694597702048613873489899352 absolute error = 3.6833694597702048613873489899352 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.239 Order of pole = 8.87 TOP MAIN SOLVE Loop x[1] = 2.251 y[1] (analytic) = 0 y[1] (numeric) = 3.6850839254109823261504454905138 absolute error = 3.6850839254109823261504454905138 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.239 Order of pole = 8.871 TOP MAIN SOLVE Loop x[1] = 2.252 y[1] (analytic) = 0 y[1] (numeric) = 3.6867976437833835730913391748394 absolute error = 3.6867976437833835730913391748394 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.24 Order of pole = 8.873 TOP MAIN SOLVE Loop x[1] = 2.253 y[1] (analytic) = 0 y[1] (numeric) = 3.6885106142903953465623334806175 absolute error = 3.6885106142903953465623334806175 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.24 Order of pole = 8.875 TOP MAIN SOLVE Loop x[1] = 2.254 y[1] (analytic) = 0 y[1] (numeric) = 3.6902228363368178248157642319217 absolute error = 3.6902228363368178248157642319217 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.24 Order of pole = 8.876 TOP MAIN SOLVE Loop x[1] = 2.255 y[1] (analytic) = 0 y[1] (numeric) = 3.6919343093292647306585802556992 absolute error = 3.6919343093292647306585802556992 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.24 Order of pole = 8.878 TOP MAIN SOLVE Loop x[1] = 2.256 y[1] (analytic) = 0 y[1] (numeric) = 3.6936450326761634342399363137468 absolute error = 3.6936450326761634342399363137468 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.241 Order of pole = 8.879 TOP MAIN SOLVE Loop x[1] = 2.257 y[1] (analytic) = 0 y[1] (numeric) = 3.6953550057877550479804163496851 absolute error = 3.6953550057877550479804163496851 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.241 Order of pole = 8.881 TOP MAIN SOLVE Loop x[1] = 2.258 y[1] (analytic) = 0 y[1] (numeric) = 3.6970642280760945136515538174824 absolute error = 3.6970642280760945136515538174824 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.241 Order of pole = 8.882 TOP MAIN SOLVE Loop x[1] = 2.259 y[1] (analytic) = 0 y[1] (numeric) = 3.6987726989550506816143644782575 absolute error = 3.6987726989550506816143644782575 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.242 Order of pole = 8.884 memory used=721.0MB, alloc=4.6MB, time=75.62 TOP MAIN SOLVE Loop x[1] = 2.26 y[1] (analytic) = 0 y[1] (numeric) = 3.700480417840306382225655525085 absolute error = 3.700480417840306382225655525085 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.242 Order of pole = 8.886 TOP MAIN SOLVE Loop x[1] = 2.261 y[1] (analytic) = 0 y[1] (numeric) = 3.70218738414935848942092322099 absolute error = 3.70218738414935848942092322099 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.242 Order of pole = 8.887 TOP MAIN SOLVE Loop x[1] = 2.262 y[1] (analytic) = 0 y[1] (numeric) = 3.7038935973015179764826994129222 absolute error = 3.7038935973015179764826994129222 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.242 Order of pole = 8.889 TOP MAIN SOLVE Loop x[1] = 2.263 y[1] (analytic) = 0 y[1] (numeric) = 3.7055990567179099640032553139001 absolute error = 3.7055990567179099640032553139001 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.243 Order of pole = 8.891 TOP MAIN SOLVE Loop x[1] = 2.264 y[1] (analytic) = 0 y[1] (numeric) = 3.707303761821473760050618826387 absolute error = 3.707303761821473760050618826387 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.243 Order of pole = 8.892 TOP MAIN SOLVE Loop x[1] = 2.265 y[1] (analytic) = 0 y[1] (numeric) = 3.7090077120369628925469094119672 absolute error = 3.7090077120369628925469094119672 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.243 Order of pole = 8.894 TOP MAIN SOLVE Loop x[1] = 2.266 y[1] (analytic) = 0 y[1] (numeric) = 3.7107109067909451338680420952105 absolute error = 3.7107109067909451338680420952105 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.244 Order of pole = 8.896 TOP MAIN SOLVE Loop x[1] = 2.267 y[1] (analytic) = 0 y[1] (numeric) = 3.7124133455118025176738996229162 absolute error = 3.7124133455118025176738996229162 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.244 Order of pole = 8.897 TOP MAIN SOLVE Loop x[1] = 2.268 y[1] (analytic) = 0 y[1] (numeric) = 3.7141150276297313479781190833951 absolute error = 3.7141150276297313479781190833951 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.244 Order of pole = 8.899 TOP MAIN SOLVE Loop x[1] = 2.269 y[1] (analytic) = 0 y[1] (numeric) = 3.7158159525767422004666864237574 absolute error = 3.7158159525767422004666864237574 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.245 Order of pole = 8.901 TOP MAIN SOLVE Loop x[1] = 2.27 y[1] (analytic) = 0 y[1] (numeric) = 3.7175161197866599160745792860103 absolute error = 3.7175161197866599160745792860103 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.245 Order of pole = 8.903 TOP MAIN SOLVE Loop memory used=724.8MB, alloc=4.6MB, time=76.02 x[1] = 2.271 y[1] (analytic) = 0 y[1] (numeric) = 3.7192155286951235868297454148142 absolute error = 3.7192155286951235868297454148142 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.245 Order of pole = 8.904 TOP MAIN SOLVE Loop x[1] = 2.272 y[1] (analytic) = 0 y[1] (numeric) = 3.7209141787395865339737505706914 absolute error = 3.7209141787395865339737505706914 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.246 Order of pole = 8.906 TOP MAIN SOLVE Loop x[1] = 2.273 y[1] (analytic) = 0 y[1] (numeric) = 3.7226120693593162783684764120121 absolute error = 3.7226120693593162783684764120121 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.246 Order of pole = 8.908 TOP MAIN SOLVE Loop x[1] = 2.274 y[1] (analytic) = 0 y[1] (numeric) = 3.7243091999953945031982951868957 absolute error = 3.7243091999953945031982951868957 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.246 Order of pole = 8.91 TOP MAIN SOLVE Loop x[1] = 2.275 y[1] (analytic) = 0 y[1] (numeric) = 3.726005570090717008977194301955 absolute error = 3.726005570090717008977194301955 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.246 Order of pole = 8.911 TOP MAIN SOLVE Loop x[1] = 2.276 y[1] (analytic) = 0 y[1] (numeric) = 3.7277011790899936608703699082713 absolute error = 3.7277011790899936608703699082713 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.247 Order of pole = 8.913 TOP MAIN SOLVE Loop x[1] = 2.277 y[1] (analytic) = 0 y[1] (numeric) = 3.7293960264397483283398545658262 absolute error = 3.7293960264397483283398545658262 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.247 Order of pole = 8.915 TOP MAIN SOLVE Loop x[1] = 2.278 y[1] (analytic) = 0 y[1] (numeric) = 3.731090111588318817123789815526 absolute error = 3.731090111588318817123789815526 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.247 Order of pole = 8.917 TOP MAIN SOLVE Loop x[1] = 2.279 y[1] (analytic) = 0 y[1] (numeric) = 3.7327834339858567935590001026503 absolute error = 3.7327834339858567935590001026503 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.248 Order of pole = 8.919 TOP MAIN SOLVE Loop x[1] = 2.28 y[1] (analytic) = 0 y[1] (numeric) = 3.7344759930843277012565699567371 absolute error = 3.7344759930843277012565699567371 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.248 Order of pole = 8.92 TOP MAIN SOLVE Loop x[1] = 2.281 y[1] (analytic) = 0 y[1] (numeric) = 3.736167788337510670140171640301 absolute error = 3.736167788337510670140171640301 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.248 Order of pole = 8.922 TOP MAIN SOLVE Loop memory used=728.6MB, alloc=4.6MB, time=76.42 x[1] = 2.282 y[1] (analytic) = 0 y[1] (numeric) = 3.7378588192009984178569356320743 absolute error = 3.7378588192009984178569356320743 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.249 Order of pole = 8.924 TOP MAIN SOLVE Loop x[1] = 2.283 y[1] (analytic) = 0 y[1] (numeric) = 3.7395490851321971435707013093835 absolute error = 3.7395490851321971435707013093835 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.249 Order of pole = 8.926 TOP MAIN SOLVE Loop x[1] = 2.284 y[1] (analytic) = 0 y[1] (numeric) = 3.7412385855903264141475300385408 absolute error = 3.7412385855903264141475300385408 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.249 Order of pole = 8.928 TOP MAIN SOLVE Loop x[1] = 2.285 y[1] (analytic) = 0 y[1] (numeric) = 3.7429273200364190427434075714638 absolute error = 3.7429273200364190427434075714638 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.25 Order of pole = 8.929 TOP MAIN SOLVE Loop x[1] = 2.286 y[1] (analytic) = 0 y[1] (numeric) = 3.7446152879333209598041071808567 absolute error = 3.7446152879333209598041071808567 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.25 Order of pole = 8.931 TOP MAIN SOLVE Loop x[1] = 2.287 y[1] (analytic) = 0 y[1] (numeric) = 3.7463024887456910764872293449244 absolute error = 3.7463024887456910764872293449244 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.25 Order of pole = 8.933 TOP MAIN SOLVE Loop x[1] = 2.288 y[1] (analytic) = 0 y[1] (numeric) = 3.747988921940001140516478015465 absolute error = 3.747988921940001140516478015465 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 8.935 TOP MAIN SOLVE Loop x[1] = 2.289 y[1] (analytic) = 0 y[1] (numeric) = 3.7496745869845355844782775700389 absolute error = 3.7496745869845355844782775700389 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 8.936 TOP MAIN SOLVE Loop x[1] = 2.29 y[1] (analytic) = 0 y[1] (numeric) = 3.7513594833493913665708784594643 absolute error = 3.7513594833493913665708784594643 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 8.938 TOP MAIN SOLVE Loop x[1] = 2.291 y[1] (analytic) = 0 y[1] (numeric) = 3.7530436105064778038161433158873 absolute error = 3.7530436105064778038161433158873 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.252 Order of pole = 8.94 TOP MAIN SOLVE Loop x[1] = 2.292 y[1] (analytic) = 0 y[1] (numeric) = 3.7547269679295163977442488838466 absolute error = 3.7547269679295163977442488838466 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.252 Order of pole = 8.942 TOP MAIN SOLVE Loop x[1] = 2.293 y[1] (analytic) = 0 y[1] (numeric) = 3.7564095550940406525615825768474 absolute error = 3.7564095550940406525615825768474 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.252 Order of pole = 8.944 TOP MAIN SOLVE Loop memory used=732.4MB, alloc=4.6MB, time=76.82 x[1] = 2.294 y[1] (analytic) = 0 y[1] (numeric) = 3.7580913714773958858121557447144 absolute error = 3.7580913714773958858121557447144 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.253 Order of pole = 8.945 TOP MAIN SOLVE Loop x[1] = 2.295 y[1] (analytic) = 0 y[1] (numeric) = 3.7597724165587390315428988621568 absolute error = 3.7597724165587390315428988621568 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.253 Order of pole = 8.947 TOP MAIN SOLVE Loop x[1] = 2.296 y[1] (analytic) = 0 y[1] (numeric) = 3.7614526898190384359832468162982 absolute error = 3.7614526898190384359832468162982 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.253 Order of pole = 8.949 TOP MAIN SOLVE Loop x[1] = 2.297 y[1] (analytic) = 0 y[1] (numeric) = 3.7631321907410736457494652801501 absolute error = 3.7631321907410736457494652801501 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.253 Order of pole = 8.951 TOP MAIN SOLVE Loop x[1] = 2.298 y[1] (analytic) = 0 y[1] (numeric) = 3.7648109188094351885842118098934 absolute error = 3.7648109188094351885842118098934 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.254 Order of pole = 8.952 TOP MAIN SOLVE Loop x[1] = 2.299 y[1] (analytic) = 0 y[1] (numeric) = 3.766488873510524346641867796133 absolute error = 3.766488873510524346641867796133 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.254 Order of pole = 8.954 TOP MAIN SOLVE Loop x[1] = 2.3 y[1] (analytic) = 0 y[1] (numeric) = 3.7681660543325529223302197327662 absolute error = 3.7681660543325529223302197327662 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.254 Order of pole = 8.956 TOP MAIN SOLVE Loop x[1] = 2.301 y[1] (analytic) = 0 y[1] (numeric) = 3.7698424607655429967191104415138 absolute error = 3.7698424607655429967191104415138 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.957 TOP MAIN SOLVE Loop x[1] = 2.302 y[1] (analytic) = 0 y[1] (numeric) = 3.7715180923013266805267229052702 absolute error = 3.7715180923013266805267229052702 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.959 TOP MAIN SOLVE Loop x[1] = 2.303 y[1] (analytic) = 0 y[1] (numeric) = 3.7731929484335458576942012189976 absolute error = 3.7731929484335458576942012189976 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.961 TOP MAIN SOLVE Loop x[1] = 2.304 y[1] (analytic) = 0 y[1] (numeric) = 3.7748670286576519215593548626918 absolute error = 3.7748670286576519215593548626918 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.256 Order of pole = 8.962 TOP MAIN SOLVE Loop memory used=736.2MB, alloc=4.6MB, time=77.24 x[1] = 2.305 y[1] (analytic) = 0 y[1] (numeric) = 3.7765403324709055036402340367514 absolute error = 3.7765403324709055036402340367514 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.256 Order of pole = 8.964 TOP MAIN SOLVE Loop x[1] = 2.306 y[1] (analytic) = 0 y[1] (numeric) = 3.7782128593723761950394051756598 absolute error = 3.7782128593723761950394051756598 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.256 Order of pole = 8.966 TOP MAIN SOLVE Loop x[1] = 2.307 y[1] (analytic) = 0 y[1] (numeric) = 3.7798846088629422604797969710235 absolute error = 3.7798846088629422604797969710235 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.257 Order of pole = 8.967 TOP MAIN SOLVE Loop x[1] = 2.308 y[1] (analytic) = 0 y[1] (numeric) = 3.7815555804452903449830282894681 absolute error = 3.7815555804452903449830282894681 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.257 Order of pole = 8.969 TOP MAIN SOLVE Loop x[1] = 2.309 y[1] (analytic) = 0 y[1] (numeric) = 3.7832257736239151732011702644682 absolute error = 3.7832257736239151732011702644682 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.257 Order of pole = 8.971 TOP MAIN SOLVE Loop x[1] = 2.31 y[1] (analytic) = 0 y[1] (numeric) = 3.7848951879051192414129355736513 absolute error = 3.7848951879051192414129355736513 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.257 Order of pole = 8.972 TOP MAIN SOLVE Loop x[1] = 2.311 y[1] (analytic) = 0 y[1] (numeric) = 3.7865638227970125021953284842623 absolute error = 3.7865638227970125021953284842623 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.258 Order of pole = 8.974 TOP MAIN SOLVE Loop x[1] = 2.312 y[1] (analytic) = 0 y[1] (numeric) = 3.7882316778095120417818296590911 absolute error = 3.7882316778095120417818296590911 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.258 Order of pole = 8.975 TOP MAIN SOLVE Loop x[1] = 2.313 y[1] (analytic) = 0 y[1] (numeric) = 3.7898987524543417501182299630372 absolute error = 3.7898987524543417501182299630372 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.258 Order of pole = 8.977 TOP MAIN SOLVE Loop x[1] = 2.314 y[1] (analytic) = 0 y[1] (numeric) = 3.791565046245031983627267596415 absolute error = 3.791565046245031983627267596415 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.259 Order of pole = 8.978 TOP MAIN SOLVE Loop x[1] = 2.315 y[1] (analytic) = 0 y[1] (numeric) = 3.7932305586969192206932628048764 absolute error = 3.7932305586969192206932628048764 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.259 Order of pole = 8.98 TOP MAIN SOLVE Loop x[1] = 2.316 y[1] (analytic) = 0 y[1] (numeric) = 3.7948952893271457098779841772518 absolute error = 3.7948952893271457098779841772518 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.259 Order of pole = 8.981 TOP MAIN SOLVE Loop memory used=740.0MB, alloc=4.6MB, time=77.65 x[1] = 2.317 y[1] (analytic) = 0 y[1] (numeric) = 3.7965592376546591108790201414816 absolute error = 3.7965592376546591108790201414816 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.26 Order of pole = 8.983 TOP MAIN SOLVE Loop x[1] = 2.318 y[1] (analytic) = 0 y[1] (numeric) = 3.7982224032002121282419687049316 absolute error = 3.7982224032002121282419687049316 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.26 Order of pole = 8.984 TOP MAIN SOLVE Loop x[1] = 2.319 y[1] (analytic) = 0 y[1] (numeric) = 3.7998847854863621378377977585687 absolute error = 3.7998847854863621378377977585687 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.26 Order of pole = 8.986 TOP MAIN SOLVE Loop x[1] = 2.32 y[1] (analytic) = 0 y[1] (numeric) = 3.8015463840374708061167673745175 absolute error = 3.8015463840374708061167673745175 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.26 Order of pole = 8.987 TOP MAIN SOLVE Loop x[1] = 2.321 y[1] (analytic) = 0 y[1] (numeric) = 3.8032071983797037021503444732439 absolute error = 3.8032071983797037021503444732439 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.261 Order of pole = 8.989 TOP MAIN SOLVE Loop x[1] = 2.322 y[1] (analytic) = 0 y[1] (numeric) = 3.8048672280410299024725790198256 absolute error = 3.8048672280410299024725790198256 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.261 Order of pole = 8.99 TOP MAIN SOLVE Loop x[1] = 2.323 y[1] (analytic) = 0 y[1] (numeric) = 3.8065264725512215887324495282903 absolute error = 3.8065264725512215887324495282903 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.261 Order of pole = 8.991 TOP MAIN SOLVE Loop x[1] = 2.324 y[1] (analytic) = 0 y[1] (numeric) = 3.8081849314418536381687241086498 absolute error = 3.8081849314418536381687241086498 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.262 Order of pole = 8.993 TOP MAIN SOLVE Loop x[1] = 2.325 y[1] (analytic) = 0 y[1] (numeric) = 3.8098426042463032069189215828495 absolute error = 3.8098426042463032069189215828495 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.262 Order of pole = 8.994 TOP MAIN SOLVE Loop x[1] = 2.326 y[1] (analytic) = 0 y[1] (numeric) = 3.8114994904997493061739953232151 absolute error = 3.8114994904997493061739953232151 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.262 Order of pole = 8.995 TOP MAIN SOLVE Loop x[1] = 2.327 y[1] (analytic) = 0 y[1] (numeric) = 3.8131555897391723711904004299371 absolute error = 3.8131555897391723711904004299371 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.262 Order of pole = 8.996 TOP MAIN SOLVE Loop memory used=743.8MB, alloc=4.6MB, time=78.05 x[1] = 2.328 y[1] (analytic) = 0 y[1] (numeric) = 3.8148109015033538231712426625133 absolute error = 3.8148109015033538231712426625133 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.263 Order of pole = 8.998 TOP MAIN SOLVE Loop x[1] = 2.329 y[1] (analytic) = 0 y[1] (numeric) = 3.8164654253328756240282451737093 absolute error = 3.8164654253328756240282451737093 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.263 Order of pole = 8.999 TOP MAIN SOLVE Loop x[1] = 2.33 y[1] (analytic) = 0 y[1] (numeric) = 3.818119160770119824036306563319 absolute error = 3.818119160770119824036306563319 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.263 Order of pole = 9 TOP MAIN SOLVE Loop x[1] = 2.331 y[1] (analytic) = 0 y[1] (numeric) = 3.8197721073592681023924610726598 absolute error = 3.8197721073592681023924610726598 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.263 Order of pole = 9.001 TOP MAIN SOLVE Loop x[1] = 2.332 y[1] (analytic) = 0 y[1] (numeric) = 3.8214242646463013006910888791483 absolute error = 3.8214242646463013006910888791483 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.264 Order of pole = 9.002 TOP MAIN SOLVE Loop x[1] = 2.333 y[1] (analytic) = 0 y[1] (numeric) = 3.8230756321789989493272614233187 absolute error = 3.8230756321789989493272614233187 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.264 Order of pole = 9.004 TOP MAIN SOLVE Loop x[1] = 2.334 y[1] (analytic) = 0 y[1] (numeric) = 3.8247262095069387868401435081109 absolute error = 3.8247262095069387868401435081109 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.264 Order of pole = 9.005 TOP MAIN SOLVE Loop x[1] = 2.335 y[1] (analytic) = 0 y[1] (numeric) = 3.8263759961814962722084105520109 absolute error = 3.8263759961814962722084105520109 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.264 Order of pole = 9.006 TOP MAIN SOLVE Loop x[1] = 2.336 y[1] (analytic) = 0 y[1] (numeric) = 3.8280249917558440901096758535245 absolute error = 3.8280249917558440901096758535245 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.265 Order of pole = 9.007 TOP MAIN SOLVE Loop x[1] = 2.337 y[1] (analytic) = 0 y[1] (numeric) = 3.829673195784951649155959034356 absolute error = 3.829673195784951649155959034356 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.265 Order of pole = 9.008 TOP MAIN SOLVE Loop x[1] = 2.338 y[1] (analytic) = 0 y[1] (numeric) = 3.8313206078255845731172629723999 absolute error = 3.8313206078255845731172629723999 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.265 Order of pole = 9.009 TOP MAIN SOLVE Loop x[1] = 2.339 y[1] (analytic) = 0 y[1] (numeric) = 3.8329672274363041851453625130892 absolute error = 3.8329672274363041851453625130892 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.265 Order of pole = 9.01 TOP MAIN SOLVE Loop memory used=747.7MB, alloc=4.6MB, time=78.46 x[1] = 2.34 y[1] (analytic) = 0 y[1] (numeric) = 3.8346130541774669850099440586429 absolute error = 3.8346130541774669850099440586429 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.266 Order of pole = 9.011 TOP MAIN SOLVE Loop x[1] = 2.341 y[1] (analytic) = 0 y[1] (numeric) = 3.8362580876112241193592707791709 absolute error = 3.8362580876112241193592707791709 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.266 Order of pole = 9.011 TOP MAIN SOLVE Loop x[1] = 2.342 y[1] (analytic) = 0 y[1] (numeric) = 3.8379023273015208450175836672962 absolute error = 3.8379023273015208450175836672962 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.266 Order of pole = 9.012 TOP MAIN SOLVE Loop x[1] = 2.343 y[1] (analytic) = 0 y[1] (numeric) = 3.8395457728140959853314839688027 absolute error = 3.8395457728140959853314839688027 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.266 Order of pole = 9.013 TOP MAIN SOLVE Loop x[1] = 2.344 y[1] (analytic) = 0 y[1] (numeric) = 3.8411884237164813795775776656855 absolute error = 3.8411884237164813795775776656855 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.267 Order of pole = 9.014 TOP MAIN SOLVE Loop x[1] = 2.345 y[1] (analytic) = 0 y[1] (numeric) = 3.8428302795780013254436976647341 absolute error = 3.8428302795780013254436976647341 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.267 Order of pole = 9.015 TOP MAIN SOLVE Loop x[1] = 2.346 y[1] (analytic) = 0 y[1] (numeric) = 3.8444713399697720145960541542949 absolute error = 3.8444713399697720145960541542949 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.267 Order of pole = 9.015 TOP MAIN SOLVE Loop x[1] = 2.347 y[1] (analytic) = 0 y[1] (numeric) = 3.8461116044647009613446982340115 absolute error = 3.8461116044647009613446982340115 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.267 Order of pole = 9.016 TOP MAIN SOLVE Loop x[1] = 2.348 y[1] (analytic) = 0 y[1] (numeric) = 3.8477510726374864244197183970067 absolute error = 3.8477510726374864244197183970067 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.267 Order of pole = 9.017 TOP MAIN SOLVE Loop x[1] = 2.349 y[1] (analytic) = 0 y[1] (numeric) = 3.8493897440646168218706237510315 absolute error = 3.8493897440646168218706237510315 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.268 Order of pole = 9.018 TOP MAIN SOLVE Loop x[1] = 2.35 y[1] (analytic) = 0 y[1] (numeric) = 3.8510276183243701391014020044442 absolute error = 3.8510276183243701391014020044442 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.268 Order of pole = 9.018 TOP MAIN SOLVE Loop memory used=751.5MB, alloc=4.6MB, time=78.86 x[1] = 2.351 y[1] (analytic) = 0 y[1] (numeric) = 3.8526646949968133300537742143828 absolute error = 3.8526646949968133300537742143828 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.268 Order of pole = 9.019 TOP MAIN SOLVE Loop x[1] = 2.352 y[1] (analytic) = 0 y[1] (numeric) = 3.8543009736638017115512020980462 absolute error = 3.8543009736638017115512020980462 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.268 Order of pole = 9.019 TOP MAIN SOLVE Loop x[1] = 2.353 y[1] (analytic) = 0 y[1] (numeric) = 3.8559364539089783508162373434903 absolute error = 3.8559364539089783508162373434903 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.268 Order of pole = 9.02 TOP MAIN SOLVE Loop x[1] = 2.354 y[1] (analytic) = 0 y[1] (numeric) = 3.8575711353177734461738358236704 absolute error = 3.8575711353177734461738358236704 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.269 Order of pole = 9.02 TOP MAIN SOLVE Loop x[1] = 2.355 y[1] (analytic) = 0 y[1] (numeric) = 3.8592050174774037009532929165141 absolute error = 3.8592050174774037009532929165141 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.269 Order of pole = 9.021 TOP MAIN SOLVE Loop x[1] = 2.356 y[1] (analytic) = 0 y[1] (numeric) = 3.8608380999768716906014892644874 absolute error = 3.8608380999768716906014892644874 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.269 Order of pole = 9.021 TOP MAIN SOLVE Loop x[1] = 2.357 y[1] (analytic) = 0 y[1] (numeric) = 3.8624703824069652230201692693201 absolute error = 3.8624703824069652230201692693201 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.269 Order of pole = 9.022 TOP MAIN SOLVE Loop x[1] = 2.358 y[1] (analytic) = 0 y[1] (numeric) = 3.8641018643602566921400074111897 absolute error = 3.8641018643602566921400074111897 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.269 Order of pole = 9.022 TOP MAIN SOLVE Loop x[1] = 2.359 y[1] (analytic) = 0 y[1] (numeric) = 3.8657325454311024247442501066248 absolute error = 3.8657325454311024247442501066248 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.27 Order of pole = 9.022 TOP MAIN SOLVE Loop x[1] = 2.36 y[1] (analytic) = 0 y[1] (numeric) = 3.8673624252156420205547532755954 absolute error = 3.8673624252156420205547532755954 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.27 Order of pole = 9.022 TOP MAIN SOLVE Loop x[1] = 2.361 y[1] (analytic) = 0 y[1] (numeric) = 3.8689915033117976855932680756083 absolute error = 3.8689915033117976855932680756083 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.27 Order of pole = 9.023 TOP MAIN SOLVE Loop x[1] = 2.362 y[1] (analytic) = 0 y[1] (numeric) = 3.8706197793192735588308593790416 absolute error = 3.8706197793192735588308593790416 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.27 Order of pole = 9.023 memory used=755.3MB, alloc=4.6MB, time=79.27 TOP MAIN SOLVE Loop x[1] = 2.363 y[1] (analytic) = 0 y[1] (numeric) = 3.8722472528395550321383735193395 absolute error = 3.8722472528395550321383735193395 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.27 Order of pole = 9.023 TOP MAIN SOLVE Loop x[1] = 2.364 y[1] (analytic) = 0 y[1] (numeric) = 3.873873923475908063550903611974 absolute error = 3.873873923475908063550903611974 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.27 Order of pole = 9.023 TOP MAIN SOLVE Loop x[1] = 2.365 y[1] (analytic) = 0 y[1] (numeric) = 3.87549979083337848385923236717 absolute error = 3.87549979083337848385923236717 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.271 Order of pole = 9.023 TOP MAIN SOLVE Loop x[1] = 2.366 y[1] (analytic) = 0 y[1] (numeric) = 3.8771248545187912965412637532194 absolute error = 3.8771248545187912965412637532194 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.271 Order of pole = 9.023 TOP MAIN SOLVE Loop x[1] = 2.367 y[1] (analytic) = 0 y[1] (numeric) = 3.8787491141407499710464861416913 absolute error = 3.8787491141407499710464861416913 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.271 Order of pole = 9.023 TOP MAIN SOLVE Loop x[1] = 2.368 y[1] (analytic) = 0 y[1] (numeric) = 3.8803725693096357294465406689148 absolute error = 3.8803725693096357294465406689148 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.271 Order of pole = 9.023 TOP MAIN SOLVE Loop x[1] = 2.369 y[1] (analytic) = 0 y[1] (numeric) = 3.8819952196376068264649994816883 absolute error = 3.8819952196376068264649994816883 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.271 Order of pole = 9.023 TOP MAIN SOLVE Loop x[1] = 2.37 y[1] (analytic) = 0 y[1] (numeric) = 3.8836170647385978228994892991924 absolute error = 3.8836170647385978228994892991924 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.271 Order of pole = 9.023 TOP MAIN SOLVE Loop x[1] = 2.371 y[1] (analytic) = 0 y[1] (numeric) = 3.8852381042283188524493263174844 absolute error = 3.8852381042283188524493263174844 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.271 Order of pole = 9.023 TOP MAIN SOLVE Loop x[1] = 2.372 y[1] (analytic) = 0 y[1] (numeric) = 3.8868583377242548819618589076631 absolute error = 3.8868583377242548819618589076631 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.272 Order of pole = 9.023 TOP MAIN SOLVE Loop x[1] = 2.373 y[1] (analytic) = 0 y[1] (numeric) = 3.8884777648456649651107448137583 absolute error = 3.8884777648456649651107448137583 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.272 Order of pole = 9.023 TOP MAIN SOLVE Loop memory used=759.1MB, alloc=4.6MB, time=79.67 x[1] = 2.374 y[1] (analytic) = 0 y[1] (numeric) = 3.8900963852135814895194196415537 absolute error = 3.8900963852135814895194196415537 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.272 Order of pole = 9.023 TOP MAIN SOLVE Loop x[1] = 2.375 y[1] (analytic) = 0 y[1] (numeric) = 3.8917141984508094173430433448439 absolute error = 3.8917141984508094173430433448439 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.272 Order of pole = 9.022 TOP MAIN SOLVE Loop x[1] = 2.376 y[1] (analytic) = 0 y[1] (numeric) = 3.8933312041819255193222411609952 absolute error = 3.8933312041819255193222411609952 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.272 Order of pole = 9.022 TOP MAIN SOLVE Loop x[1] = 2.377 y[1] (analytic) = 0 y[1] (numeric) = 3.8949474020332776023219850230824 absolute error = 3.8949474020332776023219850230824 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.272 Order of pole = 9.022 TOP MAIN SOLVE Loop x[1] = 2.378 y[1] (analytic) = 0 y[1] (numeric) = 3.8965627916329837303689908812478 absolute error = 3.8965627916329837303689908812478 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.272 Order of pole = 9.021 TOP MAIN SOLVE Loop x[1] = 2.379 y[1] (analytic) = 0 y[1] (numeric) = 3.8981773726109314392010366012393 absolute error = 3.8981773726109314392010366012393 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.272 Order of pole = 9.021 TOP MAIN SOLVE Loop x[1] = 2.38 y[1] (analytic) = 0 y[1] (numeric) = 3.8997911445987769443416341732777 absolute error = 3.8997911445987769443416341732777 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.273 Order of pole = 9.021 TOP MAIN SOLVE Loop x[1] = 2.381 y[1] (analytic) = 0 y[1] (numeric) = 3.9014041072299443427135188594406 absolute error = 3.9014041072299443427135188594406 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.273 Order of pole = 9.02 TOP MAIN SOLVE Loop x[1] = 2.382 y[1] (analytic) = 0 y[1] (numeric) = 3.9030162601396248078044466325885 absolute error = 3.9030162601396248078044466325885 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.273 Order of pole = 9.02 TOP MAIN SOLVE Loop x[1] = 2.383 y[1] (analytic) = 0 y[1] (numeric) = 3.9046276029647757783988198144642 absolute error = 3.9046276029647757783988198144642 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.273 Order of pole = 9.019 TOP MAIN SOLVE Loop x[1] = 2.384 y[1] (analytic) = 0 y[1] (numeric) = 3.9062381353441201408886892049278 absolute error = 3.9062381353441201408886892049278 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.273 Order of pole = 9.018 TOP MAIN SOLVE Loop x[1] = 2.385 y[1] (analytic) = 0 y[1] (numeric) = 3.9078478569181454051777092083158 absolute error = 3.9078478569181454051777092083158 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.273 Order of pole = 9.018 memory used=762.9MB, alloc=4.6MB, time=80.07 TOP MAIN SOLVE Loop x[1] = 2.386 y[1] (analytic) = 0 y[1] (numeric) = 3.9094567673291028741916505066077 absolute error = 3.9094567673291028741916505066077 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.273 Order of pole = 9.017 TOP MAIN SOLVE Loop x[1] = 2.387 y[1] (analytic) = 0 y[1] (numeric) = 3.9110648662210068070091027024054 absolute error = 3.9110648662210068070091027024054 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.273 Order of pole = 9.016 TOP MAIN SOLVE Loop x[1] = 2.388 y[1] (analytic) = 0 y[1] (numeric) = 3.9126721532396335756260270576713 absolute error = 3.9126721532396335756260270576713 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.273 Order of pole = 9.016 TOP MAIN SOLVE Loop x[1] = 2.389 y[1] (analytic) = 0 y[1] (numeric) = 3.9142786280325208153678469866861 absolute error = 3.9142786280325208153678469866861 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.273 Order of pole = 9.015 TOP MAIN SOLVE Loop x[1] = 2.39 y[1] (analytic) = 0 y[1] (numeric) = 3.9158842902489665689627913237752 absolute error = 3.9158842902489665689627913237752 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.273 Order of pole = 9.014 TOP MAIN SOLVE Loop x[1] = 2.391 y[1] (analytic) = 0 y[1] (numeric) = 3.9174891395400284242902325779746 absolute error = 3.9174891395400284242902325779746 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.273 Order of pole = 9.013 TOP MAIN SOLVE Loop x[1] = 2.392 y[1] (analytic) = 0 y[1] (numeric) = 3.9190931755585226458177894079631 absolute error = 3.9190931755585226458177894079631 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 9.012 TOP MAIN SOLVE Loop x[1] = 2.393 y[1] (analytic) = 0 y[1] (numeric) = 3.9206963979590232997409894012498 absolute error = 3.9206963979590232997409894012498 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 9.011 TOP MAIN SOLVE Loop x[1] = 2.394 y[1] (analytic) = 0 y[1] (numeric) = 3.922298806397861372839314921768 absolute error = 3.922298806397861372839314921768 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 9.01 TOP MAIN SOLVE Loop x[1] = 2.395 y[1] (analytic) = 0 y[1] (numeric) = 3.9239004005331238850624812996789 absolute error = 3.9239004005331238850624812996789 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 9.009 TOP MAIN SOLVE Loop x[1] = 2.396 y[1] (analytic) = 0 y[1] (numeric) = 3.9255011800246529958608229763187 absolute error = 3.9255011800246529958608229763187 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 9.008 TOP MAIN SOLVE Loop memory used=766.7MB, alloc=4.6MB, time=80.47 x[1] = 2.397 y[1] (analytic) = 0 y[1] (numeric) = 3.9271011445340451042736893858285 absolute error = 3.9271011445340451042736893858285 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 9.007 TOP MAIN SOLVE Loop x[1] = 2.398 y[1] (analytic) = 0 y[1] (numeric) = 3.9287002937246499427897783530839 absolute error = 3.9287002937246499427897783530839 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 9.006 TOP MAIN SOLVE Loop x[1] = 2.399 y[1] (analytic) = 0 y[1] (numeric) = 3.9302986272615696649933606150879 absolute error = 3.9302986272615696649933606150879 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 9.005 TOP MAIN SOLVE Loop x[1] = 2.4 y[1] (analytic) = 0 y[1] (numeric) = 3.9318961448116579270103747300086 absolute error = 3.9318961448116579270103747300086 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 9.004 TOP MAIN SOLVE Loop x[1] = 2.401 y[1] (analytic) = 0 y[1] (numeric) = 3.9334928460435189627683971245373 absolute error = 3.9334928460435189627683971245373 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 9.002 TOP MAIN SOLVE Loop x[1] = 2.402 y[1] (analytic) = 0 y[1] (numeric) = 3.9350887306275066530845173462127 absolute error = 3.9350887306275066530845173462127 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 9.001 TOP MAIN SOLVE Loop x[1] = 2.403 y[1] (analytic) = 0 y[1] (numeric) = 3.936683798235723588595173732821 absolute error = 3.936683798235723588595173732821 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 9 TOP MAIN SOLVE Loop x[1] = 2.404 y[1] (analytic) = 0 y[1] (numeric) = 3.9382780485420201265420296859378 absolute error = 3.9382780485420201265420296859378 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 8.999 TOP MAIN SOLVE Loop x[1] = 2.405 y[1] (analytic) = 0 y[1] (numeric) = 3.9398714812219934414279955401497 absolute error = 3.9398714812219934414279955401497 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 8.997 TOP MAIN SOLVE Loop x[1] = 2.406 y[1] (analytic) = 0 y[1] (numeric) = 3.9414640959529865695575256534871 absolute error = 3.9414640959529865695575256534871 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 8.996 TOP MAIN SOLVE Loop x[1] = 2.407 y[1] (analytic) = 0 y[1] (numeric) = 3.9430558924140874474753448081368 absolute error = 3.9430558924140874474753448081368 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 8.994 TOP MAIN SOLVE Loop memory used=770.5MB, alloc=4.6MB, time=80.87 x[1] = 2.408 y[1] (analytic) = 0 y[1] (numeric) = 3.9446468702861279443177823036028 absolute error = 3.9446468702861279443177823036028 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 8.993 TOP MAIN SOLVE Loop x[1] = 2.409 y[1] (analytic) = 0 y[1] (numeric) = 3.9462370292516828880909162471625 absolute error = 3.9462370292516828880909162471625 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 8.991 TOP MAIN SOLVE Loop x[1] = 2.41 y[1] (analytic) = 0 y[1] (numeric) = 3.9478263689950690858897544987554 absolute error = 3.9478263689950690858897544987554 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 8.99 TOP MAIN SOLVE Loop x[1] = 2.411 y[1] (analytic) = 0 y[1] (numeric) = 3.9494148892023443380727025093585 absolute error = 3.9494148892023443380727025093585 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 8.988 TOP MAIN SOLVE Loop x[1] = 2.412 y[1] (analytic) = 0 y[1] (numeric) = 3.9510025895613064464055919034846 absolute error = 3.9510025895613064464055919034846 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 8.986 TOP MAIN SOLVE Loop x[1] = 2.413 y[1] (analytic) = 0 y[1] (numeric) = 3.9525894697614922161895670977069 absolute error = 3.9525894697614922161895670977069 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 8.985 TOP MAIN SOLVE Loop x[1] = 2.414 y[1] (analytic) = 0 y[1] (numeric) = 3.9541755294941764523871505181087 absolute error = 3.9541755294941764523871505181087 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 8.983 TOP MAIN SOLVE Loop x[1] = 2.415 y[1] (analytic) = 0 y[1] (numeric) = 3.9557607684523709497608300803061 absolute error = 3.9557607684523709497608300803061 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 8.981 TOP MAIN SOLVE Loop x[1] = 2.416 y[1] (analytic) = 0 y[1] (numeric) = 3.9573451863308234770385355262357 absolute error = 3.9573451863308234770385355262357 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 8.979 TOP MAIN SOLVE Loop x[1] = 2.417 y[1] (analytic) = 0 y[1] (numeric) = 3.9589287828260167551203929722799 absolute error = 3.9589287828260167551203929722799 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 8.978 TOP MAIN SOLVE Loop x[1] = 2.418 y[1] (analytic) = 0 y[1] (numeric) = 3.9605115576361674293411696135519 absolute error = 3.9605115576361674293411696135519 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 8.976 TOP MAIN SOLVE Loop x[1] = 2.419 y[1] (analytic) = 0 y[1] (numeric) = 3.9620935104612250358028429493368 absolute error = 3.9620935104612250358028429493368 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 8.974 TOP MAIN SOLVE Loop memory used=774.4MB, alloc=4.6MB, time=81.27 x[1] = 2.42 y[1] (analytic) = 0 y[1] (numeric) = 3.9636746410028709617917511448186 absolute error = 3.9636746410028709617917511448186 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 8.972 TOP MAIN SOLVE Loop x[1] = 2.421 y[1] (analytic) = 0 y[1] (numeric) = 3.9652549489645174002948032243682 absolute error = 3.9652549489645174002948032243682 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 8.97 TOP MAIN SOLVE Loop x[1] = 2.422 y[1] (analytic) = 0 y[1] (numeric) = 3.9668344340513062986292497018786 absolute error = 3.9668344340513062986292497018786 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 8.968 TOP MAIN SOLVE Loop x[1] = 2.423 y[1] (analytic) = 0 y[1] (numeric) = 3.9684130959701083012005359939518 absolute error = 3.9684130959701083012005359939518 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 8.966 TOP MAIN SOLVE Loop x[1] = 2.424 y[1] (analytic) = 0 y[1] (numeric) = 3.969990934429521686402782532234 absolute error = 3.969990934429521686402782532234 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 8.964 TOP MAIN SOLVE Loop x[1] = 2.425 y[1] (analytic) = 0 y[1] (numeric) = 3.9715679491398712976764568919082 absolute error = 3.9715679491398712976764568919082 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.273 Order of pole = 8.962 TOP MAIN SOLVE Loop x[1] = 2.426 y[1] (analytic) = 0 y[1] (numeric) = 3.9731441398132074687378244843516 absolute error = 3.9731441398132074687378244843516 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.273 Order of pole = 8.96 TOP MAIN SOLVE Loop x[1] = 2.427 y[1] (analytic) = 0 y[1] (numeric) = 3.9747195061633049429947854233056 absolute error = 3.9747195061633049429947854233056 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.273 Order of pole = 8.958 TOP MAIN SOLVE Loop x[1] = 2.428 y[1] (analytic) = 0 y[1] (numeric) = 3.9762940479056617871637260656529 absolute error = 3.9762940479056617871637260656529 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.273 Order of pole = 8.955 TOP MAIN SOLVE Loop x[1] = 2.429 y[1] (analytic) = 0 y[1] (numeric) = 3.9778677647574982991020344501178 absolute error = 3.9778677647574982991020344501178 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.273 Order of pole = 8.953 TOP MAIN SOLVE Loop x[1] = 2.43 y[1] (analytic) = 0 y[1] (numeric) = 3.9794406564377559098709494099609 absolute error = 3.9794406564377559098709494099609 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.273 Order of pole = 8.951 TOP MAIN SOLVE Loop memory used=778.2MB, alloc=4.6MB, time=81.67 x[1] = 2.431 y[1] (analytic) = 0 y[1] (numeric) = 3.9810127226670960800434335191079 absolute error = 3.9810127226670960800434335191079 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.273 Order of pole = 8.949 TOP MAIN SOLVE Loop x[1] = 2.432 y[1] (analytic) = 0 y[1] (numeric) = 3.9825839631678991902717802451971 absolute error = 3.9825839631678991902717802451971 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.273 Order of pole = 8.946 TOP MAIN SOLVE Loop x[1] = 2.433 y[1] (analytic) = 0 y[1] (numeric) = 3.9841543776642634261296857278292 absolute error = 3.9841543776642634261296857278292 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.273 Order of pole = 8.944 TOP MAIN SOLVE Loop x[1] = 2.434 y[1] (analytic) = 0 y[1] (numeric) = 3.9857239658820036572435354759296 absolute error = 3.9857239658820036572435354759296 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.273 Order of pole = 8.942 TOP MAIN SOLVE Loop x[1] = 2.435 y[1] (analytic) = 0 y[1] (numeric) = 3.9872927275486503107276759846683 absolute error = 3.9872927275486503107276759846683 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.273 Order of pole = 8.939 TOP MAIN SOLVE Loop x[1] = 2.436 y[1] (analytic) = 0 y[1] (numeric) = 3.9888606623934482389384608099021 absolute error = 3.9888606623934482389384608099021 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.273 Order of pole = 8.937 TOP MAIN SOLVE Loop x[1] = 2.437 y[1] (analytic) = 0 y[1] (numeric) = 3.9904277701473555815618800066916 absolute error = 3.9904277701473555815618800066916 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.273 Order of pole = 8.934 TOP MAIN SOLVE Loop x[1] = 2.438 y[1] (analytic) = 0 y[1] (numeric) = 3.991994050543042622049601038186 absolute error = 3.991994050543042622049601038186 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.272 Order of pole = 8.932 TOP MAIN SOLVE Loop x[1] = 2.439 y[1] (analytic) = 0 y[1] (numeric) = 3.9935595033148906384182682921467 absolute error = 3.9935595033148906384182682921467 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.272 Order of pole = 8.929 TOP MAIN SOLVE Loop x[1] = 2.44 y[1] (analytic) = 0 y[1] (numeric) = 3.9951241281989907484269272046862 absolute error = 3.9951241281989907484269272046862 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.272 Order of pole = 8.927 TOP MAIN SOLVE Loop x[1] = 2.441 y[1] (analytic) = 0 y[1] (numeric) = 3.9966879249331427491474576845196 absolute error = 3.9966879249331427491474576845196 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.272 Order of pole = 8.924 TOP MAIN SOLVE Loop x[1] = 2.442 y[1] (analytic) = 0 y[1] (numeric) = 3.9982508932568539509429200562561 absolute error = 3.9982508932568539509429200562561 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.272 Order of pole = 8.922 TOP MAIN SOLVE Loop memory used=782.0MB, alloc=4.6MB, time=82.07 x[1] = 2.443 y[1] (analytic) = 0 y[1] (numeric) = 3.9998130329113380058687350980917 absolute error = 3.9998130329113380058687350980917 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.272 Order of pole = 8.919 TOP MAIN SOLVE Loop x[1] = 2.444 y[1] (analytic) = 0 y[1] (numeric) = 4.0013743436395137305116379377973 absolute error = 4.0013743436395137305116379377973 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.272 Order of pole = 8.916 TOP MAIN SOLVE Loop x[1] = 2.445 y[1] (analytic) = 0 y[1] (numeric) = 4.0029348251860039232813635912278 absolute error = 4.0029348251860039232813635912278 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.272 Order of pole = 8.914 TOP MAIN SOLVE Loop x[1] = 2.446 y[1] (analytic) = 0 y[1] (numeric) = 4.0044944772971341761700397798075 absolute error = 4.0044944772971341761700397798075 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.272 Order of pole = 8.911 TOP MAIN SOLVE Loop x[1] = 2.447 y[1] (analytic) = 0 y[1] (numeric) = 4.0060532997209316809942803476773 absolute error = 4.0060532997209316809942803476773 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.271 Order of pole = 8.908 TOP MAIN SOLVE Loop x[1] = 2.448 y[1] (analytic) = 0 y[1] (numeric) = 4.0076112922071240301349901155282 absolute error = 4.0076112922071240301349901155282 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.271 Order of pole = 8.906 TOP MAIN SOLVE Loop x[1] = 2.449 y[1] (analytic) = 0 y[1] (numeric) = 4.0091684545071380117899093566918 absolute error = 4.0091684545071380117899093566918 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.271 Order of pole = 8.903 TOP MAIN SOLVE Loop x[1] = 2.45 y[1] (analytic) = 0 y[1] (numeric) = 4.0107247863740983997539432619305 absolute error = 4.0107247863740983997539432619305 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.271 Order of pole = 8.9 TOP MAIN SOLVE Loop x[1] = 2.451 y[1] (analytic) = 0 y[1] (numeric) = 4.0122802875628267377423387726712 absolute error = 4.0122802875628267377423387726712 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.271 Order of pole = 8.897 TOP MAIN SOLVE Loop x[1] = 2.452 y[1] (analytic) = 0 y[1] (numeric) = 4.013834957829840118271788008272 absolute error = 4.013834957829840118271788008272 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.271 Order of pole = 8.894 TOP MAIN SOLVE Loop x[1] = 2.453 y[1] (analytic) = 0 y[1] (numeric) = 4.0153887969333499561145541914153 absolute error = 4.0153887969333499561145541914153 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.271 Order of pole = 8.892 TOP MAIN SOLVE Loop memory used=785.8MB, alloc=4.6MB, time=82.48 x[1] = 2.454 y[1] (analytic) = 0 y[1] (numeric) = 4.0169418046332607563407324870029 absolute error = 4.0169418046332607563407324870029 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.271 Order of pole = 8.889 TOP MAIN SOLVE Loop x[1] = 2.455 y[1] (analytic) = 0 y[1] (numeric) = 4.0184939806911688769637745141011 absolute error = 4.0184939806911688769637745141011 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.27 Order of pole = 8.886 TOP MAIN SOLVE Loop x[1] = 2.456 y[1] (analytic) = 0 y[1] (numeric) = 4.0200453248703612862044214676737 absolute error = 4.0200453248703612862044214676737 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.27 Order of pole = 8.883 TOP MAIN SOLVE Loop x[1] = 2.457 y[1] (analytic) = 0 y[1] (numeric) = 4.0215958369358143143882067971674 absolute error = 4.0215958369358143143882067971674 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.27 Order of pole = 8.88 TOP MAIN SOLVE Loop x[1] = 2.458 y[1] (analytic) = 0 y[1] (numeric) = 4.0231455166541924004917052326027 absolute error = 4.0231455166541924004917052326027 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.27 Order of pole = 8.877 TOP MAIN SOLVE Loop x[1] = 2.459 y[1] (analytic) = 0 y[1] (numeric) = 4.0246943637938468333527206257991 absolute error = 4.0246943637938468333527206257991 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.27 Order of pole = 8.874 TOP MAIN SOLVE Loop x[1] = 2.46 y[1] (analytic) = 0 y[1] (numeric) = 4.0262423781248144875596205848596 absolute error = 4.0262423781248144875596205848596 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.27 Order of pole = 8.871 TOP MAIN SOLVE Loop x[1] = 2.461 y[1] (analytic) = 0 y[1] (numeric) = 4.0277895594188165540350412241785 absolute error = 4.0277895594188165540350412241785 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.27 Order of pole = 8.868 TOP MAIN SOLVE Loop x[1] = 2.462 y[1] (analytic) = 0 y[1] (numeric) = 4.0293359074492572653292005301587 absolute error = 4.0293359074492572653292005301587 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.269 Order of pole = 8.865 TOP MAIN SOLVE Loop x[1] = 2.463 y[1] (analytic) = 0 y[1] (numeric) = 4.0308814219912226156380738546617 absolute error = 4.0308814219912226156380738546617 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.269 Order of pole = 8.862 TOP MAIN SOLVE Loop x[1] = 2.464 y[1] (analytic) = 0 y[1] (numeric) = 4.032426102821479075561699894096 absolute error = 4.032426102821479075561699894096 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.269 Order of pole = 8.859 TOP MAIN SOLVE Loop x[1] = 2.465 y[1] (analytic) = 0 y[1] (numeric) = 4.033969949718472301617900192128 absolute error = 4.033969949718472301617900192128 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.269 Order of pole = 8.856 memory used=789.6MB, alloc=4.6MB, time=82.89 TOP MAIN SOLVE Loop x[1] = 2.466 y[1] (analytic) = 0 y[1] (numeric) = 4.0355129624623258405267097184008 absolute error = 4.0355129624623258405267097184008 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.269 Order of pole = 8.853 TOP MAIN SOLVE Loop x[1] = 2.467 y[1] (analytic) = 0 y[1] (numeric) = 4.0370551408348398282808304245214 absolute error = 4.0370551408348398282808304245214 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.269 Order of pole = 8.85 TOP MAIN SOLVE Loop x[1] = 2.468 y[1] (analytic) = 0 y[1] (numeric) = 4.0385964846194896840174338620671 absolute error = 4.0385964846194896840174338620671 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.269 Order of pole = 8.846 TOP MAIN SOLVE Loop x[1] = 2.469 y[1] (analytic) = 0 y[1] (numeric) = 4.0401369936014247987066529656109 absolute error = 4.0401369936014247987066529656109 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.268 Order of pole = 8.843 TOP MAIN SOLVE Loop x[1] = 2.47 y[1] (analytic) = 0 y[1] (numeric) = 4.0416766675674672186721169569263 absolute error = 4.0416766675674672186721169569263 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.268 Order of pole = 8.84 TOP MAIN SOLVE Loop x[1] = 2.471 y[1] (analytic) = 0 y[1] (numeric) = 4.0432155063061103239588970147475 absolute error = 4.0432155063061103239588970147475 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.268 Order of pole = 8.837 TOP MAIN SOLVE Loop x[1] = 2.472 y[1] (analytic) = 0 y[1] (numeric) = 4.0447535096075175015642438778899 absolute error = 4.0447535096075175015642438778899 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.268 Order of pole = 8.834 TOP MAIN SOLVE Loop x[1] = 2.473 y[1] (analytic) = 0 y[1] (numeric) = 4.046290677263520813546511908325 absolute error = 4.046290677263520813546511908325 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.268 Order of pole = 8.831 TOP MAIN SOLVE Loop x[1] = 2.474 y[1] (analytic) = 0 y[1] (numeric) = 4.047827009067619660027677335114 absolute error = 4.047827009067619660027677335114 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.268 Order of pole = 8.827 TOP MAIN SOLVE Loop x[1] = 2.475 y[1] (analytic) = 0 y[1] (numeric) = 4.0493625048149794371048714300894 absolute error = 4.0493625048149794371048714300894 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.267 Order of pole = 8.824 TOP MAIN SOLVE Loop x[1] = 2.476 y[1] (analytic) = 0 y[1] (numeric) = 4.0508971643024301896863622319934 absolute error = 4.0508971643024301896863622319934 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.267 Order of pole = 8.821 TOP MAIN SOLVE Loop memory used=793.4MB, alloc=4.6MB, time=83.29 x[1] = 2.477 y[1] (analytic) = 0 y[1] (numeric) = 4.0524309873284652592674311375994 absolute error = 4.0524309873284652592674311375994 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.267 Order of pole = 8.818 TOP MAIN SOLVE Loop x[1] = 2.478 y[1] (analytic) = 0 y[1] (numeric) = 4.0539639736932399266616032163159 absolute error = 4.0539639736932399266616032163159 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.267 Order of pole = 8.814 TOP MAIN SOLVE Loop x[1] = 2.479 y[1] (analytic) = 0 y[1] (numeric) = 4.0554961231985700497027024790722 absolute error = 4.0554961231985700497027024790722 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.267 Order of pole = 8.811 TOP MAIN SOLVE Loop x[1] = 2.48 y[1] (analytic) = 0 y[1] (numeric) = 4.0570274356479306959332155430711 absolute error = 4.0570274356479306959332155430711 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.267 Order of pole = 8.808 TOP MAIN SOLVE Loop x[1] = 2.481 y[1] (analytic) = 0 y[1] (numeric) = 4.0585579108464547702944591814416 absolute error = 4.0585579108464547702944591814416 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.266 Order of pole = 8.805 TOP MAIN SOLVE Loop x[1] = 2.482 y[1] (analytic) = 0 y[1] (numeric) = 4.0600875486009316378340591310977 absolute error = 4.0600875486009316378340591310977 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.266 Order of pole = 8.801 TOP MAIN SOLVE Loop x[1] = 2.483 y[1] (analytic) = 0 y[1] (numeric) = 4.0616163487198057414462592533839 absolute error = 4.0616163487198057414462592533839 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.266 Order of pole = 8.798 TOP MAIN SOLVE Loop x[1] = 2.484 y[1] (analytic) = 0 y[1] (numeric) = 4.063144311013175214660591700537 absolute error = 4.063144311013175214660591700537 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.266 Order of pole = 8.795 TOP MAIN SOLVE Loop x[1] = 2.485 y[1] (analytic) = 0 y[1] (numeric) = 4.0646714352927904894944501367899 absolute error = 4.0646714352927904894944501367899 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.266 Order of pole = 8.791 TOP MAIN SOLVE Loop x[1] = 2.486 y[1] (analytic) = 0 y[1] (numeric) = 4.0661977213720528993851192962696 absolute error = 4.0661977213720528993851192962696 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.266 Order of pole = 8.788 TOP MAIN SOLVE Loop x[1] = 2.487 y[1] (analytic) = 0 y[1] (numeric) = 4.0677231690660132772168252308711 absolute error = 4.0677231690660132772168252308711 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.265 Order of pole = 8.785 TOP MAIN SOLVE Loop memory used=797.3MB, alloc=4.6MB, time=83.70 x[1] = 2.488 y[1] (analytic) = 0 y[1] (numeric) = 4.0692477781913705484583815102056 absolute error = 4.0692477781913705484583815102056 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.265 Order of pole = 8.781 TOP MAIN SOLVE Loop x[1] = 2.489 y[1] (analytic) = 0 y[1] (numeric) = 4.0707715485664703194270173827109 absolute error = 4.0707715485664703194270173827109 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.265 Order of pole = 8.778 TOP MAIN SOLVE Loop x[1] = 2.49 y[1] (analytic) = 0 y[1] (numeric) = 4.0722944800113034606939844922504 absolute error = 4.0722944800113034606939844922504 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.265 Order of pole = 8.775 TOP MAIN SOLVE Loop x[1] = 2.491 y[1] (analytic) = 0 y[1] (numeric) = 4.0738165723475046856475491682114 absolute error = 4.0738165723475046856475491682114 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.265 Order of pole = 8.771 TOP MAIN SOLVE Loop x[1] = 2.492 y[1] (analytic) = 0 y[1] (numeric) = 4.0753378253983511242289875694213 absolute error = 4.0753378253983511242289875694213 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.265 Order of pole = 8.768 TOP MAIN SOLVE Loop x[1] = 2.493 y[1] (analytic) = 0 y[1] (numeric) = 4.0768582389887608918572110633313 absolute error = 4.0768582389887608918572110633313 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.264 Order of pole = 8.765 TOP MAIN SOLVE Loop x[1] = 2.494 y[1] (analytic) = 0 y[1] (numeric) = 4.0783778129452916535576591620526 absolute error = 4.0783778129452916535576591620526 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.264 Order of pole = 8.761 TOP MAIN SOLVE Loop x[1] = 2.495 y[1] (analytic) = 0 y[1] (numeric) = 4.079896547096139183311107116174 absolute error = 4.079896547096139183311107116174 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.264 Order of pole = 8.758 TOP MAIN SOLVE Loop x[1] = 2.496 y[1] (analytic) = 0 y[1] (numeric) = 4.0814144412711359186380448860276 absolute error = 4.0814144412711359186380448860276 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.264 Order of pole = 8.755 TOP MAIN SOLVE Loop x[1] = 2.497 y[1] (analytic) = 0 y[1] (numeric) = 4.0829314953017495104342936684033 absolute error = 4.0829314953017495104342936684033 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.264 Order of pole = 8.751 TOP MAIN SOLVE Loop x[1] = 2.498 y[1] (analytic) = 0 y[1] (numeric) = 4.084447709021081368073535454842 absolute error = 4.084447709021081368073535454842 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.263 Order of pole = 8.748 TOP MAIN SOLVE Loop x[1] = 2.499 y[1] (analytic) = 0 y[1] (numeric) = 4.0859630822638651997924402357557 absolute error = 4.0859630822638651997924402357557 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.263 Order of pole = 8.745 TOP MAIN SOLVE Loop memory used=801.1MB, alloc=4.6MB, time=84.10 x[1] = 2.5 y[1] (analytic) = 0 y[1] (numeric) = 4.0874776148664655483740844429412 absolute error = 4.0874776148664655483740844429412 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.263 Order of pole = 8.741 TOP MAIN SOLVE Loop x[1] = 2.501 y[1] (analytic) = 0 y[1] (numeric) = 4.0889913066668763221453630417669 absolute error = 4.0889913066668763221453630417669 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.263 Order of pole = 8.738 TOP MAIN SOLVE Loop x[1] = 2.502 y[1] (analytic) = 0 y[1] (numeric) = 4.0905041575047193213041063436335 absolute error = 4.0905041575047193213041063436335 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.263 Order of pole = 8.735 TOP MAIN SOLVE Loop x[1] = 2.503 y[1] (analytic) = 0 y[1] (numeric) = 4.0920161672212427595916211094381 absolute error = 4.0920161672212427595916211094381 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.263 Order of pole = 8.732 TOP MAIN SOLVE Loop x[1] = 2.504 y[1] (analytic) = 0 y[1] (numeric) = 4.0935273356593197813263838559223 absolute error = 4.0935273356593197813263838559223 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.262 Order of pole = 8.728 TOP MAIN SOLVE Loop x[1] = 2.505 y[1] (analytic) = 0 y[1] (numeric) = 4.095037662663446973814622459164 absolute error = 4.095037662663446973814622459164 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.262 Order of pole = 8.725 TOP MAIN SOLVE Loop x[1] = 2.506 y[1] (analytic) = 0 y[1] (numeric) = 4.0965471480797428751535301732958 absolute error = 4.0965471480797428751535301732958 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.262 Order of pole = 8.722 TOP MAIN SOLVE Loop x[1] = 2.507 y[1] (analytic) = 0 y[1] (numeric) = 4.0980557917559464774428640480108 absolute error = 4.0980557917559464774428640480108 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.262 Order of pole = 8.718 TOP MAIN SOLVE Loop x[1] = 2.508 y[1] (analytic) = 0 y[1] (numeric) = 4.0995635935414157254206874357649 absolute error = 4.0995635935414157254206874357649 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.262 Order of pole = 8.715 TOP MAIN SOLVE Loop x[1] = 2.509 y[1] (analytic) = 0 y[1] (numeric) = 4.1010705532871260105390238290218 absolute error = 4.1010705532871260105390238290218 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.262 Order of pole = 8.712 TOP MAIN SOLVE Loop x[1] = 2.51 y[1] (analytic) = 0 y[1] (numeric) = 4.1025766708456686604951966596311 absolute error = 4.1025766708456686604951966596311 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.261 Order of pole = 8.708 TOP MAIN SOLVE Loop memory used=804.9MB, alloc=4.6MB, time=84.51 x[1] = 2.511 y[1] (analytic) = 0 y[1] (numeric) = 4.1040819460712494242346369266998 absolute error = 4.1040819460712494242346369266998 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.261 Order of pole = 8.705 TOP MAIN SOLVE Loop x[1] = 2.512 y[1] (analytic) = 0 y[1] (numeric) = 4.105586378819686952440947596336 absolute error = 4.105586378819686952440947596336 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.261 Order of pole = 8.702 TOP MAIN SOLVE Loop x[1] = 2.513 y[1] (analytic) = 0 y[1] (numeric) = 4.1070899689484112735290206366351 absolute error = 4.1070899689484112735290206366351 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.261 Order of pole = 8.699 TOP MAIN SOLVE Loop x[1] = 2.514 y[1] (analytic) = 0 y[1] (numeric) = 4.1085927163164622651570093144668 absolute error = 4.1085927163164622651570093144668 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.261 Order of pole = 8.695 TOP MAIN SOLVE Loop x[1] = 2.515 y[1] (analytic) = 0 y[1] (numeric) = 4.1100946207844881212729649872341 absolute error = 4.1100946207844881212729649872341 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.261 Order of pole = 8.692 TOP MAIN SOLVE Loop x[1] = 2.516 y[1] (analytic) = 0 y[1] (numeric) = 4.111595682214743814711954073038 absolute error = 4.111595682214743814711954073038 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.26 Order of pole = 8.689 TOP MAIN SOLVE Loop x[1] = 2.517 y[1] (analytic) = 0 y[1] (numeric) = 4.1130959004710895553594771768296 absolute error = 4.1130959004710895553594771768296 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.26 Order of pole = 8.686 TOP MAIN SOLVE Loop x[1] = 2.518 y[1] (analytic) = 0 y[1] (numeric) = 4.11459527541898924389701848839 absolute error = 4.11459527541898924389701848839 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.26 Order of pole = 8.683 TOP MAIN SOLVE Loop x[1] = 2.519 y[1] (analytic) = 0 y[1] (numeric) = 4.1160938069255089211455595505854 absolute error = 4.1160938069255089211455595505854 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.26 Order of pole = 8.679 TOP MAIN SOLVE Loop x[1] = 2.52 y[1] (analytic) = 0 y[1] (numeric) = 4.1175914948593152130228973235317 absolute error = 4.1175914948593152130228973235317 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.26 Order of pole = 8.676 TOP MAIN SOLVE Loop x[1] = 2.521 y[1] (analytic) = 0 y[1] (numeric) = 4.1190883390906737711306121423076 absolute error = 4.1190883390906737711306121423076 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.26 Order of pole = 8.673 TOP MAIN SOLVE Loop x[1] = 2.522 y[1] (analytic) = 0 y[1] (numeric) = 4.120584339491447708986536682916 absolute error = 4.120584339491447708986536682916 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.26 Order of pole = 8.67 TOP MAIN SOLVE Loop memory used=808.7MB, alloc=4.6MB, time=84.91 x[1] = 2.523 y[1] (analytic) = 0 y[1] (numeric) = 4.1220794959350960339185824135467 absolute error = 4.1220794959350960339185824135467 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.259 Order of pole = 8.667 TOP MAIN SOLVE Loop x[1] = 2.524 y[1] (analytic) = 0 y[1] (numeric) = 4.1235738082966720746357852160823 absolute error = 4.1235738082966720746357852160823 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.259 Order of pole = 8.664 TOP MAIN SOLVE Loop x[1] = 2.525 y[1] (analytic) = 0 y[1] (numeric) = 4.1250672764528219044924369164583 absolute error = 4.1250672764528219044924369164583 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.259 Order of pole = 8.66 TOP MAIN SOLVE Loop x[1] = 2.526 y[1] (analytic) = 0 y[1] (numeric) = 4.1265599002817827604611743621739 absolute error = 4.1265599002817827604611743621739 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.259 Order of pole = 8.657 TOP MAIN SOLVE Loop x[1] = 2.527 y[1] (analytic) = 0 y[1] (numeric) = 4.128051679663381457830902431207 absolute error = 4.128051679663381457830902431207 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.259 Order of pole = 8.654 TOP MAIN SOLVE Loop x[1] = 2.528 y[1] (analytic) = 0 y[1] (numeric) = 4.1295426144790328006454319490556 absolute error = 4.1295426144790328006454319490556 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.259 Order of pole = 8.651 TOP MAIN SOLVE Loop x[1] = 2.529 y[1] (analytic) = 0 y[1] (numeric) = 4.1310327046117379878987179298576 absolute error = 4.1310327046117379878987179298576 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.259 Order of pole = 8.648 TOP MAIN SOLVE Loop x[1] = 2.53 y[1] (analytic) = 0 y[1] (numeric) = 4.1325219499460830155025878437863 absolute error = 4.1325219499460830155025878437863 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.258 Order of pole = 8.645 TOP MAIN SOLVE Loop x[1] = 2.531 y[1] (analytic) = 0 y[1] (numeric) = 4.1340103503682370740428537464241 absolute error = 4.1340103503682370740428537464241 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.258 Order of pole = 8.642 TOP MAIN SOLVE Loop x[1] = 2.532 y[1] (analytic) = 0 y[1] (numeric) = 4.1354979057659509423397060868406 absolute error = 4.1354979057659509423397060868406 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.258 Order of pole = 8.639 TOP MAIN SOLVE Loop x[1] = 2.533 y[1] (analytic) = 0 y[1] (numeric) = 4.1369846160285553768282908398962 absolute error = 4.1369846160285553768282908398962 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.258 Order of pole = 8.636 TOP MAIN SOLVE Loop memory used=812.5MB, alloc=4.6MB, time=85.32 x[1] = 2.534 y[1] (analytic) = 0 y[1] (numeric) = 4.1384704810469594967753752851121 absolute error = 4.1384704810469594967753752851121 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.258 Order of pole = 8.633 TOP MAIN SOLVE Loop x[1] = 2.535 y[1] (analytic) = 0 y[1] (numeric) = 4.139955500713649165348011279554 absolute error = 4.139955500713649165348011279554 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.258 Order of pole = 8.63 TOP MAIN SOLVE Loop x[1] = 2.536 y[1] (analytic) = 0 y[1] (numeric) = 4.1414396749226853665501082458232 absolute error = 4.1414396749226853665501082458232 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.258 Order of pole = 8.627 TOP MAIN SOLVE Loop x[1] = 2.537 y[1] (analytic) = 0 y[1] (numeric) = 4.1429230035697025780428313187013 absolute error = 4.1429230035697025780428313187013 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.258 Order of pole = 8.625 TOP MAIN SOLVE Loop x[1] = 2.538 y[1] (analytic) = 0 y[1] (numeric) = 4.1444054865519071398647431655099 absolute error = 4.1444054865519071398647431655099 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.257 Order of pole = 8.622 TOP MAIN SOLVE Loop x[1] = 2.539 y[1] (analytic) = 0 y[1] (numeric) = 4.1458871237680756190676109160901 absolute error = 4.1458871237680756190676109160901 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.257 Order of pole = 8.619 TOP MAIN SOLVE Loop x[1] = 2.54 y[1] (analytic) = 0 y[1] (numeric) = 4.1473679151185531702838024087439 absolute error = 4.1473679151185531702838024087439 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.257 Order of pole = 8.616 TOP MAIN SOLVE Loop x[1] = 2.541 y[1] (analytic) = 0 y[1] (numeric) = 4.148847860505251892241198578774 absolute error = 4.148847860505251892241198578774 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.257 Order of pole = 8.613 TOP MAIN SOLVE Loop x[1] = 2.542 y[1] (analytic) = 0 y[1] (numeric) = 4.1503269598316491802415512866783 absolute error = 4.1503269598316491802415512866783 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.257 Order of pole = 8.61 TOP MAIN SOLVE Loop x[1] = 2.543 y[1] (analytic) = 0 y[1] (numeric) = 4.1518052130027860746182182038725 absolute error = 4.1518052130027860746182182038725 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.257 Order of pole = 8.608 TOP MAIN SOLVE Loop x[1] = 2.544 y[1] (analytic) = 0 y[1] (numeric) = 4.1532826199252656051892085452926 absolute error = 4.1532826199252656051892085452926 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.257 Order of pole = 8.605 TOP MAIN SOLVE Loop x[1] = 2.545 y[1] (analytic) = 0 y[1] (numeric) = 4.1547591805072511317214754606471 absolute error = 4.1547591805072511317214754606471 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.257 Order of pole = 8.602 memory used=816.3MB, alloc=4.6MB, time=85.72 TOP MAIN SOLVE Loop x[1] = 2.546 y[1] (analytic) = 0 y[1] (numeric) = 4.1562348946584646804223927697133 absolute error = 4.1562348946584646804223927697133 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.257 Order of pole = 8.6 TOP MAIN SOLVE Loop x[1] = 2.547 y[1] (analytic) = 0 y[1] (numeric) = 4.1577097622901852764743554521839 absolute error = 4.1577097622901852764743554521839 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.256 Order of pole = 8.597 TOP MAIN SOLVE Loop x[1] = 2.548 y[1] (analytic) = 0 y[1] (numeric) = 4.1591837833152472726284448794378 absolute error = 4.1591837833152472726284448794378 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.256 Order of pole = 8.594 TOP MAIN SOLVE Loop x[1] = 2.549 y[1] (analytic) = 0 y[1] (numeric) = 4.1606569576480386738731012045154 absolute error = 4.1606569576480386738731012045154 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.256 Order of pole = 8.592 TOP MAIN SOLVE Loop x[1] = 2.55 y[1] (analytic) = 0 y[1] (numeric) = 4.1621292852044994581937466078012 absolute error = 4.1621292852044994581937466078012 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.256 Order of pole = 8.589 TOP MAIN SOLVE Loop x[1] = 2.551 y[1] (analytic) = 0 y[1] (numeric) = 4.1636007659021198934393042297295 absolute error = 4.1636007659021198934393042297295 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.256 Order of pole = 8.587 TOP MAIN SOLVE Loop x[1] = 2.552 y[1] (analytic) = 0 y[1] (numeric) = 4.1650713996599388503115586085243 absolute error = 4.1650713996599388503115586085243 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.256 Order of pole = 8.584 TOP MAIN SOLVE Loop x[1] = 2.553 y[1] (analytic) = 0 y[1] (numeric) = 4.1665411863985421114933042808324 absolute error = 4.1665411863985421114933042808324 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.256 Order of pole = 8.581 TOP MAIN SOLVE Loop x[1] = 2.554 y[1] (analytic) = 0 y[1] (numeric) = 4.1680101260400606769312298964029 absolute error = 4.1680101260400606769312298964029 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.256 Order of pole = 8.579 TOP MAIN SOLVE Loop x[1] = 2.555 y[1] (analytic) = 0 y[1] (numeric) = 4.169478218508169065289485744986 absolute error = 4.169478218508169065289485744986 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.256 Order of pole = 8.577 TOP MAIN SOLVE Loop x[1] = 2.556 y[1] (analytic) = 0 y[1] (numeric) = 4.1709454637280836115898829946577 absolute error = 4.1709454637280836115898829946577 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.256 Order of pole = 8.574 TOP MAIN SOLVE Loop memory used=820.1MB, alloc=4.6MB, time=86.13 x[1] = 2.557 y[1] (analytic) = 0 y[1] (numeric) = 4.1724118616265607610546731961138 absolute error = 4.1724118616265607610546731961138 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.256 Order of pole = 8.572 TOP MAIN SOLVE Loop x[1] = 2.558 y[1] (analytic) = 0 y[1] (numeric) = 4.1738774121318953591678567174016 absolute error = 4.1738774121318953591678567174016 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.256 Order of pole = 8.569 TOP MAIN SOLVE Loop x[1] = 2.559 y[1] (analytic) = 0 y[1] (numeric) = 4.1753421151739189379709687383658 absolute error = 4.1753421151739189379709687383658 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.256 Order of pole = 8.567 TOP MAIN SOLVE Loop x[1] = 2.56 y[1] (analytic) = 0 y[1] (numeric) = 4.1768059706839979986092912540658 absolute error = 4.1768059706839979986092912540658 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.565 TOP MAIN SOLVE Loop x[1] = 2.561 y[1] (analytic) = 0 y[1] (numeric) = 4.1782689785950322901444392118653 absolute error = 4.1782689785950322901444392118653 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.562 TOP MAIN SOLVE Loop x[1] = 2.562 y[1] (analytic) = 0 y[1] (numeric) = 4.1797311388414530846492684381021 absolute error = 4.1797311388414530846492684381021 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.56 TOP MAIN SOLVE Loop x[1] = 2.563 y[1] (analytic) = 0 y[1] (numeric) = 4.1811924513592214486010523975054 absolute error = 4.1811924513592214486010523975054 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.558 TOP MAIN SOLVE Loop x[1] = 2.564 y[1] (analytic) = 0 y[1] (numeric) = 4.1826529160858265105888740721408 absolute error = 4.1826529160858265105888740721408 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.556 TOP MAIN SOLVE Loop x[1] = 2.565 y[1] (analytic) = 0 y[1] (numeric) = 4.1841125329602837253511783469244 absolute error = 4.1841125329602837253511783469244 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.554 TOP MAIN SOLVE Loop x[1] = 2.566 y[1] (analytic) = 0 y[1] (numeric) = 4.1855713019231331341594292459585 absolute error = 4.1855713019231331341594292459585 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.551 TOP MAIN SOLVE Loop x[1] = 2.567 y[1] (analytic) = 0 y[1] (numeric) = 4.1870292229164376215638151784026 absolute error = 4.1870292229164376215638151784026 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.549 TOP MAIN SOLVE Loop memory used=824.0MB, alloc=4.6MB, time=86.53 x[1] = 2.568 y[1] (analytic) = 0 y[1] (numeric) = 4.1884862958837811685169440246032 absolute error = 4.1884862958837811685169440246032 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.547 TOP MAIN SOLVE Loop x[1] = 2.569 y[1] (analytic) = 0 y[1] (numeric) = 4.1899425207702671018914684230715 absolute error = 4.1899425207702671018914684230715 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.545 TOP MAIN SOLVE Loop x[1] = 2.57 y[1] (analytic) = 0 y[1] (numeric) = 4.1913978975225163404075800069218 absolute error = 4.1913978975225163404075800069218 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.543 TOP MAIN SOLVE Loop x[1] = 2.571 y[1] (analytic) = 0 y[1] (numeric) = 4.1928524260886656369863095848682 absolute error = 4.1928524260886656369863095848682 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.541 TOP MAIN SOLVE Loop x[1] = 2.572 y[1] (analytic) = 0 y[1] (numeric) = 4.194306106418365817544568367134 absolute error = 4.194306106418365817544568367134 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.539 TOP MAIN SOLVE Loop x[1] = 2.573 y[1] (analytic) = 0 y[1] (numeric) = 4.1957589384627800162478633009603 absolute error = 4.1957589384627800162478633009603 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.537 TOP MAIN SOLVE Loop x[1] = 2.574 y[1] (analytic) = 0 y[1] (numeric) = 4.1972109221745819072366174041206 absolute error = 4.1972109221745819072366174041206 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.536 TOP MAIN SOLVE Loop x[1] = 2.575 y[1] (analytic) = 0 y[1] (numeric) = 4.198662057507953932842023668262 absolute error = 4.198662057507953932842023668262 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.534 TOP MAIN SOLVE Loop x[1] = 2.576 y[1] (analytic) = 0 y[1] (numeric) = 4.2001123444185855283073586473168 absolute error = 4.2001123444185855283073586473168 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.532 TOP MAIN SOLVE Loop x[1] = 2.577 y[1] (analytic) = 0 y[1] (numeric) = 4.2015617828636713430306792499713 absolute error = 4.2015617828636713430306792499713 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.53 TOP MAIN SOLVE Loop x[1] = 2.578 y[1] (analytic) = 0 y[1] (numeric) = 4.2030103728019094583448235195517 absolute error = 4.2030103728019094583448235195517 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.528 TOP MAIN SOLVE Loop x[1] = 2.579 y[1] (analytic) = 0 y[1] (numeric) = 4.2044581141934996018506333100119 absolute error = 4.2044581141934996018506333100119 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.527 TOP MAIN SOLVE Loop memory used=827.8MB, alloc=4.6MB, time=86.94 x[1] = 2.58 y[1] (analytic) = 0 y[1] (numeric) = 4.205905007000141358319313753294 absolute error = 4.205905007000141358319313753294 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.525 TOP MAIN SOLVE Loop x[1] = 2.581 y[1] (analytic) = 0 y[1] (numeric) = 4.2073510511850323771798412614979 absolute error = 4.2073510511850323771798412614979 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.523 TOP MAIN SOLVE Loop x[1] = 2.582 y[1] (analytic) = 0 y[1] (numeric) = 4.2087962467128665766073285173636 absolute error = 4.2087962467128665766073285173636 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.522 TOP MAIN SOLVE Loop x[1] = 2.583 y[1] (analytic) = 0 y[1] (numeric) = 4.2102405935498323442282514788514 absolute error = 4.2102405935498323442282514788514 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.52 TOP MAIN SOLVE Loop x[1] = 2.584 y[1] (analytic) = 0 y[1] (numeric) = 4.2116840916636107344584398584255 absolute error = 4.2116840916636107344584398584255 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.519 TOP MAIN SOLVE Loop x[1] = 2.585 y[1] (analytic) = 0 y[1] (numeric) = 4.2131267410233736624897288353274 absolute error = 4.2131267410233736624897288353274 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.517 TOP MAIN SOLVE Loop x[1] = 2.586 y[1] (analytic) = 0 y[1] (numeric) = 4.2145685415997820949411659199857 absolute error = 4.2145685415997820949411659199857 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.516 TOP MAIN SOLVE Loop x[1] = 2.587 y[1] (analytic) = 0 y[1] (numeric) = 4.2160094933649842371906629140756 absolute error = 4.2160094933649842371906629140756 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.514 TOP MAIN SOLVE Loop x[1] = 2.588 y[1] (analytic) = 0 y[1] (numeric) = 4.2174495962926137174029787979377 absolute error = 4.2174495962926137174029787979377 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.513 TOP MAIN SOLVE Loop x[1] = 2.589 y[1] (analytic) = 0 y[1] (numeric) = 4.2188888503577877672699151294166 absolute error = 4.2188888503577877672699151294166 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.511 TOP MAIN SOLVE Loop x[1] = 2.59 y[1] (analytic) = 0 y[1] (numeric) = 4.2203272555371053994786011550128 absolute error = 4.2203272555371053994786011550128 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.51 TOP MAIN SOLVE Loop memory used=831.6MB, alloc=4.6MB, time=87.34 x[1] = 2.591 y[1] (analytic) = 0 y[1] (numeric) = 4.2217648118086455819237413158863 absolute error = 4.2217648118086455819237413158863 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.255 Order of pole = 8.509 TOP MAIN SOLVE Loop x[1] = 2.592 y[1] (analytic) = 0 y[1] (numeric) = 4.2232015191519654086796931780299 absolute error = 4.2232015191519654086796931780299 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.256 Order of pole = 8.507 TOP MAIN SOLVE Loop x[1] = 2.593 y[1] (analytic) = 0 y[1] (numeric) = 4.2246373775480982677482390281831 absolute error = 4.2246373775480982677482390281831 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.256 Order of pole = 8.506 TOP MAIN SOLVE Loop x[1] = 2.594 y[1] (analytic) = 0 y[1] (numeric) = 4.2260723869795520055979094551048 absolute error = 4.2260723869795520055979094551048 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.256 Order of pole = 8.505 TOP MAIN SOLVE Loop x[1] = 2.595 y[1] (analytic) = 0 y[1] (numeric) = 4.2275065474303070885107121800073 absolute error = 4.2275065474303070885107121800073 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.256 Order of pole = 8.504 TOP MAIN SOLVE Loop x[1] = 2.596 y[1] (analytic) = 0 y[1] (numeric) = 4.2289398588858147607521142105969 absolute error = 4.2289398588858147607521142105969 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.256 Order of pole = 8.503 TOP MAIN SOLVE Loop x[1] = 2.597 y[1] (analytic) = 0 y[1] (numeric) = 4.2303723213329951995801200706125 absolute error = 4.2303723213329951995801200706125 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.256 Order of pole = 8.502 TOP MAIN SOLVE Loop x[1] = 2.598 y[1] (analytic) = 0 y[1] (numeric) = 4.2318039347602356671092834013299 absolute error = 4.2318039347602356671092834013299 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.256 Order of pole = 8.501 TOP MAIN SOLVE Loop x[1] = 2.599 y[1] (analytic) = 0 y[1] (numeric) = 4.2332346991573886590454836435458 absolute error = 4.2332346991573886590454836435458 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.256 Order of pole = 8.5 TOP MAIN SOLVE Loop x[1] = 2.6 y[1] (analytic) = 0 y[1] (numeric) = 4.2346646145157700503072937884091 absolute error = 4.2346646145157700503072937884091 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.256 Order of pole = 8.499 TOP MAIN SOLVE Loop x[1] = 2.601 y[1] (analytic) = 0 y[1] (numeric) = 4.2360936808281572375497593334628 absolute error = 4.2360936808281572375497593334628 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.256 Order of pole = 8.498 TOP MAIN SOLVE Loop x[1] = 2.602 y[1] (analytic) = 0 y[1] (numeric) = 4.2375218980887872786064025967403 absolute error = 4.2375218980887872786064025967403 relative error = -1 % Correct digits = -1 h = 0.001 memory used=835.4MB, alloc=4.6MB, time=87.74 Complex estimate of poles used for equation 1 Radius of convergence = 4.256 Order of pole = 8.497 TOP MAIN SOLVE Loop x[1] = 2.603 y[1] (analytic) = 0 y[1] (numeric) = 4.2389492662933550288652604270624 absolute error = 4.2389492662933550288652604270624 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.256 Order of pole = 8.496 TOP MAIN SOLVE Loop x[1] = 2.604 y[1] (analytic) = 0 y[1] (numeric) = 4.2403757854390112745947571031477 absolute error = 4.2403757854390112745947571031477 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.257 Order of pole = 8.495 TOP MAIN SOLVE Loop x[1] = 2.605 y[1] (analytic) = 0 y[1] (numeric) = 4.2418014555243608632352078381214 absolute error = 4.2418014555243608632352078381214 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.257 Order of pole = 8.494 TOP MAIN SOLVE Loop x[1] = 2.606 y[1] (analytic) = 0 y[1] (numeric) = 4.2432262765494608306717417998266 absolute error = 4.2432262765494608306717417998266 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.257 Order of pole = 8.493 TOP MAIN SOLVE Loop x[1] = 2.607 y[1] (analytic) = 0 y[1] (numeric) = 4.2446502485158185255044269213561 absolute error = 4.2446502485158185255044269213561 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.257 Order of pole = 8.493 TOP MAIN SOLVE Loop x[1] = 2.608 y[1] (analytic) = 0 y[1] (numeric) = 4.2460733714263897303313720107693 absolute error = 4.2460733714263897303313720107693 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.257 Order of pole = 8.492 TOP MAIN SOLVE Loop x[1] = 2.609 y[1] (analytic) = 0 y[1] (numeric) = 4.2474956452855767800605747743911 absolute error = 4.2474956452855767800605747743911 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.257 Order of pole = 8.491 TOP MAIN SOLVE Loop x[1] = 2.61 y[1] (analytic) = 0 y[1] (numeric) = 4.2489170700992266772662773447474 absolute error = 4.2489170700992266772662773447474 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.257 Order of pole = 8.491 TOP MAIN SOLVE Loop x[1] = 2.611 y[1] (analytic) = 0 y[1] (numeric) = 4.250337645874629204605583752428 absolute error = 4.250337645874629204605583752428 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.257 Order of pole = 8.49 TOP MAIN SOLVE Loop x[1] = 2.612 y[1] (analytic) = 0 y[1] (numeric) = 4.2517573726205150343110865013248 absolute error = 4.2517573726205150343110865013248 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.258 Order of pole = 8.489 TOP MAIN SOLVE Loop x[1] = 2.613 y[1] (analytic) = 0 y[1] (numeric) = 4.2531762503470538347752419991273 absolute error = 4.2531762503470538347752419991273 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.258 Order of pole = 8.489 TOP MAIN SOLVE Loop memory used=839.2MB, alloc=4.6MB, time=88.15 x[1] = 2.614 y[1] (analytic) = 0 y[1] (numeric) = 4.2545942790658523742422270600112 absolute error = 4.2545942790658523742422270600112 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.258 Order of pole = 8.488 TOP MAIN SOLVE Loop x[1] = 2.615 y[1] (analytic) = 0 y[1] (numeric) = 4.256011458789952621623001034485 absolute error = 4.256011458789952621623001034485 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.258 Order of pole = 8.488 TOP MAIN SOLVE Loop x[1] = 2.616 y[1] (analytic) = 0 y[1] (numeric) = 4.2574277895338298444492903327163 absolute error = 4.2574277895338298444492903327163 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.258 Order of pole = 8.487 TOP MAIN SOLVE Loop x[1] = 2.617 y[1] (analytic) = 0 y[1] (numeric) = 4.2588432713133907039822041926908 absolute error = 4.2588432713133907039822041926908 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.258 Order of pole = 8.487 TOP MAIN SOLVE Loop x[1] = 2.618 y[1] (analytic) = 0 y[1] (numeric) = 4.2602579041459713474911825036247 absolute error = 4.2602579041459713474911825036247 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.258 Order of pole = 8.487 TOP MAIN SOLVE Loop x[1] = 2.619 y[1] (analytic) = 0 y[1] (numeric) = 4.2616716880503354977189683285011 absolute error = 4.2616716880503354977189683285011 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.259 Order of pole = 8.486 TOP MAIN SOLVE Loop x[1] = 2.62 y[1] (analytic) = 0 y[1] (numeric) = 4.2630846230466725395482894777958 absolute error = 4.2630846230466725395482894777958 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.259 Order of pole = 8.486 TOP MAIN SOLVE Loop x[1] = 2.621 y[1] (analytic) = 0 y[1] (numeric) = 4.2644967091565956038859250697476 absolute error = 4.2644967091565956038859250697476 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.259 Order of pole = 8.486 TOP MAIN SOLVE Loop x[1] = 2.622 y[1] (analytic) = 0 y[1] (numeric) = 4.265907946403139648779824471274 absolute error = 4.265907946403139648779824471274 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.259 Order of pole = 8.486 TOP MAIN SOLVE Loop x[1] = 2.623 y[1] (analytic) = 0 y[1] (numeric) = 4.2673183348107595377849373481896 absolute error = 4.2673183348107595377849373481896 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.259 Order of pole = 8.485 TOP MAIN SOLVE Loop x[1] = 2.624 y[1] (analytic) = 0 y[1] (numeric) = 4.2687278744053281155934047641118 absolute error = 4.2687278744053281155934047641118 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.259 Order of pole = 8.485 TOP MAIN SOLVE Loop memory used=843.0MB, alloc=4.6MB, time=88.55 x[1] = 2.625 y[1] (analytic) = 0 y[1] (numeric) = 4.270136565214134280944752354696 absolute error = 4.270136565214134280944752354696 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.26 Order of pole = 8.485 TOP MAIN SOLVE Loop x[1] = 2.626 y[1] (analytic) = 0 y[1] (numeric) = 4.2715444072658810568317175679895 absolute error = 4.2715444072658810568317175679895 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.26 Order of pole = 8.485 TOP MAIN SOLVE Loop x[1] = 2.627 y[1] (analytic) = 0 y[1] (numeric) = 4.2729514005906836580173338030889 absolute error = 4.2729514005906836580173338030889 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.26 Order of pole = 8.485 TOP MAIN SOLVE Loop x[1] = 2.628 y[1] (analytic) = 0 y[1] (numeric) = 4.2743575452200675558788849982983 absolute error = 4.2743575452200675558788849982983 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.26 Order of pole = 8.485 TOP MAIN SOLVE Loop x[1] = 2.629 y[1] (analytic) = 0 y[1] (numeric) = 4.2757628411869665405943348169672 absolute error = 4.2757628411869665405943348169672 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.26 Order of pole = 8.485 TOP MAIN SOLVE Loop x[1] = 2.63 y[1] (analytic) = 0 y[1] (numeric) = 4.2771672885257207806868250545108 absolute error = 4.2771672885257207806868250545108 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.261 Order of pole = 8.485 TOP MAIN SOLVE Loop x[1] = 2.631 y[1] (analytic) = 0 y[1] (numeric) = 4.2785708872720748799428282441387 absolute error = 4.2785708872720748799428282441387 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.261 Order of pole = 8.485 TOP MAIN SOLVE Loop x[1] = 2.632 y[1] (analytic) = 0 y[1] (numeric) = 4.2799736374631759317195296719074 absolute error = 4.2799736374631759317195296719074 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.261 Order of pole = 8.485 TOP MAIN SOLVE Loop x[1] = 2.633 y[1] (analytic) = 0 y[1] (numeric) = 4.2813755391375715706570041242366 absolute error = 4.2813755391375715706570041242366 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.261 Order of pole = 8.485 TOP MAIN SOLVE Loop x[1] = 2.634 y[1] (analytic) = 0 y[1] (numeric) = 4.2827765923352080218107426833466 absolute error = 4.2827765923352080218107426833466 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.261 Order of pole = 8.485 TOP MAIN SOLVE Loop x[1] = 2.635 y[1] (analytic) = 0 y[1] (numeric) = 4.2841767970974281472200747585617 absolute error = 4.2841767970974281472200747585617 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.262 Order of pole = 8.486 TOP MAIN SOLVE Loop x[1] = 2.636 y[1] (analytic) = 0 y[1] (numeric) = 4.2855761534669694899280202944408 absolute error = 4.2855761534669694899280202944408 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.262 Order of pole = 8.486 TOP MAIN SOLVE Loop memory used=846.8MB, alloc=4.6MB, time=88.96 x[1] = 2.637 y[1] (analytic) = 0 y[1] (numeric) = 4.286974661487962315468096730616 absolute error = 4.286974661487962315468096730616 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.262 Order of pole = 8.486 TOP MAIN SOLVE Loop x[1] = 2.638 y[1] (analytic) = 0 y[1] (numeric) = 4.2883723212059276508335948034086 absolute error = 4.2883723212059276508335948034086 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.262 Order of pole = 8.486 TOP MAIN SOLVE Loop x[1] = 2.639 y[1] (analytic) = 0 y[1] (numeric) = 4.28976913266777532094482667612 absolute error = 4.28976913266777532094482667612 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.263 Order of pole = 8.487 TOP MAIN SOLVE Loop x[1] = 2.64 y[1] (analytic) = 0 y[1] (numeric) = 4.2911650959218019826298391637347 absolute error = 4.2911650959218019826298391637347 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.263 Order of pole = 8.487 TOP MAIN SOLVE Loop x[1] = 2.641 y[1] (analytic) = 0 y[1] (numeric) = 4.2925602110176891561340739789909 absolute error = 4.2925602110176891561340739789909 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.263 Order of pole = 8.487 TOP MAIN SOLVE Loop x[1] = 2.642 y[1] (analytic) = 0 y[1] (numeric) = 4.2939544780065012541744459707499 absolute error = 4.2939544780065012541744459707499 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.263 Order of pole = 8.488 TOP MAIN SOLVE Loop x[1] = 2.643 y[1] (analytic) = 0 y[1] (numeric) = 4.2953478969406836085532992526922 absolute error = 4.2953478969406836085532992526922 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.264 Order of pole = 8.488 TOP MAIN SOLVE Loop x[1] = 2.644 y[1] (analytic) = 0 y[1] (numeric) = 4.2967404678740604943476899309668 absolute error = 4.2967404678740604943476899309668 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.264 Order of pole = 8.488 TOP MAIN SOLVE Loop x[1] = 2.645 y[1] (analytic) = 0 y[1] (numeric) = 4.2981321908618331516894328338912 absolute error = 4.2981321908618331516894328338912 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.264 Order of pole = 8.489 TOP MAIN SOLVE Loop x[1] = 2.646 y[1] (analytic) = 0 y[1] (numeric) = 4.299523065960577805151338225515 absolute error = 4.299523065960577805151338225515 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.264 Order of pole = 8.489 TOP MAIN SOLVE Loop x[1] = 2.647 y[1] (analytic) = 0 y[1] (numeric) = 4.3009130932282436807550529482023 absolute error = 4.3009130932282436807550529482023 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.265 Order of pole = 8.49 TOP MAIN SOLVE Loop memory used=850.7MB, alloc=4.6MB, time=89.36 x[1] = 2.648 y[1] (analytic) = 0 y[1] (numeric) = 4.3023022727241510206159087877234 absolute error = 4.3023022727241510206159087877234 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.265 Order of pole = 8.49 TOP MAIN SOLVE Loop x[1] = 2.649 y[1] (analytic) = 0 y[1] (numeric) = 4.3036906045089890952401690880593 absolute error = 4.3036906045089890952401690880593 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.265 Order of pole = 8.491 TOP MAIN SOLVE Loop x[1] = 2.65 y[1] (analytic) = 0 y[1] (numeric) = 4.3050780886448142134900527625855 absolute error = 4.3050780886448142134900527625855 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.265 Order of pole = 8.492 TOP MAIN SOLVE Loop x[1] = 2.651 y[1] (analytic) = 0 y[1] (numeric) = 4.3064647251950477302319028538934 absolute error = 4.3064647251950477302319028538934 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.266 Order of pole = 8.492 TOP MAIN SOLVE Loop x[1] = 2.652 y[1] (analytic) = 0 y[1] (numeric) = 4.3078505142244740516828546866079 absolute error = 4.3078505142244740516828546866079 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.266 Order of pole = 8.493 TOP MAIN SOLVE Loop x[1] = 2.653 y[1] (analytic) = 0 y[1] (numeric) = 4.3092354557992386384713464365431 absolute error = 4.3092354557992386384713464365431 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.266 Order of pole = 8.494 TOP MAIN SOLVE Loop x[1] = 2.654 y[1] (analytic) = 0 y[1] (numeric) = 4.3106195499868460064268026057908 absolute error = 4.3106195499868460064268026057908 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.266 Order of pole = 8.494 TOP MAIN SOLVE Loop x[1] = 2.655 y[1] (analytic) = 0 y[1] (numeric) = 4.3120027968561577251138084472316 absolute error = 4.3120027968561577251138084472316 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.267 Order of pole = 8.495 TOP MAIN SOLVE Loop x[1] = 2.656 y[1] (analytic) = 0 y[1] (numeric) = 4.3133851964773904141260808238793 absolute error = 4.3133851964773904141260808238793 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.267 Order of pole = 8.496 TOP MAIN SOLVE Loop x[1] = 2.657 y[1] (analytic) = 0 y[1] (numeric) = 4.3147667489221137371555283188005 absolute error = 4.3147667489221137371555283188005 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.267 Order of pole = 8.497 TOP MAIN SOLVE Loop x[1] = 2.658 y[1] (analytic) = 0 y[1] (numeric) = 4.3161474542632483938516806304677 absolute error = 4.3161474542632483938516806304677 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.268 Order of pole = 8.497 TOP MAIN SOLVE Loop x[1] = 2.659 y[1] (analytic) = 0 y[1] (numeric) = 4.3175273125750641094867543966935 absolute error = 4.3175273125750641094867543966935 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.268 Order of pole = 8.498 memory used=854.5MB, alloc=4.6MB, time=89.76 TOP MAIN SOLVE Loop x[1] = 2.66 y[1] (analytic) = 0 y[1] (numeric) = 4.3189063239331776224416095881369 absolute error = 4.3189063239331776224416095881369 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.268 Order of pole = 8.499 TOP MAIN SOLVE Loop x[1] = 2.661 y[1] (analytic) = 0 y[1] (numeric) = 4.3202844884145506695278375001524 absolute error = 4.3202844884145506695278375001524 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.268 Order of pole = 8.5 TOP MAIN SOLVE Loop x[1] = 2.662 y[1] (analytic) = 0 y[1] (numeric) = 4.3216618060974879691612081498545 absolute error = 4.3216618060974879691612081498545 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.269 Order of pole = 8.501 TOP MAIN SOLVE Loop x[1] = 2.663 y[1] (analytic) = 0 y[1] (numeric) = 4.3230382770616352024016915540771 absolute error = 4.3230382770616352024016915540771 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.269 Order of pole = 8.502 TOP MAIN SOLVE Loop x[1] = 2.664 y[1] (analytic) = 0 y[1] (numeric) = 4.3244139013879769918752539238042 absolute error = 4.3244139013879769918752539238042 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.269 Order of pole = 8.503 TOP MAIN SOLVE Loop x[1] = 2.665 y[1] (analytic) = 0 y[1] (numeric) = 4.3257886791588348785926162620239 absolute error = 4.3257886791588348785926162620239 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.27 Order of pole = 8.504 TOP MAIN SOLVE Loop x[1] = 2.666 y[1] (analytic) = 0 y[1] (numeric) = 4.3271626104578652966801491951912 absolute error = 4.3271626104578652966801491951912 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.27 Order of pole = 8.505 TOP MAIN SOLVE Loop x[1] = 2.667 y[1] (analytic) = 0 y[1] (numeric) = 4.3285356953700575460380641039707 absolute error = 4.3285356953700575460380641039707 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.27 Order of pole = 8.505 TOP MAIN SOLVE Loop x[1] = 2.668 y[1] (analytic) = 0 y[1] (numeric) = 4.3299079339817317629410467470503 absolute error = 4.3299079339817317629410467470503 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.271 Order of pole = 8.506 TOP MAIN SOLVE Loop x[1] = 2.669 y[1] (analytic) = 0 y[1] (numeric) = 4.3312793263805368885964655929578 absolute error = 4.3312793263805368885964655929578 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.271 Order of pole = 8.508 TOP MAIN SOLVE Loop x[1] = 2.67 y[1] (analytic) = 0 y[1] (numeric) = 4.3326498726554486356752729893683 absolute error = 4.3326498726554486356752729893683 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.271 Order of pole = 8.509 TOP MAIN SOLVE Loop memory used=858.3MB, alloc=4.6MB, time=90.17 x[1] = 2.671 y[1] (analytic) = 0 y[1] (numeric) = 4.3340195728967674528307031077414 absolute error = 4.3340195728967674528307031077414 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.272 Order of pole = 8.51 TOP MAIN SOLVE Loop x[1] = 2.672 y[1] (analytic) = 0 y[1] (numeric) = 4.3353884271961164872198563036689 absolute error = 4.3353884271961164872198563036689 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.272 Order of pole = 8.511 TOP MAIN SOLVE Loop x[1] = 2.673 y[1] (analytic) = 0 y[1] (numeric) = 4.3367564356464395450432451304318 absolute error = 4.3367564356464395450432451304318 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.272 Order of pole = 8.512 TOP MAIN SOLVE Loop x[1] = 2.674 y[1] (analytic) = 0 y[1] (numeric) = 4.3381235983419990501173627353518 absolute error = 4.3381235983419990501173627353518 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.273 Order of pole = 8.513 TOP MAIN SOLVE Loop x[1] = 2.675 y[1] (analytic) = 0 y[1] (numeric) = 4.3394899153783740004953197559651 absolute error = 4.3394899153783740004953197559651 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.273 Order of pole = 8.514 TOP MAIN SOLVE Loop x[1] = 2.676 y[1] (analytic) = 0 y[1] (numeric) = 4.3408553868524579231505811162384 absolute error = 4.3408553868524579231505811162384 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.273 Order of pole = 8.515 TOP MAIN SOLVE Loop x[1] = 2.677 y[1] (analytic) = 0 y[1] (numeric) = 4.3422200128624568267388193023777 absolute error = 4.3422200128624568267388193023777 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.273 Order of pole = 8.516 TOP MAIN SOLVE Loop x[1] = 2.678 y[1] (analytic) = 0 y[1] (numeric) = 4.3435837935078871524528857736414 absolute error = 4.3435837935078871524528857736414 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 8.517 TOP MAIN SOLVE Loop x[1] = 2.679 y[1] (analytic) = 0 y[1] (numeric) = 4.3449467288895737229858871363547 absolute error = 4.3449467288895737229858871363547 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 8.519 TOP MAIN SOLVE Loop x[1] = 2.68 y[1] (analytic) = 0 y[1] (numeric) = 4.3463088191096476896173375794213 absolute error = 4.3463088191096476896173375794213 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.274 Order of pole = 8.52 TOP MAIN SOLVE Loop x[1] = 2.681 y[1] (analytic) = 0 y[1] (numeric) = 4.347670064271544477437343837435 absolute error = 4.347670064271544477437343837435 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.275 Order of pole = 8.521 TOP MAIN SOLVE Loop memory used=862.1MB, alloc=4.6MB, time=90.57 x[1] = 2.682 y[1] (analytic) = 0 y[1] (numeric) = 4.3490304644800017287237636134038 absolute error = 4.3490304644800017287237636134038 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.275 Order of pole = 8.522 TOP MAIN SOLVE Loop x[1] = 2.683 y[1] (analytic) = 0 y[1] (numeric) = 4.3503900198410572444872629575004 absolute error = 4.3503900198410572444872629575004 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.275 Order of pole = 8.523 TOP MAIN SOLVE Loop x[1] = 2.684 y[1] (analytic) = 0 y[1] (numeric) = 4.3517487304620469241991825615452 absolute error = 4.3517487304620469241991825615452 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.276 Order of pole = 8.525 TOP MAIN SOLVE Loop x[1] = 2.685 y[1] (analytic) = 0 y[1] (numeric) = 4.3531065964516027037171072915022 absolute error = 4.3531065964516027037171072915022 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.276 Order of pole = 8.526 TOP MAIN SOLVE Loop x[1] = 2.686 y[1] (analytic) = 0 y[1] (numeric) = 4.3544636179196504914230175425197 absolute error = 4.3544636179196504914230175425197 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.277 Order of pole = 8.527 TOP MAIN SOLVE Loop x[1] = 2.687 y[1] (analytic) = 0 y[1] (numeric) = 4.3558197949774081025888851633707 absolute error = 4.3558197949774081025888851633707 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.277 Order of pole = 8.528 TOP MAIN SOLVE Loop x[1] = 2.688 y[1] (analytic) = 0 y[1] (numeric) = 4.3571751277373831919845607599422 absolute error = 4.3571751277373831919845607599422 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.277 Order of pole = 8.53 TOP MAIN SOLVE Loop x[1] = 2.689 y[1] (analytic) = 0 y[1] (numeric) = 4.3585296163133711847427831510755 absolute error = 4.3585296163133711847427831510755 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.278 Order of pole = 8.531 TOP MAIN SOLVE Loop x[1] = 2.69 y[1] (analytic) = 0 y[1] (numeric) = 4.3598832608204532054961256149769 absolute error = 4.3598832608204532054961256149769 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.278 Order of pole = 8.532 TOP MAIN SOLVE Loop x[1] = 2.691 y[1] (analytic) = 0 y[1] (numeric) = 4.3612360613749940058006773309876 absolute error = 4.3612360613749940058006773309876 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.278 Order of pole = 8.534 TOP MAIN SOLVE Loop x[1] = 2.692 y[1] (analytic) = 0 y[1] (numeric) = 4.3625880180946398898612420901273 absolute error = 4.3625880180946398898612420901273 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.279 Order of pole = 8.535 TOP MAIN SOLVE Loop x[1] = 2.693 y[1] (analytic) = 0 y[1] (numeric) = 4.363939131098316638572819918899 absolute error = 4.363939131098316638572819918899 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.279 Order of pole = 8.536 TOP MAIN SOLVE Loop memory used=865.9MB, alloc=4.6MB, time=90.98 x[1] = 2.694 y[1] (analytic) = 0 y[1] (numeric) = 4.365289400506227431893120734763 absolute error = 4.365289400506227431893120734763 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.279 Order of pole = 8.538 TOP MAIN SOLVE Loop x[1] = 2.695 y[1] (analytic) = 0 y[1] (numeric) = 4.3666388264398507695608425288562 absolute error = 4.3666388264398507695608425288562 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.28 Order of pole = 8.539 TOP MAIN SOLVE Loop x[1] = 2.696 y[1] (analytic) = 0 y[1] (numeric) = 4.3679874090219383901744298523389 absolute error = 4.3679874090219383901744298523389 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.28 Order of pole = 8.54 TOP MAIN SOLVE Loop x[1] = 2.697 y[1] (analytic) = 0 y[1] (numeric) = 4.3693351483765131886460115676033 absolute error = 4.3693351483765131886460115676033 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.28 Order of pole = 8.542 TOP MAIN SOLVE Loop x[1] = 2.698 y[1] (analytic) = 0 y[1] (numeric) = 4.3706820446288671320451999148674 absolute error = 4.3706820446288671320451999148674 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.281 Order of pole = 8.543 TOP MAIN SOLVE Loop x[1] = 2.699 y[1] (analytic) = 0 y[1] (numeric) = 4.3720280979055591738474159388055 absolute error = 4.3720280979055591738474159388055 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.281 Order of pole = 8.544 TOP MAIN SOLVE Loop x[1] = 2.7 y[1] (analytic) = 0 y[1] (numeric) = 4.3733733083344131666013892192325 absolute error = 4.3733733083344131666013892192325 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.281 Order of pole = 8.546 TOP MAIN SOLVE Loop x[1] = 2.701 y[1] (analytic) = 0 y[1] (numeric) = 4.3747176760445157730304626548633 absolute error = 4.3747176760445157730304626548633 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.282 Order of pole = 8.547 TOP MAIN SOLVE Loop x[1] = 2.702 y[1] (analytic) = 0 y[1] (numeric) = 4.3760612011662143755823157602068 absolute error = 4.3760612011662143755823157602068 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.282 Order of pole = 8.548 TOP MAIN SOLVE Loop x[1] = 2.703 y[1] (analytic) = 0 y[1] (numeric) = 4.377403883831114984441702553131 absolute error = 4.377403883831114984441702553131 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.282 Order of pole = 8.55 TOP MAIN SOLVE Loop x[1] = 2.704 y[1] (analytic) = 0 y[1] (numeric) = 4.3787457241720801440207826349489 absolute error = 4.3787457241720801440207826349489 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.283 Order of pole = 8.551 TOP MAIN SOLVE Loop memory used=869.7MB, alloc=4.6MB, time=91.38 x[1] = 2.705 y[1] (analytic) = 0 y[1] (numeric) = 4.3800867223232268379416064964234 absolute error = 4.3800867223232268379416064964234 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.283 Order of pole = 8.552 TOP MAIN SOLVE Loop x[1] = 2.706 y[1] (analytic) = 0 y[1] (numeric) = 4.3814268784199243925252984222795 absolute error = 4.3814268784199243925252984222795 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.284 Order of pole = 8.554 TOP MAIN SOLVE Loop x[1] = 2.707 y[1] (analytic) = 0 y[1] (numeric) = 4.3827661925987923788024626140359 absolute error = 4.3827661925987923788024626140359 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.284 Order of pole = 8.555 TOP MAIN SOLVE Loop x[1] = 2.708 y[1] (analytic) = 0 y[1] (numeric) = 4.3841046649976985130593203066364 absolute error = 4.3841046649976985130593203066364 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.284 Order of pole = 8.557 TOP MAIN SOLVE Loop x[1] = 2.709 y[1] (analytic) = 0 y[1] (numeric) = 4.3854422957557565559340677188653 absolute error = 4.3854422957557565559340677188653 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.285 Order of pole = 8.558 TOP MAIN SOLVE Loop x[1] = 2.71 y[1] (analytic) = 0 y[1] (numeric) = 4.3867790850133242100779266512841 absolute error = 4.3867790850133242100779266512841 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.285 Order of pole = 8.559 TOP MAIN SOLVE Loop x[1] = 2.711 y[1] (analytic) = 0 y[1] (numeric) = 4.3881150329120010163953414288158 absolute error = 4.3881150329120010163953414288158 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.285 Order of pole = 8.561 TOP MAIN SOLVE Loop x[1] = 2.712 y[1] (analytic) = 0 y[1] (numeric) = 4.3894501395946262488777576785458 absolute error = 4.3894501395946262488777576785458 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.286 Order of pole = 8.562 TOP MAIN SOLVE Loop x[1] = 2.713 y[1] (analytic) = 0 y[1] (numeric) = 4.390784405205276808045400137193 absolute error = 4.390784405205276808045400137193 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.286 Order of pole = 8.563 TOP MAIN SOLVE Loop x[1] = 2.714 y[1] (analytic) = 0 y[1] (numeric) = 4.3921178298892651130114482974445 absolute error = 4.3921178298892651130114482974445 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.286 Order of pole = 8.565 TOP MAIN SOLVE Loop x[1] = 2.715 y[1] (analytic) = 0 y[1] (numeric) = 4.3934504137931369921829902283349 absolute error = 4.3934504137931369921829902283349 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.287 Order of pole = 8.566 TOP MAIN SOLVE Loop x[1] = 2.716 y[1] (analytic) = 0 y[1] (numeric) = 4.394782157064669572613116342499 absolute error = 4.394782157064669572613116342499 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.287 Order of pole = 8.567 TOP MAIN SOLVE Loop memory used=873.5MB, alloc=4.6MB, time=91.79 x[1] = 2.717 y[1] (analytic) = 0 y[1] (numeric) = 4.3961130598528691680184962328286 absolute error = 4.3961130598528691680184962328286 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.287 Order of pole = 8.569 TOP MAIN SOLVE Loop x[1] = 2.718 y[1] (analytic) = 0 y[1] (numeric) = 4.3974431223079691654767629632294 absolute error = 4.3974431223079691654767629632294 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.288 Order of pole = 8.57 TOP MAIN SOLVE Loop x[1] = 2.719 y[1] (analytic) = 0 y[1] (numeric) = 4.3987723445814279108180103732022 absolute error = 4.3987723445814279108180103732022 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.288 Order of pole = 8.571 TOP MAIN SOLVE Loop x[1] = 2.72 y[1] (analytic) = 0 y[1] (numeric) = 4.4001007268259265927246900442675 absolute error = 4.4001007268259265927246900442675 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.288 Order of pole = 8.573 TOP MAIN SOLVE Loop x[1] = 2.721 y[1] (analytic) = 0 y[1] (numeric) = 4.4014282691953671255541755782206 absolute error = 4.4014282691953671255541755782206 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.289 Order of pole = 8.574 TOP MAIN SOLVE Loop x[1] = 2.722 y[1] (analytic) = 0 y[1] (numeric) = 4.4027549718448700308982427532431 absolute error = 4.4027549718448700308982427532431 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.289 Order of pole = 8.575 TOP MAIN SOLVE Loop x[1] = 2.723 y[1] (analytic) = 0 y[1] (numeric) = 4.4040808349307723178936949544143 absolute error = 4.4040808349307723178936949544143 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.29 Order of pole = 8.577 TOP MAIN SOLVE Loop x[1] = 2.724 y[1] (analytic) = 0 y[1] (numeric) = 4.4054058586106253622983440205674 absolute error = 4.4054058586106253622983440205674 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.29 Order of pole = 8.578 TOP MAIN SOLVE Loop x[1] = 2.725 y[1] (analytic) = 0 y[1] (numeric) = 4.4067300430431927843465373101167 absolute error = 4.4067300430431927843465373101167 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.29 Order of pole = 8.579 TOP MAIN SOLVE Loop x[1] = 2.726 y[1] (analytic) = 0 y[1] (numeric) = 4.4080533883884483253984023648582 absolute error = 4.4080533883884483253984023648582 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.291 Order of pole = 8.58 TOP MAIN SOLVE Loop x[1] = 2.727 y[1] (analytic) = 0 y[1] (numeric) = 4.4093758948075737233969610432111 absolute error = 4.4093758948075737233969610432111 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.291 Order of pole = 8.582 TOP MAIN SOLVE Loop memory used=877.4MB, alloc=4.6MB, time=92.19 x[1] = 2.728 y[1] (analytic) = 0 y[1] (numeric) = 4.4106975624629565871472454033314 absolute error = 4.4106975624629565871472454033314 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.291 Order of pole = 8.583 TOP MAIN SOLVE Loop x[1] = 2.729 y[1] (analytic) = 0 y[1] (numeric) = 4.4120183915181882694315279423952 absolute error = 4.4120183915181882694315279423952 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.292 Order of pole = 8.584 TOP MAIN SOLVE Loop x[1] = 2.73 y[1] (analytic) = 0 y[1] (numeric) = 4.4133383821380617389747590415186 absolute error = 4.4133383821380617389747590415186 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.292 Order of pole = 8.585 TOP MAIN SOLVE Loop x[1] = 2.731 y[1] (analytic) = 0 y[1] (numeric) = 4.414657534488569451274284626664 absolute error = 4.414657534488569451274284626664 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.292 Order of pole = 8.587 TOP MAIN SOLVE Loop x[1] = 2.732 y[1] (analytic) = 0 y[1] (numeric) = 4.4159758487369012183078971348758 absolute error = 4.4159758487369012183078971348758 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.293 Order of pole = 8.588 TOP MAIN SOLVE Loop x[1] = 2.733 y[1] (analytic) = 0 y[1] (numeric) = 4.4172933250514420771342528727055 absolute error = 4.4172933250514420771342528727055 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.293 Order of pole = 8.589 TOP MAIN SOLVE Loop x[1] = 2.734 y[1] (analytic) = 0 y[1] (numeric) = 4.4186099636017701573996687701219 absolute error = 4.4186099636017701573996687701219 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.293 Order of pole = 8.59 TOP MAIN SOLVE Loop x[1] = 2.735 y[1] (analytic) = 0 y[1] (numeric) = 4.4199257645586545477652913689693 absolute error = 4.4199257645586545477652913689693 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.294 Order of pole = 8.591 TOP MAIN SOLVE Loop x[1] = 2.736 y[1] (analytic) = 0 y[1] (numeric) = 4.4212407280940531612686106405357 absolute error = 4.4212407280940531612686106405357 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.294 Order of pole = 8.592 TOP MAIN SOLVE Loop x[1] = 2.737 y[1] (analytic) = 0 y[1] (numeric) = 4.4225548543811105996332709024279 absolute error = 4.4225548543811105996332709024279 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.294 Order of pole = 8.593 TOP MAIN SOLVE Loop x[1] = 2.738 y[1] (analytic) = 0 y[1] (numeric) = 4.4238681435941560165411107011299 absolute error = 4.4238681435941560165411107011299 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.295 Order of pole = 8.595 TOP MAIN SOLVE Loop x[1] = 2.739 y[1] (analytic) = 0 y[1] (numeric) = 4.4251805959087009798803430437457 absolute error = 4.4251805959087009798803430437457 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.295 Order of pole = 8.596 memory used=881.2MB, alloc=4.6MB, time=92.59 TOP MAIN SOLVE Loop x[1] = 2.74 y[1] (analytic) = 0 y[1] (numeric) = 4.4264922115014373329837668009029 absolute error = 4.4264922115014373329837668009029 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.295 Order of pole = 8.597 TOP MAIN SOLVE Loop x[1] = 2.741 y[1] (analytic) = 0 y[1] (numeric) = 4.4278029905502350548708794630292 absolute error = 4.4278029905502350548708794630292 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.296 Order of pole = 8.598 TOP MAIN SOLVE Loop x[1] = 2.742 y[1] (analytic) = 0 y[1] (numeric) = 4.4291129332341401195077407146043 absolute error = 4.4291129332341401195077407146043 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.296 Order of pole = 8.599 TOP MAIN SOLVE Loop x[1] = 2.743 y[1] (analytic) = 0 y[1] (numeric) = 4.4304220397333723540984154959523 absolute error = 4.4304220397333723540984154959523 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.296 Order of pole = 8.6 TOP MAIN SOLVE Loop x[1] = 2.744 y[1] (analytic) = 0 y[1] (numeric) = 4.4317303102293232964218043500681 absolute error = 4.4317303102293232964218043500681 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.297 Order of pole = 8.601 TOP MAIN SOLVE Loop x[1] = 2.745 y[1] (analytic) = 0 y[1] (numeric) = 4.4330377449045540512276479032776 absolute error = 4.4330377449045540512276479032776 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.297 Order of pole = 8.602 TOP MAIN SOLVE Loop x[1] = 2.746 y[1] (analytic) = 0 y[1] (numeric) = 4.4343443439427931457054713036167 absolute error = 4.4343443439427931457054713036167 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.297 Order of pole = 8.603 TOP MAIN SOLVE Loop x[1] = 2.747 y[1] (analytic) = 0 y[1] (numeric) = 4.4356501075289343840402133400843 absolute error = 4.4356501075289343840402133400843 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.298 Order of pole = 8.604 TOP MAIN SOLVE Loop x[1] = 2.748 y[1] (analytic) = 0 y[1] (numeric) = 4.4369550358490347010682637897832 absolute error = 4.4369550358490347010682637897832 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.298 Order of pole = 8.605 TOP MAIN SOLVE Loop x[1] = 2.749 y[1] (analytic) = 0 y[1] (numeric) = 4.4382591290903120150476112888184 absolute error = 4.4382591290903120150476112888184 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.298 Order of pole = 8.606 TOP MAIN SOLVE Loop x[1] = 2.75 y[1] (analytic) = 0 y[1] (numeric) = 4.4395623874411430795557826970704 absolute error = 4.4395623874411430795557826970704 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.299 Order of pole = 8.606 TOP MAIN SOLVE Loop memory used=885.0MB, alloc=4.6MB, time=92.99 x[1] = 2.751 y[1] (analytic) = 0 y[1] (numeric) = 4.4408648110910613345292335270205 absolute error = 4.4408648110910613345292335270205 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.299 Order of pole = 8.607 TOP MAIN SOLVE Loop x[1] = 2.752 y[1] (analytic) = 0 y[1] (numeric) = 4.4421664002307547564578275330641 absolute error = 4.4421664002307547564578275330641 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.299 Order of pole = 8.608 TOP MAIN SOLVE Loop x[1] = 2.753 y[1] (analytic) = 0 y[1] (numeric) = 4.443467155052063707748022010624 absolute error = 4.443467155052063707748022010624 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.299 Order of pole = 8.609 TOP MAIN SOLVE Loop x[1] = 2.754 y[1] (analytic) = 0 y[1] (numeric) = 4.4447670757479787852683537342668 absolute error = 4.4447670757479787852683537342668 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.3 Order of pole = 8.61 TOP MAIN SOLVE Loop x[1] = 2.755 y[1] (analytic) = 0 y[1] (numeric) = 4.4460661625126386680907987713354 absolute error = 4.4460661625126386680907987713354 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.3 Order of pole = 8.611 TOP MAIN SOLVE Loop x[1] = 2.756 y[1] (analytic) = 0 y[1] (numeric) = 4.4473644155413279644415576427489 absolute error = 4.4473644155413279644415576427489 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.3 Order of pole = 8.611 TOP MAIN SOLVE Loop x[1] = 2.757 y[1] (analytic) = 0 y[1] (numeric) = 4.4486618350304750578747954659835 absolute error = 4.4486618350304750578747954659835 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.301 Order of pole = 8.612 TOP MAIN SOLVE Loop x[1] = 2.758 y[1] (analytic) = 0 y[1] (numeric) = 4.449958421177649952682844807249 absolute error = 4.449958421177649952682844807249 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.301 Order of pole = 8.613 TOP MAIN SOLVE Loop x[1] = 2.759 y[1] (analytic) = 0 y[1] (numeric) = 4.4512541741815621185563569909073 absolute error = 4.4512541741815621185563569909073 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.301 Order of pole = 8.613 TOP MAIN SOLVE Loop x[1] = 2.76 y[1] (analytic) = 0 y[1] (numeric) = 4.4525490942420583345078655646579 absolute error = 4.4525490942420583345078655646579 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.302 Order of pole = 8.614 TOP MAIN SOLVE Loop x[1] = 2.761 y[1] (analytic) = 0 y[1] (numeric) = 4.4538431815601205320722034993323 absolute error = 4.4538431815601205320722034993323 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.302 Order of pole = 8.615 TOP MAIN SOLVE Loop memory used=888.8MB, alloc=4.6MB, time=93.39 x[1] = 2.762 y[1] (analytic) = 0 y[1] (numeric) = 4.4551364363378636377971935127102 absolute error = 4.4551364363378636377971935127102 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.302 Order of pole = 8.615 TOP MAIN SOLVE Loop x[1] = 2.763 y[1] (analytic) = 0 y[1] (numeric) = 4.4564288587785334150380086479871 absolute error = 4.4564288587785334150380086479871 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.302 Order of pole = 8.616 TOP MAIN SOLVE Loop x[1] = 2.764 y[1] (analytic) = 0 y[1] (numeric) = 4.4577204490865043050685779097997 absolute error = 4.4577204490865043050685779097997 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.617 TOP MAIN SOLVE Loop x[1] = 2.765 y[1] (analytic) = 0 y[1] (numeric) = 4.4590112074672772675233893644463 absolute error = 4.4590112074672772675233893644463 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.617 TOP MAIN SOLVE Loop x[1] = 2.766 y[1] (analytic) = 0 y[1] (numeric) = 4.460301134127477620183020646535 absolute error = 4.460301134127477620183020646535 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.618 TOP MAIN SOLVE Loop x[1] = 2.767 y[1] (analytic) = 0 y[1] (numeric) = 4.4615902292748528781167042821483 absolute error = 4.4615902292748528781167042821483 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.304 Order of pole = 8.618 TOP MAIN SOLVE Loop x[1] = 2.768 y[1] (analytic) = 0 y[1] (numeric) = 4.4628784931182705921952126391402 absolute error = 4.4628784931182705921952126391402 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.304 Order of pole = 8.618 TOP MAIN SOLVE Loop x[1] = 2.769 y[1] (analytic) = 0 y[1] (numeric) = 4.4641659258677161869873246487748 absolute error = 4.4641659258677161869873246487748 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.304 Order of pole = 8.619 TOP MAIN SOLVE Loop x[1] = 2.77 y[1] (analytic) = 0 y[1] (numeric) = 4.4654525277342907980531137099833 absolute error = 4.4654525277342907980531137099833 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.304 Order of pole = 8.619 TOP MAIN SOLVE Loop x[1] = 2.771 y[1] (analytic) = 0 y[1] (numeric) = 4.4667382989302091086472733884582 absolute error = 4.4667382989302091086472733884582 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.305 Order of pole = 8.62 TOP MAIN SOLVE Loop x[1] = 2.772 y[1] (analytic) = 0 y[1] (numeric) = 4.4680232396687971858456746580208 absolute error = 4.4680232396687971858456746580208 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.305 Order of pole = 8.62 TOP MAIN SOLVE Loop x[1] = 2.773 y[1] (analytic) = 0 y[1] (numeric) = 4.4693073501644903161083255015955 absolute error = 4.4693073501644903161083255015955 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.305 Order of pole = 8.62 TOP MAIN SOLVE Loop memory used=892.6MB, alloc=4.6MB, time=93.80 x[1] = 2.774 y[1] (analytic) = 0 y[1] (numeric) = 4.4705906306328308402918806941034 absolute error = 4.4705906306328308402918806941034 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.305 Order of pole = 8.621 TOP MAIN SOLVE Loop x[1] = 2.775 y[1] (analytic) = 0 y[1] (numeric) = 4.4718730812904659881248265300448 absolute error = 4.4718730812904659881248265300448 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.306 Order of pole = 8.621 TOP MAIN SOLVE Loop x[1] = 2.776 y[1] (analytic) = 0 y[1] (numeric) = 4.473154702355145712158442134886 absolute error = 4.473154702355145712158442134886 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.306 Order of pole = 8.621 TOP MAIN SOLVE Loop x[1] = 2.777 y[1] (analytic) = 0 y[1] (numeric) = 4.474435494045720521206615811994 absolute error = 4.474435494045720521206615811994 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.306 Order of pole = 8.621 TOP MAIN SOLVE Loop x[1] = 2.778 y[1] (analytic) = 0 y[1] (numeric) = 4.475715456582139313287571626175 absolute error = 4.475715456582139313287571626175 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.306 Order of pole = 8.621 TOP MAIN SOLVE Loop x[1] = 2.779 y[1] (analytic) = 0 y[1] (numeric) = 4.4769945901854472080805381112765 absolute error = 4.4769945901854472080805381112765 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.307 Order of pole = 8.622 TOP MAIN SOLVE Loop x[1] = 2.78 y[1] (analytic) = 0 y[1] (numeric) = 4.4782728950777833789103676131997 absolute error = 4.4782728950777833789103676131997 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.307 Order of pole = 8.622 TOP MAIN SOLVE Loop x[1] = 2.781 y[1] (analytic) = 0 y[1] (numeric) = 4.4795503714823788842730913414447 absolute error = 4.4795503714823788842730913414447 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.307 Order of pole = 8.622 TOP MAIN SOLVE Loop x[1] = 2.782 y[1] (analytic) = 0 y[1] (numeric) = 4.4808270196235544989153717023785 absolute error = 4.4808270196235544989153717023785 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.307 Order of pole = 8.622 TOP MAIN SOLVE Loop x[1] = 2.783 y[1] (analytic) = 0 y[1] (numeric) = 4.4821028397267185444807899261638 absolute error = 4.4821028397267185444807899261638 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.307 Order of pole = 8.622 TOP MAIN SOLVE Loop x[1] = 2.784 y[1] (analytic) = 0 y[1] (numeric) = 4.4833778320183647197358833771308 absolute error = 4.4833778320183647197358833771308 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.308 Order of pole = 8.622 TOP MAIN SOLVE Loop memory used=896.4MB, alloc=4.6MB, time=94.20 x[1] = 2.785 y[1] (analytic) = 0 y[1] (numeric) = 4.4846519967260699303888232546992 absolute error = 4.4846519967260699303888232546992 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.308 Order of pole = 8.622 TOP MAIN SOLVE Loop x[1] = 2.786 y[1] (analytic) = 0 y[1] (numeric) = 4.4859253340784921185135996491721 absolute error = 4.4859253340784921185135996491721 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.308 Order of pole = 8.622 TOP MAIN SOLVE Loop x[1] = 2.787 y[1] (analytic) = 0 y[1] (numeric) = 4.4871978443053680915925571142226 absolute error = 4.4871978443053680915925571142226 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.308 Order of pole = 8.621 TOP MAIN SOLVE Loop x[1] = 2.788 y[1] (analytic) = 0 y[1] (numeric) = 4.4884695276375113511901000560782 absolute error = 4.4884695276375113511901000560782 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.309 Order of pole = 8.621 TOP MAIN SOLVE Loop x[1] = 2.789 y[1] (analytic) = 0 y[1] (numeric) = 4.4897403843068099212703633186722 absolute error = 4.4897403843068099212703633186722 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.309 Order of pole = 8.621 TOP MAIN SOLVE Loop x[1] = 2.79 y[1] (analytic) = 0 y[1] (numeric) = 4.4910104145462241761716193647807 absolute error = 4.4910104145462241761716193647807 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.309 Order of pole = 8.621 TOP MAIN SOLVE Loop x[1] = 2.791 y[1] (analytic) = 0 y[1] (numeric) = 4.492279618589784668250169415788 absolute error = 4.492279618589784668250169415788 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.309 Order of pole = 8.621 TOP MAIN SOLVE Loop x[1] = 2.792 y[1] (analytic) = 0 y[1] (numeric) = 4.4935479966725899552064418176255 absolute error = 4.4935479966725899552064418176255 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.309 Order of pole = 8.62 TOP MAIN SOLVE Loop x[1] = 2.793 y[1] (analytic) = 0 y[1] (numeric) = 4.4948155490308044271059967480065 absolute error = 4.4948155490308044271059967480065 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.31 Order of pole = 8.62 TOP MAIN SOLVE Loop x[1] = 2.794 y[1] (analytic) = 0 y[1] (numeric) = 4.4960822759016561331081121707249 absolute error = 4.4960822759016561331081121707249 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.31 Order of pole = 8.62 TOP MAIN SOLVE Loop x[1] = 2.795 y[1] (analytic) = 0 y[1] (numeric) = 4.4973481775234346079146016769018 absolute error = 4.4973481775234346079146016769018 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.31 Order of pole = 8.619 TOP MAIN SOLVE Loop x[1] = 2.796 y[1] (analytic) = 0 y[1] (numeric) = 4.4986132541354886979514905310428 absolute error = 4.4986132541354886979514905310428 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.31 Order of pole = 8.619 memory used=900.3MB, alloc=4.6MB, time=94.60 TOP MAIN SOLVE Loop x[1] = 2.797 y[1] (analytic) = 0 y[1] (numeric) = 4.4998775059782243872961518620079 absolute error = 4.4998775059782243872961518620079 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.31 Order of pole = 8.618 TOP MAIN SOLVE Loop x[1] = 2.798 y[1] (analytic) = 0 y[1] (numeric) = 4.5011409332931026233624805058935 absolute error = 4.5011409332931026233624805058935 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.31 Order of pole = 8.618 TOP MAIN SOLVE Loop x[1] = 2.799 y[1] (analytic) = 0 y[1] (numeric) = 4.5024035363226371423566575197719 absolute error = 4.5024035363226371423566575197719 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.311 Order of pole = 8.617 TOP MAIN SOLVE Loop x[1] = 2.8 y[1] (analytic) = 0 y[1] (numeric) = 4.5036653153103922945160338426308 absolute error = 4.5036653153103922945160338426308 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.311 Order of pole = 8.617 TOP MAIN SOLVE Loop x[1] = 2.801 y[1] (analytic) = 0 y[1] (numeric) = 4.5049262705009808691436369830923 absolute error = 4.5049262705009808691436369830923 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.311 Order of pole = 8.616 TOP MAIN SOLVE Loop x[1] = 2.802 y[1] (analytic) = 0 y[1] (numeric) = 4.5061864021400619194507799629646 absolute error = 4.5061864021400619194507799629646 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.311 Order of pole = 8.616 TOP MAIN SOLVE Loop x[1] = 2.803 y[1] (analytic) = 0 y[1] (numeric) = 4.5074457104743385872202270417868 absolute error = 4.5074457104743385872202270417868 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.311 Order of pole = 8.615 TOP MAIN SOLVE Loop x[1] = 2.804 y[1] (analytic) = 0 y[1] (numeric) = 4.5087041957515559273023459906554 absolute error = 4.5087041957515559273023459906554 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.311 Order of pole = 8.614 TOP MAIN SOLVE Loop x[1] = 2.805 y[1] (analytic) = 0 y[1] (numeric) = 4.509961858220498731956651874173 absolute error = 4.509961858220498731956651874173 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.312 Order of pole = 8.614 TOP MAIN SOLVE Loop x[1] = 2.806 y[1] (analytic) = 0 y[1] (numeric) = 4.5112186981309893550511224377198 absolute error = 4.5112186981309893550511224377198 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.312 Order of pole = 8.613 TOP MAIN SOLVE Loop x[1] = 2.807 y[1] (analytic) = 0 y[1] (numeric) = 4.5124747157338855361316402838143 absolute error = 4.5124747157338855361316402838143 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.312 Order of pole = 8.612 TOP MAIN SOLVE Loop memory used=904.1MB, alloc=4.6MB, time=95.01 x[1] = 2.808 y[1] (analytic) = 0 y[1] (numeric) = 4.5137299112810782243738920564946 absolute error = 4.5137299112810782243738920564946 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.312 Order of pole = 8.611 TOP MAIN SOLVE Loop x[1] = 2.809 y[1] (analytic) = 0 y[1] (numeric) = 4.5149842850254894024300298368048 absolute error = 4.5149842850254894024300298368048 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.312 Order of pole = 8.61 TOP MAIN SOLVE Loop x[1] = 2.81 y[1] (analytic) = 0 y[1] (numeric) = 4.5162378372210699101823748860052 absolute error = 4.5162378372210699101823748860052 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.312 Order of pole = 8.61 TOP MAIN SOLVE Loop x[1] = 2.811 y[1] (analytic) = 0 y[1] (numeric) = 4.5174905681227972684164187564338 absolute error = 4.5174905681227972684164187564338 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.312 Order of pole = 8.609 TOP MAIN SOLVE Loop x[1] = 2.812 y[1] (analytic) = 0 y[1] (numeric) = 4.518742477986673502425351623419 absolute error = 4.518742477986673502425351623419 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.313 Order of pole = 8.608 TOP MAIN SOLVE Loop x[1] = 2.813 y[1] (analytic) = 0 y[1] (numeric) = 4.5199935670697229655583224756693 absolute error = 4.5199935670697229655583224756693 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.313 Order of pole = 8.607 TOP MAIN SOLVE Loop x[1] = 2.814 y[1] (analytic) = 0 y[1] (numeric) = 4.521243835629990162724610536538 absolute error = 4.521243835629990162724610536538 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.313 Order of pole = 8.606 TOP MAIN SOLVE Loop x[1] = 2.815 y[1] (analytic) = 0 y[1] (numeric) = 4.5224932839265375738658619748694 absolute error = 4.5224932839265375738658619748694 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.313 Order of pole = 8.605 TOP MAIN SOLVE Loop x[1] = 2.816 y[1] (analytic) = 0 y[1] (numeric) = 4.5237419122194434774085206021629 absolute error = 4.5237419122194434774085206021629 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.313 Order of pole = 8.603 TOP MAIN SOLVE Loop x[1] = 2.817 y[1] (analytic) = 0 y[1] (numeric) = 4.5249897207697997737085558429375 absolute error = 4.5249897207697997737085558429375 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.313 Order of pole = 8.602 TOP MAIN SOLVE Loop x[1] = 2.818 y[1] (analytic) = 0 y[1] (numeric) = 4.5262367098397098085005658078276 absolute error = 4.5262367098397098085005658078276 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.313 Order of pole = 8.601 TOP MAIN SOLVE Loop x[1] = 2.819 y[1] (analytic) = 0 y[1] (numeric) = 4.5274828796922861963633077944799 absolute error = 4.5274828796922861963633077944799 relative error = -1 % Correct digits = -1 h = 0.001 memory used=907.9MB, alloc=4.6MB, time=95.43 Complex estimate of poles used for equation 1 Radius of convergence = 4.313 Order of pole = 8.6 TOP MAIN SOLVE Loop x[1] = 2.82 y[1] (analytic) = 0 y[1] (numeric) = 4.5287282305916486442136829901381 absolute error = 4.5287282305916486442136829901381 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.313 Order of pole = 8.599 TOP MAIN SOLVE Loop x[1] = 2.821 y[1] (analytic) = 0 y[1] (numeric) = 4.5299727628029217748411765522858 absolute error = 4.5299727628029217748411765522858 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.314 Order of pole = 8.597 TOP MAIN SOLVE Loop x[1] = 2.822 y[1] (analytic) = 0 y[1] (numeric) = 4.5312164765922329504947286002573 absolute error = 4.5312164765922329504947286002573 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.314 Order of pole = 8.596 TOP MAIN SOLVE Loop x[1] = 2.823 y[1] (analytic) = 0 y[1] (numeric) = 4.5324593722267100965339859616996 absolute error = 4.5324593722267100965339859616996 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.314 Order of pole = 8.595 TOP MAIN SOLVE Loop x[1] = 2.824 y[1] (analytic) = 0 y[1] (numeric) = 4.5337014499744795251568587835767 absolute error = 4.5337014499744795251568587835767 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.314 Order of pole = 8.593 TOP MAIN SOLVE Loop x[1] = 2.825 y[1] (analytic) = 0 y[1] (numeric) = 4.5349427101046637592152803384183 absolute error = 4.5349427101046637592152803384183 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.314 Order of pole = 8.592 TOP MAIN SOLVE Loop x[1] = 2.826 y[1] (analytic) = 0 y[1] (numeric) = 4.5361831528873793561310425331324 absolute error = 4.5361831528873793561310425331324 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.314 Order of pole = 8.591 TOP MAIN SOLVE Loop x[1] = 2.827 y[1] (analytic) = 0 y[1] (numeric) = 4.5374227785937347319235537602919 absolute error = 4.5374227785937347319235537602919 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.314 Order of pole = 8.589 TOP MAIN SOLVE Loop x[1] = 2.828 y[1] (analytic) = 0 y[1] (numeric) = 4.5386615874958279853613398207713 absolute error = 4.5386615874958279853613398207713 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.314 Order of pole = 8.588 TOP MAIN SOLVE Loop x[1] = 2.829 y[1] (analytic) = 0 y[1] (numeric) = 4.5398995798667447222490826923194 absolute error = 4.5398995798667447222490826923194 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.314 Order of pole = 8.586 TOP MAIN SOLVE Loop x[1] = 2.83 y[1] (analytic) = 0 y[1] (numeric) = 4.5411367559805558798619659215017 absolute error = 4.5411367559805558798619659215017 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.314 Order of pole = 8.584 TOP MAIN SOLVE Loop memory used=911.7MB, alloc=4.6MB, time=95.84 x[1] = 2.831 y[1] (analytic) = 0 y[1] (numeric) = 4.5423731161123155515390693768112 absolute error = 4.5423731161123155515390693768112 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.314 Order of pole = 8.583 TOP MAIN SOLVE Loop x[1] = 2.832 y[1] (analytic) = 0 y[1] (numeric) = 4.5436086605380588114475300190096 absolute error = 4.5436086605380588114475300190096 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.314 Order of pole = 8.581 TOP MAIN SOLVE Loop x[1] = 2.833 y[1] (analytic) = 0 y[1] (numeric) = 4.5448433895347995395291592213073 absolute error = 4.5448433895347995395291592213073 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.314 Order of pole = 8.579 TOP MAIN SOLVE Loop x[1] = 2.834 y[1] (analytic) = 0 y[1] (numeric) = 4.5460773033805282466411810072015 absolute error = 4.5460773033805282466411810072015 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.314 Order of pole = 8.578 TOP MAIN SOLVE Loop x[1] = 2.835 y[1] (analytic) = 0 y[1] (numeric) = 4.5473104023542098999027293680467 absolute error = 4.5473104023542098999027293680467 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.314 Order of pole = 8.576 TOP MAIN SOLVE Loop x[1] = 2.836 y[1] (analytic) = 0 y[1] (numeric) = 4.548542686735781748258716576112 absolute error = 4.548542686735781748258716576112 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.315 Order of pole = 8.574 TOP MAIN SOLVE Loop x[1] = 2.837 y[1] (analytic) = 0 y[1] (numeric) = 4.5497741568061511482726581223678 absolute error = 4.5497741568061511482726581223678 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.315 Order of pole = 8.572 TOP MAIN SOLVE Loop x[1] = 2.838 y[1] (analytic) = 0 y[1] (numeric) = 4.5510048128471933901600135819152 absolute error = 4.5510048128471933901600135819152 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.315 Order of pole = 8.571 TOP MAIN SOLVE Loop x[1] = 2.839 y[1] (analytic) = 0 y[1] (numeric) = 4.5522346551417495240735763442112 absolute error = 4.5522346551417495240735763442112 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.315 Order of pole = 8.569 TOP MAIN SOLVE Loop x[1] = 2.84 y[1] (analytic) = 0 y[1] (numeric) = 4.5534636839736241866524187404206 absolute error = 4.5534636839736241866524187404206 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.315 Order of pole = 8.567 TOP MAIN SOLVE Loop x[1] = 2.841 y[1] (analytic) = 0 y[1] (numeric) = 4.5546918996275834278458726567312 absolute error = 4.5546918996275834278458726567312 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.315 Order of pole = 8.565 TOP MAIN SOLVE Loop memory used=915.5MB, alloc=4.6MB, time=96.24 x[1] = 2.842 y[1] (analytic) = 0 y[1] (numeric) = 4.55591930238935253802399924067 absolute error = 4.55591930238935253802399924067 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.315 Order of pole = 8.563 TOP MAIN SOLVE Loop x[1] = 2.843 y[1] (analytic) = 0 y[1] (numeric) = 4.557145892545613875385974787736 absolute error = 4.557145892545613875385974787736 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.315 Order of pole = 8.561 TOP MAIN SOLVE Loop x[1] = 2.844 y[1] (analytic) = 0 y[1] (numeric) = 4.5583716703840046936777933384004 absolute error = 4.5583716703840046936777933384004 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.315 Order of pole = 8.559 TOP MAIN SOLVE Loop x[1] = 2.845 y[1] (analytic) = 0 y[1] (numeric) = 4.5595966361931149702306599210848 absolute error = 4.5595966361931149702306599210848 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.315 Order of pole = 8.557 TOP MAIN SOLVE Loop x[1] = 2.846 y[1] (analytic) = 0 y[1] (numeric) = 4.560820790262485234331421745496 absolute error = 4.560820790262485234331421745496 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.315 Order of pole = 8.555 TOP MAIN SOLVE Loop x[1] = 2.847 y[1] (analytic) = 0 y[1] (numeric) = 4.5620441328826043959363579830448 absolute error = 4.5620441328826043959363579830448 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.315 Order of pole = 8.552 TOP MAIN SOLVE Loop x[1] = 2.848 y[1] (analytic) = 0 y[1] (numeric) = 4.5632666643449075747396220673764 absolute error = 4.5632666643449075747396220673764 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.315 Order of pole = 8.55 TOP MAIN SOLVE Loop x[1] = 2.849 y[1] (analytic) = 0 y[1] (numeric) = 4.5644883849417739296076037086748 absolute error = 4.5644883849417739296076037086748 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.315 Order of pole = 8.548 TOP MAIN SOLVE Loop x[1] = 2.85 y[1] (analytic) = 0 y[1] (numeric) = 4.5657092949665244883904510407339 absolute error = 4.5657092949665244883904510407339 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.315 Order of pole = 8.546 TOP MAIN SOLVE Loop x[1] = 2.851 y[1] (analytic) = 0 y[1] (numeric) = 4.5669293947134199781219665102012 absolute error = 4.5669293947134199781219665102012 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.315 Order of pole = 8.544 TOP MAIN SOLVE Loop x[1] = 2.852 y[1] (analytic) = 0 y[1] (numeric) = 4.568148684477658655619063273254 absolute error = 4.568148684477658655619063273254 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.315 Order of pole = 8.541 TOP MAIN SOLVE Loop x[1] = 2.853 y[1] (analytic) = 0 y[1] (numeric) = 4.5693671645553741384919419866468 absolute error = 4.5693671645553741384919419866468 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.315 Order of pole = 8.539 TOP MAIN SOLVE Loop memory used=919.3MB, alloc=4.6MB, time=96.65 x[1] = 2.854 y[1] (analytic) = 0 y[1] (numeric) = 4.5705848352436332365761209679354 absolute error = 4.5705848352436332365761209679354 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.315 Order of pole = 8.537 TOP MAIN SOLVE Loop x[1] = 2.855 y[1] (analytic) = 0 y[1] (numeric) = 4.571801696840433783797425754114 absolute error = 4.571801696840433783797425754114 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.315 Order of pole = 8.534 TOP MAIN SOLVE Loop x[1] = 2.856 y[1] (analytic) = 0 y[1] (numeric) = 4.57301774964470247048101710926 absolute error = 4.57301774964470247048101710926 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.315 Order of pole = 8.532 TOP MAIN SOLVE Loop x[1] = 2.857 y[1] (analytic) = 0 y[1] (numeric) = 4.5742329939562926761155095204481 absolute error = 4.5742329939562926761155095204481 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.315 Order of pole = 8.529 TOP MAIN SOLVE Loop x[1] = 2.858 y[1] (analytic) = 0 y[1] (numeric) = 4.5754474300759823025832051775238 absolute error = 4.5754474300759823025832051775238 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.315 Order of pole = 8.527 TOP MAIN SOLVE Loop x[1] = 2.859 y[1] (analytic) = 0 y[1] (numeric) = 4.5766610583054716078674413567023 absolute error = 4.5766610583054716078674413567023 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.315 Order of pole = 8.524 TOP MAIN SOLVE Loop x[1] = 2.86 y[1] (analytic) = 0 y[1] (numeric) = 4.5778738789473810402480220207348 absolute error = 4.5778738789473810402480220207348 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.315 Order of pole = 8.522 TOP MAIN SOLVE Loop x[1] = 2.861 y[1] (analytic) = 0 y[1] (numeric) = 4.5790858923052490729956773099386 absolute error = 4.5790858923052490729956773099386 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.315 Order of pole = 8.519 TOP MAIN SOLVE Loop x[1] = 2.862 y[1] (analytic) = 0 y[1] (numeric) = 4.5802970986835300395764674290799 absolute error = 4.5802970986835300395764674290799 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.315 Order of pole = 8.517 TOP MAIN SOLVE Loop x[1] = 2.863 y[1] (analytic) = 0 y[1] (numeric) = 4.5815074983875919693770202352988 absolute error = 4.5815074983875919693770202352988 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.315 Order of pole = 8.514 TOP MAIN SOLVE Loop x[1] = 2.864 y[1] (analytic) = 0 y[1] (numeric) = 4.5827170917237144239614646023383 absolute error = 4.5827170917237144239614646023383 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.314 Order of pole = 8.512 TOP MAIN SOLVE Loop memory used=923.1MB, alloc=4.6MB, time=97.05 x[1] = 2.865 y[1] (analytic) = 0 y[1] (numeric) = 4.5839258789990863338708943766496 absolute error = 4.5839258789990863338708943766496 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.314 Order of pole = 8.509 TOP MAIN SOLVE Loop x[1] = 2.866 y[1] (analytic) = 0 y[1] (numeric) = 4.5851338605218038359761704518562 absolute error = 4.5851338605218038359761704518562 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.314 Order of pole = 8.506 TOP MAIN SOLVE Loop x[1] = 2.867 y[1] (analytic) = 0 y[1] (numeric) = 4.5863410366008681113948411699364 absolute error = 4.5863410366008681113948411699364 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.314 Order of pole = 8.504 TOP MAIN SOLVE Loop x[1] = 2.868 y[1] (analytic) = 0 y[1] (numeric) = 4.5875474075461832239829339106885 absolute error = 4.5875474075461832239829339106885 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.314 Order of pole = 8.501 TOP MAIN SOLVE Loop x[1] = 2.869 y[1] (analytic) = 0 y[1] (numeric) = 4.5887529736685539594123433559383 absolute error = 4.5887529736685539594123433559383 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.314 Order of pole = 8.498 TOP MAIN SOLVE Loop x[1] = 2.87 y[1] (analytic) = 0 y[1] (numeric) = 4.5899577352796836648445145118971 absolute error = 4.5899577352796836648445145118971 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.314 Order of pole = 8.495 TOP MAIN SOLVE Loop x[1] = 2.871 y[1] (analytic) = 0 y[1] (numeric) = 4.5911616926921720892110911424396 absolute error = 4.5911616926921720892110911424396 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.314 Order of pole = 8.492 TOP MAIN SOLVE Loop x[1] = 2.872 y[1] (analytic) = 0 y[1] (numeric) = 4.5923648462195132241121728082084 absolute error = 4.5923648462195132241121728082084 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.314 Order of pole = 8.49 TOP MAIN SOLVE Loop x[1] = 2.873 y[1] (analytic) = 0 y[1] (numeric) = 4.5935671961760931453427962217216 absolute error = 4.5935671961760931453427962217216 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.314 Order of pole = 8.487 TOP MAIN SOLVE Loop x[1] = 2.874 y[1] (analytic) = 0 y[1] (numeric) = 4.594768742877187855058229117426 absolute error = 4.594768742877187855058229117426 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.314 Order of pole = 8.484 TOP MAIN SOLVE Loop x[1] = 2.875 y[1] (analytic) = 0 y[1] (numeric) = 4.5959694866389611245886372982537 absolute error = 4.5959694866389611245886372982537 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.314 Order of pole = 8.481 TOP MAIN SOLVE Loop x[1] = 2.876 y[1] (analytic) = 0 y[1] (numeric) = 4.59716942777846233791365795707 absolute error = 4.59716942777846233791365795707 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.314 Order of pole = 8.478 memory used=927.0MB, alloc=4.6MB, time=97.46 TOP MAIN SOLVE Loop x[1] = 2.877 y[1] (analytic) = 0 y[1] (numeric) = 4.5983685666136243358073847827932 absolute error = 4.5983685666136243358073847827932 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.314 Order of pole = 8.475 TOP MAIN SOLVE Loop x[1] = 2.878 y[1] (analytic) = 0 y[1] (numeric) = 4.5995669034632612606642427472901 absolute error = 4.5995669034632612606642427472901 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.314 Order of pole = 8.472 TOP MAIN SOLVE Loop x[1] = 2.879 y[1] (analytic) = 0 y[1] (numeric) = 4.6007644386470664020162028307511 absolute error = 4.6007644386470664020162028307511 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.314 Order of pole = 8.469 TOP MAIN SOLVE Loop x[1] = 2.88 y[1] (analytic) = 0 y[1] (numeric) = 4.6019611724856100427517592804861 absolute error = 4.6019611724856100427517592804861 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.313 Order of pole = 8.466 TOP MAIN SOLVE Loop x[1] = 2.881 y[1] (analytic) = 0 y[1] (numeric) = 4.603157105300337306047064311313 absolute error = 4.603157105300337306047064311313 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.313 Order of pole = 8.463 TOP MAIN SOLVE Loop x[1] = 2.882 y[1] (analytic) = 0 y[1] (numeric) = 4.6043522374135660030195874452834 absolute error = 4.6043522374135660030195874452834 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.313 Order of pole = 8.46 TOP MAIN SOLVE Loop x[1] = 2.883 y[1] (analytic) = 0 y[1] (numeric) = 4.605546569148484481114638954765 absolute error = 4.605546569148484481114638954765 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.313 Order of pole = 8.457 TOP MAIN SOLVE Loop x[1] = 2.884 y[1] (analytic) = 0 y[1] (numeric) = 4.6067401008291494732350691162241 absolute error = 4.6067401008291494732350691162241 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.313 Order of pole = 8.454 TOP MAIN SOLVE Loop x[1] = 2.885 y[1] (analytic) = 0 y[1] (numeric) = 4.6079328327804839476244272027816 absolute error = 4.6079328327804839476244272027816 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.313 Order of pole = 8.451 TOP MAIN SOLVE Loop x[1] = 2.886 y[1] (analytic) = 0 y[1] (numeric) = 4.6091247653282749585138363421006 absolute error = 4.6091247653282749585138363421006 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.313 Order of pole = 8.448 TOP MAIN SOLVE Loop x[1] = 2.887 y[1] (analytic) = 0 y[1] (numeric) = 4.6103158987991714975428125427534 absolute error = 4.6103158987991714975428125427534 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.313 Order of pole = 8.445 TOP MAIN SOLVE Loop memory used=930.8MB, alloc=4.6MB, time=97.87 x[1] = 2.888 y[1] (analytic) = 0 y[1] (numeric) = 4.611506233520682345964228347265 absolute error = 4.611506233520682345964228347265 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.313 Order of pole = 8.441 TOP MAIN SOLVE Loop x[1] = 2.889 y[1] (analytic) = 0 y[1] (numeric) = 4.6126957698211739276435937038812 absolute error = 4.6126957698211739276435937038812 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.313 Order of pole = 8.438 TOP MAIN SOLVE Loop x[1] = 2.89 y[1] (analytic) = 0 y[1] (numeric) = 4.6138845080298681628627987621195 absolute error = 4.6138845080298681628627987621195 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.313 Order of pole = 8.435 TOP MAIN SOLVE Loop x[1] = 2.891 y[1] (analytic) = 0 y[1] (numeric) = 4.6150724484768403229384353896707 absolute error = 4.6150724484768403229384353896707 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.312 Order of pole = 8.432 TOP MAIN SOLVE Loop x[1] = 2.892 y[1] (analytic) = 0 y[1] (numeric) = 4.6162595914930168856647862805797 absolute error = 4.6162595914930168856647862805797 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.312 Order of pole = 8.429 TOP MAIN SOLVE Loop x[1] = 2.893 y[1] (analytic) = 0 y[1] (numeric) = 4.617445937410173391591542577193 absolute error = 4.617445937410173391591542577193 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.312 Order of pole = 8.425 TOP MAIN SOLVE Loop x[1] = 2.894 y[1] (analytic) = 0 y[1] (numeric) = 4.6186314865609323011462829614611 absolute error = 4.6186314865609323011462829614611 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.312 Order of pole = 8.422 TOP MAIN SOLVE Loop x[1] = 2.895 y[1] (analytic) = 0 y[1] (numeric) = 4.6198162392787608526117191851722 absolute error = 4.6198162392787608526117191851722 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.312 Order of pole = 8.419 TOP MAIN SOLVE Loop x[1] = 2.896 y[1] (analytic) = 0 y[1] (numeric) = 4.6210001958979689209676850039163 absolute error = 4.6210001958979689209676850039163 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.312 Order of pole = 8.416 TOP MAIN SOLVE Loop x[1] = 2.897 y[1] (analytic) = 0 y[1] (numeric) = 4.6221833567537068776078174563788 absolute error = 4.6221833567537068776078174563788 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.312 Order of pole = 8.412 TOP MAIN SOLVE Loop x[1] = 2.898 y[1] (analytic) = 0 y[1] (numeric) = 4.6233657221819634509408513892786 absolute error = 4.6233657221819634509408513892786 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.312 Order of pole = 8.409 TOP MAIN SOLVE Loop memory used=934.6MB, alloc=4.6MB, time=98.27 x[1] = 2.899 y[1] (analytic) = 0 y[1] (numeric) = 4.6245472925195635878864200692507 absolute error = 4.6245472925195635878864200692507 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.312 Order of pole = 8.406 TOP MAIN SOLVE Loop x[1] = 2.9 y[1] (analytic) = 0 y[1] (numeric) = 4.6257280681041663162752266465555 absolute error = 4.6257280681041663162752266465555 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.312 Order of pole = 8.402 TOP MAIN SOLVE Loop x[1] = 2.901 y[1] (analytic) = 0 y[1] (numeric) = 4.6269080492742626081634231420307 absolute error = 4.6269080492742626081634231420307 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.311 Order of pole = 8.399 TOP MAIN SOLVE Loop x[1] = 2.902 y[1] (analytic) = 0 y[1] (numeric) = 4.6280872363691732440710055185157 absolute error = 4.6280872363691732440710055185157 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.311 Order of pole = 8.396 TOP MAIN SOLVE Loop x[1] = 2.903 y[1] (analytic) = 0 y[1] (numeric) = 4.6292656297290466781540052714226 absolute error = 4.6292656297290466781540052714226 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.311 Order of pole = 8.392 TOP MAIN SOLVE Loop x[1] = 2.904 y[1] (analytic) = 0 y[1] (numeric) = 4.6304432296948569043202298305322 absolute error = 4.6304432296948569043202298305322 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.311 Order of pole = 8.389 TOP MAIN SOLVE Loop x[1] = 2.905 y[1] (analytic) = 0 y[1] (numeric) = 4.6316200366084013232982759068023 absolute error = 4.6316200366084013232982759068023 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.311 Order of pole = 8.385 TOP MAIN SOLVE Loop x[1] = 2.906 y[1] (analytic) = 0 y[1] (numeric) = 4.6327960508122986106695117443238 absolute error = 4.6327960508122986106695117443238 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.311 Order of pole = 8.382 TOP MAIN SOLVE Loop x[1] = 2.907 y[1] (analytic) = 0 y[1] (numeric) = 4.6339712726499865858726960488836 absolute error = 4.6339712726499865858726960488836 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.311 Order of pole = 8.379 TOP MAIN SOLVE Loop x[1] = 2.908 y[1] (analytic) = 0 y[1] (numeric) = 4.6351457024657200821908731612316 absolute error = 4.6351457024657200821908731612316 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.311 Order of pole = 8.375 TOP MAIN SOLVE Loop x[1] = 2.909 y[1] (analytic) = 0 y[1] (numeric) = 4.6363193406045688177301558254317 absolute error = 4.6363193406045688177301558254317 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.31 Order of pole = 8.372 TOP MAIN SOLVE Loop x[1] = 2.91 y[1] (analytic) = 0 y[1] (numeric) = 4.6374921874124152673999786709446 absolute error = 4.6374921874124152673999786709446 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.31 Order of pole = 8.368 TOP MAIN SOLVE Loop memory used=938.4MB, alloc=4.6MB, time=98.68 x[1] = 2.911 y[1] (analytic) = 0 y[1] (numeric) = 4.6386642432359525359043772816716 absolute error = 4.6386642432359525359043772816716 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.31 Order of pole = 8.365 TOP MAIN SOLVE Loop x[1] = 2.912 y[1] (analytic) = 0 y[1] (numeric) = 4.6398355084226822317538194664194 absolute error = 4.6398355084226822317538194664194 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.31 Order of pole = 8.361 TOP MAIN SOLVE Loop x[1] = 2.913 y[1] (analytic) = 0 y[1] (numeric) = 4.6410059833209123423070870734585 absolute error = 4.6410059833209123423070870734585 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.31 Order of pole = 8.358 TOP MAIN SOLVE Loop x[1] = 2.914 y[1] (analytic) = 0 y[1] (numeric) = 4.6421756682797551098526784073712 absolute error = 4.6421756682797551098526784073712 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.31 Order of pole = 8.354 TOP MAIN SOLVE Loop x[1] = 2.915 y[1] (analytic) = 0 y[1] (numeric) = 4.6433445636491249087391730095533 absolute error = 4.6433445636491249087391730095533 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.31 Order of pole = 8.351 TOP MAIN SOLVE Loop x[1] = 2.916 y[1] (analytic) = 0 y[1] (numeric) = 4.6445126697797361235639722548742 absolute error = 4.6445126697797361235639722548742 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.31 Order of pole = 8.347 TOP MAIN SOLVE Loop x[1] = 2.917 y[1] (analytic) = 0 y[1] (numeric) = 4.6456799870231010284298008964421 absolute error = 4.6456799870231010284298008964421 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.31 Order of pole = 8.344 TOP MAIN SOLVE Loop x[1] = 2.918 y[1] (analytic) = 0 y[1] (numeric) = 4.6468465157315276672783263584956 absolute error = 4.6468465157315276672783263584956 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.309 Order of pole = 8.34 TOP MAIN SOLVE Loop x[1] = 2.919 y[1] (analytic) = 0 y[1] (numeric) = 4.6480122562581177353102242344742 absolute error = 4.6480122562581177353102242344742 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.309 Order of pole = 8.337 TOP MAIN SOLVE Loop x[1] = 2.92 y[1] (analytic) = 0 y[1] (numeric) = 4.6491772089567644615009900936372 absolute error = 4.6491772089567644615009900936372 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.309 Order of pole = 8.333 TOP MAIN SOLVE Loop x[1] = 2.921 y[1] (analytic) = 0 y[1] (numeric) = 4.6503413741821504922217693355304 absolute error = 4.6503413741821504922217693355304 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.309 Order of pole = 8.33 TOP MAIN SOLVE Loop memory used=942.2MB, alloc=4.6MB, time=99.09 x[1] = 2.922 y[1] (analytic) = 0 y[1] (numeric) = 4.6515047522897457759744484574631 absolute error = 4.6515047522897457759744484574631 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.309 Order of pole = 8.326 TOP MAIN SOLVE Loop x[1] = 2.923 y[1] (analytic) = 0 y[1] (numeric) = 4.6526673436358054492502227162861 absolute error = 4.6526673436358054492502227162861 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.309 Order of pole = 8.323 TOP MAIN SOLVE Loop x[1] = 2.924 y[1] (analytic) = 0 y[1] (numeric) = 4.6538291485773677235208267724726 absolute error = 4.6538291485773677235208267724726 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.309 Order of pole = 8.319 TOP MAIN SOLVE Loop x[1] = 2.925 y[1] (analytic) = 0 y[1] (numeric) = 4.6549901674722517733715865021232 absolute error = 4.6549901674722517733715865021232 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.309 Order of pole = 8.316 TOP MAIN SOLVE Loop x[1] = 2.926 y[1] (analytic) = 0 y[1] (numeric) = 4.6561504006790556257854217513667 absolute error = 4.6561504006790556257854217513667 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.308 Order of pole = 8.312 TOP MAIN SOLVE Loop x[1] = 2.927 y[1] (analytic) = 0 y[1] (numeric) = 4.6573098485571540505869013880292 absolute error = 4.6573098485571540505869013880292 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.308 Order of pole = 8.309 TOP MAIN SOLVE Loop x[1] = 2.928 y[1] (analytic) = 0 y[1] (numeric) = 4.6584685114666964520554235777197 absolute error = 4.6584685114666964520554235777197 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.308 Order of pole = 8.305 TOP MAIN SOLVE Loop x[1] = 2.929 y[1] (analytic) = 0 y[1] (numeric) = 4.6596263897686047617165657759449 absolute error = 4.6596263897686047617165657759449 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.308 Order of pole = 8.302 TOP MAIN SOLVE Loop x[1] = 2.93 y[1] (analytic) = 0 y[1] (numeric) = 4.6607834838245713323206204848445 absolute error = 4.6607834838245713323206204848445 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.308 Order of pole = 8.298 TOP MAIN SOLVE Loop x[1] = 2.931 y[1] (analytic) = 0 y[1] (numeric) = 4.6619397939970568330173043729458 absolute error = 4.6619397939970568330173043729458 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.308 Order of pole = 8.295 TOP MAIN SOLVE Loop x[1] = 2.932 y[1] (analytic) = 0 y[1] (numeric) = 4.663095320649288145735599899289 absolute error = 4.663095320649288145735599899289 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.308 Order of pole = 8.291 TOP MAIN SOLVE Loop x[1] = 2.933 y[1] (analytic) = 0 y[1] (numeric) = 4.6642500641452562627776601196944 absolute error = 4.6642500641452562627776601196944 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.308 Order of pole = 8.288 TOP MAIN SOLVE Loop memory used=946.0MB, alloc=4.6MB, time=99.49 x[1] = 2.934 y[1] (analytic) = 0 y[1] (numeric) = 4.6654040248497141856356788831388 absolute error = 4.6654040248497141856356788831388 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.307 Order of pole = 8.284 TOP MAIN SOLVE Loop x[1] = 2.935 y[1] (analytic) = 0 y[1] (numeric) = 4.6665572031281748250406001505005 absolute error = 4.6665572031281748250406001505005 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.307 Order of pole = 8.281 TOP MAIN SOLVE Loop x[1] = 2.936 y[1] (analytic) = 0 y[1] (numeric) = 4.6677095993469089022515116866341 absolute error = 4.6677095993469089022515116866341 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.307 Order of pole = 8.277 TOP MAIN SOLVE Loop x[1] = 2.937 y[1] (analytic) = 0 y[1] (numeric) = 4.6688612138729428515945398901579 absolute error = 4.6688612138729428515945398901579 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.307 Order of pole = 8.274 TOP MAIN SOLVE Loop x[1] = 2.938 y[1] (analytic) = 0 y[1] (numeric) = 4.6700120470740567242600340337965 absolute error = 4.6700120470740567242600340337965 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.307 Order of pole = 8.27 TOP MAIN SOLVE Loop x[1] = 2.939 y[1] (analytic) = 0 y[1] (numeric) = 4.6711620993187820933667996919243 absolute error = 4.6711620993187820933667996919243 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.307 Order of pole = 8.267 TOP MAIN SOLVE Loop x[1] = 2.94 y[1] (analytic) = 0 y[1] (numeric) = 4.6723113709763999603021126314197 absolute error = 4.6723113709763999603021126314197 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.307 Order of pole = 8.263 TOP MAIN SOLVE Loop x[1] = 2.941 y[1] (analytic) = 0 y[1] (numeric) = 4.6734598624169386623462159373695 absolute error = 4.6734598624169386623462159373695 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.307 Order of pole = 8.26 TOP MAIN SOLVE Loop x[1] = 2.942 y[1] (analytic) = 0 y[1] (numeric) = 4.6746075740111717815899746368701 absolute error = 4.6746075740111717815899746368701 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.306 Order of pole = 8.257 TOP MAIN SOLVE Loop x[1] = 2.943 y[1] (analytic) = 0 y[1] (numeric) = 4.6757545061306160551543335724676 absolute error = 4.6757545061306160551543335724676 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.306 Order of pole = 8.253 TOP MAIN SOLVE Loop x[1] = 2.944 y[1] (analytic) = 0 y[1] (numeric) = 4.6769006591475292867201957619639 absolute error = 4.6769006591475292867201957619639 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.306 Order of pole = 8.25 TOP MAIN SOLVE Loop memory used=949.8MB, alloc=4.6MB, time=99.89 x[1] = 2.945 y[1] (analytic) = 0 y[1] (numeric) = 4.6780460334349082593773099637049 absolute error = 4.6780460334349082593773099637049 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.306 Order of pole = 8.246 TOP MAIN SOLVE Loop x[1] = 2.946 y[1] (analytic) = 0 y[1] (numeric) = 4.6791906293664866498007276463609 absolute error = 4.6791906293664866498007276463609 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.306 Order of pole = 8.243 TOP MAIN SOLVE Loop x[1] = 2.947 y[1] (analytic) = 0 y[1] (numeric) = 4.6803344473167329437633610399136 absolute error = 4.6803344473167329437633610399136 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.306 Order of pole = 8.239 TOP MAIN SOLVE Loop x[1] = 2.948 y[1] (analytic) = 0 y[1] (numeric) = 4.6814774876608483529931454203882 absolute error = 4.6814774876608483529931454203882 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.306 Order of pole = 8.236 TOP MAIN SOLVE Loop x[1] = 2.949 y[1] (analytic) = 0 y[1] (numeric) = 4.6826197507747647333832802551091 absolute error = 4.6826197507747647333832802551091 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.306 Order of pole = 8.233 TOP MAIN SOLVE Loop x[1] = 2.95 y[1] (analytic) = 0 y[1] (numeric) = 4.6837612370351425045639953082225 absolute error = 4.6837612370351425045639953082225 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.306 Order of pole = 8.229 TOP MAIN SOLVE Loop x[1] = 2.951 y[1] (analytic) = 0 y[1] (numeric) = 4.6849019468193685708442592782172 absolute error = 4.6849019468193685708442592782172 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.305 Order of pole = 8.226 TOP MAIN SOLVE Loop x[1] = 2.952 y[1] (analytic) = 0 y[1] (numeric) = 4.6860418805055542435318200104887 absolute error = 4.6860418805055542435318200104887 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.305 Order of pole = 8.222 TOP MAIN SOLVE Loop x[1] = 2.953 y[1] (analytic) = 0 y[1] (numeric) = 4.6871810384725331646399367989314 absolute error = 4.6871810384725331646399367989314 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.305 Order of pole = 8.219 TOP MAIN SOLVE Loop x[1] = 2.954 y[1] (analytic) = 0 y[1] (numeric) = 4.6883194210998592319891367614072 absolute error = 4.6883194210998592319891367614072 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.305 Order of pole = 8.216 TOP MAIN SOLVE Loop x[1] = 2.955 y[1] (analytic) = 0 y[1] (numeric) = 4.6894570287678045257122987450271 absolute error = 4.6894570287678045257122987450271 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.305 Order of pole = 8.212 TOP MAIN SOLVE Loop x[1] = 2.956 y[1] (analytic) = 0 y[1] (numeric) = 4.6905938618573572361713396887913 absolute error = 4.6905938618573572361713396887913 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.305 Order of pole = 8.209 memory used=953.7MB, alloc=4.6MB, time=100.30 TOP MAIN SOLVE Loop x[1] = 2.957 y[1] (analytic) = 0 y[1] (numeric) = 4.6917299207502195932937498435596 absolute error = 4.6917299207502195932937498435596 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.305 Order of pole = 8.206 TOP MAIN SOLVE Loop x[1] = 2.958 y[1] (analytic) = 0 y[1] (numeric) = 4.6928652058288057973371947228654 absolute error = 4.6928652058288057973371947228654 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.305 Order of pole = 8.203 TOP MAIN SOLVE Loop x[1] = 2.959 y[1] (analytic) = 0 y[1] (numeric) = 4.6939997174762399510903731330357 absolute error = 4.6939997174762399510903731330357 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.305 Order of pole = 8.199 TOP MAIN SOLVE Loop x[1] = 2.96 y[1] (analytic) = 0 y[1] (numeric) = 4.6951334560763539935182921077338 absolute error = 4.6951334560763539935182921077338 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.305 Order of pole = 8.196 TOP MAIN SOLVE Loop x[1] = 2.961 y[1] (analytic) = 0 y[1] (numeric) = 4.6962664220136856348600910506899 absolute error = 4.6962664220136856348600910506899 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.304 Order of pole = 8.193 TOP MAIN SOLVE Loop x[1] = 2.962 y[1] (analytic) = 0 y[1] (numeric) = 4.6973986156734762931875188713255 absolute error = 4.6973986156734762931875188713255 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.304 Order of pole = 8.189 TOP MAIN SOLVE Loop x[1] = 2.963 y[1] (analytic) = 0 y[1] (numeric) = 4.6985300374416690324321393814968 absolute error = 4.6985300374416690324321393814968 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.304 Order of pole = 8.186 TOP MAIN SOLVE Loop x[1] = 2.964 y[1] (analytic) = 0 y[1] (numeric) = 4.6996606877049065018893117079754 absolute error = 4.6996606877049065018893117079754 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.304 Order of pole = 8.183 TOP MAIN SOLVE Loop x[1] = 2.965 y[1] (analytic) = 0 y[1] (numeric) = 4.700790566850528877206963964837 absolute error = 4.700790566850528877206963964837 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.304 Order of pole = 8.18 TOP MAIN SOLVE Loop x[1] = 2.966 y[1] (analytic) = 0 y[1] (numeric) = 4.7019196752665718028671499229363 absolute error = 4.7019196752665718028671499229363 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.304 Order of pole = 8.177 TOP MAIN SOLVE Loop x[1] = 2.967 y[1] (analytic) = 0 y[1] (numeric) = 4.7030480133417643361683499103872 absolute error = 4.7030480133417643361683499103872 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.304 Order of pole = 8.174 TOP MAIN SOLVE Loop memory used=957.5MB, alloc=4.6MB, time=100.70 x[1] = 2.968 y[1] (analytic) = 0 y[1] (numeric) = 4.7041755814655268927164486787406 absolute error = 4.7041755814655268927164486787406 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.304 Order of pole = 8.17 TOP MAIN SOLVE Loop x[1] = 2.969 y[1] (analytic) = 0 y[1] (numeric) = 4.7053023800279691934322944746353 absolute error = 4.7053023800279691934322944746353 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.304 Order of pole = 8.167 TOP MAIN SOLVE Loop x[1] = 2.97 y[1] (analytic) = 0 y[1] (numeric) = 4.7064284094198882130837150663783 absolute error = 4.7064284094198882130837150663783 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.304 Order of pole = 8.164 TOP MAIN SOLVE Loop x[1] = 2.971 y[1] (analytic) = 0 y[1] (numeric) = 4.7075536700327661303498379894792 absolute error = 4.7075536700327661303498379894792 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.304 Order of pole = 8.161 TOP MAIN SOLVE Loop x[1] = 2.972 y[1] (analytic) = 0 y[1] (numeric) = 4.7086781622587682794255337948952 absolute error = 4.7086781622587682794255337948952 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.304 Order of pole = 8.158 TOP MAIN SOLVE Loop x[1] = 2.973 y[1] (analytic) = 0 y[1] (numeric) = 4.7098018864907411031737726089264 absolute error = 4.7098018864907411031737726089264 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.155 TOP MAIN SOLVE Loop x[1] = 2.974 y[1] (analytic) = 0 y[1] (numeric) = 4.7109248431222101078336558446193 absolute error = 4.7109248431222101078336558446193 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.152 TOP MAIN SOLVE Loop x[1] = 2.975 y[1] (analytic) = 0 y[1] (numeric) = 4.7120470325473778192918564414643 absolute error = 4.7120470325473778192918564414643 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.149 TOP MAIN SOLVE Loop x[1] = 2.976 y[1] (analytic) = 0 y[1] (numeric) = 4.7131684551611217409251725533987 absolute error = 4.7131684551611217409251725533987 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.146 TOP MAIN SOLVE Loop x[1] = 2.977 y[1] (analytic) = 0 y[1] (numeric) = 4.7142891113589923130218711549234 absolute error = 4.7142891113589923130218711549234 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.143 TOP MAIN SOLVE Loop x[1] = 2.978 y[1] (analytic) = 0 y[1] (numeric) = 4.7154090015372108737894695917932 absolute error = 4.7154090015372108737894695917932 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.14 TOP MAIN SOLVE Loop memory used=961.3MB, alloc=4.6MB, time=101.11 x[1] = 2.979 y[1] (analytic) = 0 y[1] (numeric) = 4.7165281260926676219565746665197 absolute error = 4.7165281260926676219565746665197 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.137 TOP MAIN SOLVE Loop x[1] = 2.98 y[1] (analytic) = 0 y[1] (numeric) = 4.7176464854229195809763704201132 absolute error = 4.7176464854229195809763704201132 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.134 TOP MAIN SOLVE Loop x[1] = 2.981 y[1] (analytic) = 0 y[1] (numeric) = 4.7187640799261885648393173503607 absolute error = 4.7187640799261885648393173503607 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.131 TOP MAIN SOLVE Loop x[1] = 2.982 y[1] (analytic) = 0 y[1] (numeric) = 4.719880910001359145502597393765 absolute error = 4.719880910001359145502597393765 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.129 TOP MAIN SOLVE Loop x[1] = 2.983 y[1] (analytic) = 0 y[1] (numeric) = 4.7209969760479766219438105933297 absolute error = 4.7209969760479766219438105933297 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.126 TOP MAIN SOLVE Loop x[1] = 2.984 y[1] (analytic) = 0 y[1] (numeric) = 4.7221122784662449908464009779415 absolute error = 4.7221122784662449908464009779415 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.123 TOP MAIN SOLVE Loop x[1] = 2.985 y[1] (analytic) = 0 y[1] (numeric) = 4.7232268176570249189242607914439 absolute error = 4.7232268176570249189242607914439 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.12 TOP MAIN SOLVE Loop x[1] = 2.986 y[1] (analytic) = 0 y[1] (numeric) = 4.7243405940218317168929338308907 absolute error = 4.7243405940218317168929338308907 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.117 TOP MAIN SOLVE Loop x[1] = 2.987 y[1] (analytic) = 0 y[1] (numeric) = 4.72545360796283331509481028418 absolute error = 4.72545360796283331509481028418 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.115 TOP MAIN SOLVE Loop x[1] = 2.988 y[1] (analytic) = 0 y[1] (numeric) = 4.7265658598828482407856770975722 absolute error = 4.7265658598828482407856770975722 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.112 TOP MAIN SOLVE Loop x[1] = 2.989 y[1] (analytic) = 0 y[1] (numeric) = 4.7276773501853435970899595537587 absolute error = 4.7276773501853435970899595537587 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.109 TOP MAIN SOLVE Loop x[1] = 2.99 y[1] (analytic) = 0 y[1] (numeric) = 4.7287880792744330436319614014339 absolute error = 4.7287880792744330436319614014339 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.107 TOP MAIN SOLVE Loop memory used=965.1MB, alloc=4.6MB, time=101.52 x[1] = 2.991 y[1] (analytic) = 0 y[1] (numeric) = 4.7298980475548747788503825480068 absolute error = 4.7298980475548747788503825480068 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.104 TOP MAIN SOLVE Loop x[1] = 2.992 y[1] (analytic) = 0 y[1] (numeric) = 4.7310072554320695240033650084293 absolute error = 4.7310072554320695240033650084293 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.101 TOP MAIN SOLVE Loop x[1] = 2.993 y[1] (analytic) = 0 y[1] (numeric) = 4.732115703312058508871289495385 absolute error = 4.732115703312058508871289495385 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.099 TOP MAIN SOLVE Loop x[1] = 2.994 y[1] (analytic) = 0 y[1] (numeric) = 4.7332233916015214591645167395388 absolute error = 4.7332233916015214591645167395388 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.096 TOP MAIN SOLVE Loop x[1] = 2.995 y[1] (analytic) = 0 y[1] (numeric) = 4.7343303207077745856432393434556 absolute error = 4.7343303207077745856432393434556 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.094 TOP MAIN SOLVE Loop x[1] = 2.996 y[1] (analytic) = 0 y[1] (numeric) = 4.7354364910387685749565816994217 absolute error = 4.7354364910387685749565816994217 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.091 TOP MAIN SOLVE Loop x[1] = 2.997 y[1] (analytic) = 0 y[1] (numeric) = 4.7365419030030865822080572400023 absolute error = 4.7365419030030865822080572400023 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.089 TOP MAIN SOLVE Loop x[1] = 2.998 y[1] (analytic) = 0 y[1] (numeric) = 4.7376465570099422252544640410096 absolute error = 4.7376465570099422252544640410096 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.086 TOP MAIN SOLVE Loop x[1] = 2.999 y[1] (analytic) = 0 y[1] (numeric) = 4.7387504534691775807452715598897 absolute error = 4.7387504534691775807452715598897 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.084 TOP MAIN SOLVE Loop x[1] = 3 y[1] (analytic) = 0 y[1] (numeric) = 4.7398535927912611819095230686324 absolute error = 4.7398535927912611819095230686324 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.081 TOP MAIN SOLVE Loop x[1] = 3.001 y[1] (analytic) = 0 y[1] (numeric) = 4.7409559753872860180972501294129 absolute error = 4.7409559753872860180972501294129 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.079 TOP MAIN SOLVE Loop memory used=968.9MB, alloc=4.6MB, time=101.92 x[1] = 3.002 y[1] (analytic) = 0 y[1] (numeric) = 4.7420576016689675360823672635558 absolute error = 4.7420576016689675360823672635558 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.077 TOP MAIN SOLVE Loop x[1] = 3.003 y[1] (analytic) = 0 y[1] (numeric) = 4.7431584720486416431339867803163 absolute error = 4.7431584720486416431339867803163 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.074 TOP MAIN SOLVE Loop x[1] = 3.004 y[1] (analytic) = 0 y[1] (numeric) = 4.7442585869392627118630655616657 absolute error = 4.7442585869392627118630655616657 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.072 TOP MAIN SOLVE Loop x[1] = 3.005 y[1] (analytic) = 0 y[1] (numeric) = 4.745357946754401586851267442994 absolute error = 4.745357946754401586851267442994 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.07 TOP MAIN SOLVE Loop x[1] = 3.006 y[1] (analytic) = 0 y[1] (numeric) = 4.7464565519082435930688966876616 absolute error = 4.7464565519082435930688966876616 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.068 TOP MAIN SOLVE Loop x[1] = 3.007 y[1] (analytic) = 0 y[1] (numeric) = 4.7475544028155865460887299258924 absolute error = 4.7475544028155865460887299258924 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.065 TOP MAIN SOLVE Loop x[1] = 3.008 y[1] (analytic) = 0 y[1] (numeric) = 4.7486514998918387641025458158601 absolute error = 4.7486514998918387641025458158601 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.063 TOP MAIN SOLVE Loop x[1] = 3.009 y[1] (analytic) = 0 y[1] (numeric) = 4.7497478435530170817471235872184 absolute error = 4.7497478435530170817471235872184 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.061 TOP MAIN SOLVE Loop x[1] = 3.01 y[1] (analytic) = 0 y[1] (numeric) = 4.7508434342157448657464535450267 absolute error = 4.7508434342157448657464535450267 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.059 TOP MAIN SOLVE Loop x[1] = 3.011 y[1] (analytic) = 0 y[1] (numeric) = 4.7519382722972500323768745452642 absolute error = 4.7519382722972500323768745452642 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.057 TOP MAIN SOLVE Loop x[1] = 3.012 y[1] (analytic) = 0 y[1] (numeric) = 4.7530323582153630667618254021604 absolute error = 4.7530323582153630667618254021604 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.055 TOP MAIN SOLVE Loop x[1] = 3.013 y[1] (analytic) = 0 y[1] (numeric) = 4.7541256923885150440028691526447 absolute error = 4.7541256923885150440028691526447 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.053 memory used=972.7MB, alloc=4.6MB, time=102.32 TOP MAIN SOLVE Loop x[1] = 3.014 y[1] (analytic) = 0 y[1] (numeric) = 4.7552182752357356521536210845768 absolute error = 4.7552182752357356521536210845768 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.051 TOP MAIN SOLVE Loop x[1] = 3.015 y[1] (analytic) = 0 y[1] (numeric) = 4.7563101071766512170431834333122 absolute error = 4.7563101071766512170431834333122 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.049 TOP MAIN SOLVE Loop x[1] = 3.016 y[1] (analytic) = 0 y[1] (numeric) = 4.7574011886314827289556616658213 absolute error = 4.7574011886314827289556616658213 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.047 TOP MAIN SOLVE Loop x[1] = 3.017 y[1] (analytic) = 0 y[1] (numeric) = 4.7584915200210438711723093032653 absolute error = 4.7584915200210438711723093032653 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.045 TOP MAIN SOLVE Loop x[1] = 3.018 y[1] (analytic) = 0 y[1] (numeric) = 4.7595811017667390503828202818782 absolute error = 4.7595811017667390503828202818782 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.043 TOP MAIN SOLVE Loop x[1] = 3.019 y[1] (analytic) = 0 y[1] (numeric) = 4.7606699342905614289722599184507 absolute error = 4.7606699342905614289722599184507 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.041 TOP MAIN SOLVE Loop x[1] = 3.02 y[1] (analytic) = 0 y[1] (numeric) = 4.7617580180150909591900976309033 absolute error = 4.7617580180150909591900976309033 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 8.04 TOP MAIN SOLVE Loop x[1] = 3.021 y[1] (analytic) = 0 y[1] (numeric) = 4.7628453533634924192077766666081 absolute error = 4.7628453533634924192077766666081 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.304 Order of pole = 8.038 TOP MAIN SOLVE Loop x[1] = 3.022 y[1] (analytic) = 0 y[1] (numeric) = 4.7639319407595134510712282115154 absolute error = 4.7639319407595134510712282115154 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.304 Order of pole = 8.036 TOP MAIN SOLVE Loop x[1] = 3.023 y[1] (analytic) = 0 y[1] (numeric) = 4.7650177806274826005547093919935 absolute error = 4.7650177806274826005547093919935 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.304 Order of pole = 8.034 TOP MAIN SOLVE Loop x[1] = 3.024 y[1] (analytic) = 0 y[1] (numeric) = 4.7661028733923073589223168388415 absolute error = 4.7661028733923073589223168388415 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.304 Order of pole = 8.033 TOP MAIN SOLVE Loop memory used=976.5MB, alloc=4.6MB, time=102.72 x[1] = 3.025 y[1] (analytic) = 0 y[1] (numeric) = 4.7671872194794722066034996594159 absolute error = 4.7671872194794722066034996594159 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.304 Order of pole = 8.031 TOP MAIN SOLVE Loop x[1] = 3.026 y[1] (analytic) = 0 y[1] (numeric) = 4.7682708193150366587888678594641 absolute error = 4.7682708193150366587888678594641 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.304 Order of pole = 8.029 TOP MAIN SOLVE Loop x[1] = 3.027 y[1] (analytic) = 0 y[1] (numeric) = 4.7693536733256333129525644713048 absolute error = 4.7693536733256333129525644713048 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.304 Order of pole = 8.028 TOP MAIN SOLVE Loop x[1] = 3.028 y[1] (analytic) = 0 y[1] (numeric) = 4.7704357819384658983074418796855 absolute error = 4.7704357819384658983074418796855 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.304 Order of pole = 8.026 TOP MAIN SOLVE Loop x[1] = 3.029 y[1] (analytic) = 0 y[1] (numeric) = 4.7715171455813073271992550911946 absolute error = 4.7715171455813073271992550911946 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.304 Order of pole = 8.025 TOP MAIN SOLVE Loop x[1] = 3.03 y[1] (analytic) = 0 y[1] (numeric) = 4.7725977646824977484460569677604 absolute error = 4.7725977646824977484460569677604 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.304 Order of pole = 8.023 TOP MAIN SOLVE Loop x[1] = 3.031 y[1] (analytic) = 0 y[1] (numeric) = 4.7736776396709426026289527397455 absolute error = 4.7736776396709426026289527397455 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.304 Order of pole = 8.022 TOP MAIN SOLVE Loop x[1] = 3.032 y[1] (analytic) = 0 y[1] (numeric) = 4.7747567709761106793403434296829 absolute error = 4.7747567709761106793403434296829 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.305 Order of pole = 8.02 TOP MAIN SOLVE Loop x[1] = 3.033 y[1] (analytic) = 0 y[1] (numeric) = 4.7758351590280321763957601540236 absolute error = 4.7758351590280321763957601540236 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.305 Order of pole = 8.019 TOP MAIN SOLVE Loop x[1] = 3.034 y[1] (analytic) = 0 y[1] (numeric) = 4.7769128042572967610153636276041 absolute error = 4.7769128042572967610153636276041 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.305 Order of pole = 8.017 TOP MAIN SOLVE Loop x[1] = 3.035 y[1] (analytic) = 0 y[1] (numeric) = 4.7779897070950516329811555741194 absolute error = 4.7779897070950516329811555741194 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.305 Order of pole = 8.016 TOP MAIN SOLVE Loop memory used=980.4MB, alloc=4.6MB, time=103.12 x[1] = 3.036 y[1] (analytic) = 0 y[1] (numeric) = 4.7790658679729995897759211459337 absolute error = 4.7790658679729995897759211459337 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.305 Order of pole = 8.015 TOP MAIN SOLVE Loop x[1] = 3.037 y[1] (analytic) = 0 y[1] (numeric) = 4.780141287323397093709893878298 absolute error = 4.780141287323397093709893878298 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.305 Order of pole = 8.013 TOP MAIN SOLVE Loop x[1] = 3.038 y[1] (analytic) = 0 y[1] (numeric) = 4.7812159655790523410411071466949 absolute error = 4.7812159655790523410411071466949 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.305 Order of pole = 8.012 TOP MAIN SOLVE Loop x[1] = 3.039 y[1] (analytic) = 0 y[1] (numeric) = 4.7822899031733233330953685618234 absolute error = 4.7822899031733233330953685618234 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.305 Order of pole = 8.011 TOP MAIN SOLVE Loop x[1] = 3.04 y[1] (analytic) = 0 y[1] (numeric) = 4.7833631005401159493917662248863 absolute error = 4.7833631005401159493917662248863 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.306 Order of pole = 8.01 TOP MAIN SOLVE Loop x[1] = 3.041 y[1] (analytic) = 0 y[1] (numeric) = 4.7844355581138820227795882765762 absolute error = 4.7844355581138820227795882765762 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.306 Order of pole = 8.009 TOP MAIN SOLVE Loop x[1] = 3.042 y[1] (analytic) = 0 y[1] (numeric) = 4.7855072763296174165925097066909 absolute error = 4.7855072763296174165925097066909 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.306 Order of pole = 8.007 TOP MAIN SOLVE Loop x[1] = 3.043 y[1] (analytic) = 0 y[1] (numeric) = 4.7865782556228601038258729478637 absolute error = 4.7865782556228601038258729478637 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.306 Order of pole = 8.006 TOP MAIN SOLVE Loop x[1] = 3.044 y[1] (analytic) = 0 y[1] (numeric) = 4.7876484964296882483428613566891 absolute error = 4.7876484964296882483428613566891 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.306 Order of pole = 8.005 TOP MAIN SOLVE Loop x[1] = 3.045 y[1] (analytic) = 0 y[1] (numeric) = 4.7887179991867182881153372887767 absolute error = 4.7887179991867182881153372887767 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.306 Order of pole = 8.004 TOP MAIN SOLVE Loop x[1] = 3.046 y[1] (analytic) = 0 y[1] (numeric) = 4.7897867643311030205050891011893 absolute error = 4.7897867643311030205050891011893 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.307 Order of pole = 8.003 TOP MAIN SOLVE Loop x[1] = 3.047 y[1] (analytic) = 0 y[1] (numeric) = 4.7908547923005296895912040665357 absolute error = 4.7908547923005296895912040665357 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.307 Order of pole = 8.002 memory used=984.2MB, alloc=4.6MB, time=103.53 TOP MAIN SOLVE Loop x[1] = 3.048 y[1] (analytic) = 0 y[1] (numeric) = 4.7919220835332180755492568579042 absolute error = 4.7919220835332180755492568579042 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.307 Order of pole = 8.001 TOP MAIN SOLVE Loop x[1] = 3.049 y[1] (analytic) = 0 y[1] (numeric) = 4.7929886384679185860879759630565 absolute error = 4.7929886384679185860879759630565 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.307 Order of pole = 8 TOP MAIN SOLVE Loop x[1] = 3.05 y[1] (analytic) = 0 y[1] (numeric) = 4.7940544575439103499490231100646 absolute error = 4.7940544575439103499490231100646 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.307 Order of pole = 7.999 TOP MAIN SOLVE Loop x[1] = 3.051 y[1] (analytic) = 0 y[1] (numeric) = 4.7951195412009993124754935350779 absolute error = 4.7951195412009993124754935350779 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.307 Order of pole = 7.999 TOP MAIN SOLVE Loop x[1] = 3.052 y[1] (analytic) = 0 y[1] (numeric) = 4.7961838898795163332547176963636 absolute error = 4.7961838898795163332547176963636 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.308 Order of pole = 7.998 TOP MAIN SOLVE Loop x[1] = 3.053 y[1] (analytic) = 0 y[1] (numeric) = 4.7972475040203152858409178373819 absolute error = 4.7972475040203152858409178373819 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.308 Order of pole = 7.997 TOP MAIN SOLVE Loop x[1] = 3.054 y[1] (analytic) = 0 y[1] (numeric) = 4.7983103840647711595632456256491 absolute error = 4.7983103840647711595632456256491 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.308 Order of pole = 7.996 TOP MAIN SOLVE Loop x[1] = 3.055 y[1] (analytic) = 0 y[1] (numeric) = 4.799372530454778163424699943708 absolute error = 4.799372530454778163424699943708 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.308 Order of pole = 7.996 TOP MAIN SOLVE Loop x[1] = 3.056 y[1] (analytic) = 0 y[1] (numeric) = 4.800433943632747832097396783882 absolute error = 4.800433943632747832097396783882 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.308 Order of pole = 7.995 TOP MAIN SOLVE Loop x[1] = 3.057 y[1] (analytic) = 0 y[1] (numeric) = 4.8014946240416071340196360998372 absolute error = 4.8014946240416071340196360998372 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.309 Order of pole = 7.994 TOP MAIN SOLVE Loop x[1] = 3.058 y[1] (analytic) = 0 y[1] (numeric) = 4.8025545721247965816001833955201 absolute error = 4.8025545721247965816001833955201 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.309 Order of pole = 7.993 TOP MAIN SOLVE Loop memory used=988.0MB, alloc=4.6MB, time=103.94 x[1] = 3.059 y[1] (analytic) = 0 y[1] (numeric) = 4.8036137883262683435351567859888 absolute error = 4.8036137883262683435351567859888 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.309 Order of pole = 7.993 TOP MAIN SOLVE Loop x[1] = 3.06 y[1] (analytic) = 0 y[1] (numeric) = 4.8046722730904843592428832452057 absolute error = 4.8046722730904843592428832452057 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.309 Order of pole = 7.992 TOP MAIN SOLVE Loop x[1] = 3.061 y[1] (analytic) = 0 y[1] (numeric) = 4.8057300268624144554220607632232 absolute error = 4.8057300268624144554220607632232 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.309 Order of pole = 7.992 TOP MAIN SOLVE Loop x[1] = 3.062 y[1] (analytic) = 0 y[1] (numeric) = 4.8067870500875344647385361695606 absolute error = 4.8067870500875344647385361695606 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.31 Order of pole = 7.991 TOP MAIN SOLVE Loop x[1] = 3.063 y[1] (analytic) = 0 y[1] (numeric) = 4.8078433432118243466459814411538 absolute error = 4.8078433432118243466459814411538 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.31 Order of pole = 7.991 TOP MAIN SOLVE Loop x[1] = 3.064 y[1] (analytic) = 0 y[1] (numeric) = 4.8088989066817663103457244022467 absolute error = 4.8088989066817663103457244022467 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.31 Order of pole = 7.99 TOP MAIN SOLVE Loop x[1] = 3.065 y[1] (analytic) = 0 y[1] (numeric) = 4.809953740944342939890962840192 absolute error = 4.809953740944342939890962840192 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.31 Order of pole = 7.99 TOP MAIN SOLVE Loop x[1] = 3.066 y[1] (analytic) = 0 y[1] (numeric) = 4.8110078464470353214405642055327 absolute error = 4.8110078464470353214405642055327 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.311 Order of pole = 7.989 TOP MAIN SOLVE Loop x[1] = 3.067 y[1] (analytic) = 0 y[1] (numeric) = 4.8120612236378211726676262371435 absolute error = 4.8120612236378211726676262371435 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.311 Order of pole = 7.989 TOP MAIN SOLVE Loop x[1] = 3.068 y[1] (analytic) = 0 y[1] (numeric) = 4.8131138729651729743279470538153 absolute error = 4.8131138729651729743279470538153 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.311 Order of pole = 7.989 TOP MAIN SOLVE Loop x[1] = 3.069 y[1] (analytic) = 0 y[1] (numeric) = 4.8141657948780561039935264826679 absolute error = 4.8141657948780561039935264826679 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.311 Order of pole = 7.988 TOP MAIN SOLVE Loop memory used=991.8MB, alloc=4.6MB, time=104.34 x[1] = 3.07 y[1] (analytic) = 0 y[1] (numeric) = 4.8152169898259269719561936523612 absolute error = 4.8152169898259269719561936523612 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.312 Order of pole = 7.988 TOP MAIN SOLVE Loop x[1] = 3.071 y[1] (analytic) = 0 y[1] (numeric) = 4.8162674582587311593064291654453 absolute error = 4.8162674582587311593064291654453 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.312 Order of pole = 7.988 TOP MAIN SOLVE Loop x[1] = 3.072 y[1] (analytic) = 0 y[1] (numeric) = 4.8173172006269015581924234795312 absolute error = 4.8173172006269015581924234795312 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.312 Order of pole = 7.987 TOP MAIN SOLVE Loop x[1] = 3.073 y[1] (analytic) = 0 y[1] (numeric) = 4.818366217381356514264386471469 absolute error = 4.818366217381356514264386471469 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.312 Order of pole = 7.987 TOP MAIN SOLVE Loop x[1] = 3.074 y[1] (analytic) = 0 y[1] (numeric) = 4.8194145089734979713090965325831 absolute error = 4.8194145089734979713090965325831 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.313 Order of pole = 7.987 TOP MAIN SOLVE Loop x[1] = 3.075 y[1] (analytic) = 0 y[1] (numeric) = 4.8204620758552096180796509464174 absolute error = 4.8204620758552096180796509464174 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.313 Order of pole = 7.987 TOP MAIN SOLVE Loop x[1] = 3.076 y[1] (analytic) = 0 y[1] (numeric) = 4.8215089184788550373253527335816 absolute error = 4.8215089184788550373253527335816 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.313 Order of pole = 7.987 TOP MAIN SOLVE Loop x[1] = 3.077 y[1] (analytic) = 0 y[1] (numeric) = 4.8225550372972758570266426113477 absolute error = 4.8225550372972758570266426113477 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.313 Order of pole = 7.987 TOP MAIN SOLVE Loop x[1] = 3.078 y[1] (analytic) = 0 y[1] (numeric) = 4.8236004327637899038399582088101 absolute error = 4.8236004327637899038399582088101 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.314 Order of pole = 7.987 TOP MAIN SOLVE Loop x[1] = 3.079 y[1] (analytic) = 0 y[1] (numeric) = 4.8246451053321893587573762018799 absolute error = 4.8246451053321893587573762018799 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.314 Order of pole = 7.987 TOP MAIN SOLVE Loop x[1] = 3.08 y[1] (analytic) = 0 y[1] (numeric) = 4.8256890554567389149858665863175 absolute error = 4.8256890554567389149858665863175 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.314 Order of pole = 7.986 TOP MAIN SOLVE Loop x[1] = 3.081 y[1] (analytic) = 0 y[1] (numeric) = 4.8267322835921739380509618916027 absolute error = 4.8267322835921739380509618916027 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.314 Order of pole = 7.986 TOP MAIN SOLVE Loop memory used=995.6MB, alloc=4.6MB, time=104.74 x[1] = 3.082 y[1] (analytic) = 0 y[1] (numeric) = 4.8277747901936986281296177538813 absolute error = 4.8277747901936986281296177538813 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.315 Order of pole = 7.986 TOP MAIN SOLVE Loop x[1] = 3.083 y[1] (analytic) = 0 y[1] (numeric) = 4.8288165757169841846170149126903 absolute error = 4.8288165757169841846170149126903 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.315 Order of pole = 7.987 TOP MAIN SOLVE Loop x[1] = 3.084 y[1] (analytic) = 0 y[1] (numeric) = 4.8298576406181669729320263738363 absolute error = 4.8298576406181669729320263738363 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.315 Order of pole = 7.987 TOP MAIN SOLVE Loop x[1] = 3.085 y[1] (analytic) = 0 y[1] (numeric) = 4.8308979853538466935660471898599 absolute error = 4.8308979853538466935660471898599 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.316 Order of pole = 7.987 TOP MAIN SOLVE Loop x[1] = 3.086 y[1] (analytic) = 0 y[1] (numeric) = 4.8319376103810845533798580501427 absolute error = 4.8319376103810845533798580501427 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.316 Order of pole = 7.987 TOP MAIN SOLVE Loop x[1] = 3.087 y[1] (analytic) = 0 y[1] (numeric) = 4.8329765161574014391531676450832 absolute error = 4.8329765161574014391531676450832 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.316 Order of pole = 7.987 TOP MAIN SOLVE Loop x[1] = 3.088 y[1] (analytic) = 0 y[1] (numeric) = 4.8340147031407760933914525730573 absolute error = 4.8340147031407760933914525730573 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.317 Order of pole = 7.987 TOP MAIN SOLVE Loop x[1] = 3.089 y[1] (analytic) = 0 y[1] (numeric) = 4.8350521717896432923946873952675 absolute error = 4.8350521717896432923946873952675 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.317 Order of pole = 7.987 TOP MAIN SOLVE Loop x[1] = 3.09 y[1] (analytic) = 0 y[1] (numeric) = 4.8360889225628920265925313122481 absolute error = 4.8360889225628920265925313122481 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.317 Order of pole = 7.987 TOP MAIN SOLVE Loop x[1] = 3.091 y[1] (analytic) = 0 y[1] (numeric) = 4.8371249559198636831505118369019 absolute error = 4.8371249559198636831505118369019 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.317 Order of pole = 7.988 TOP MAIN SOLVE Loop x[1] = 3.092 y[1] (analytic) = 0 y[1] (numeric) = 4.8381602723203502308517197726754 absolute error = 4.8381602723203502308517197726754 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.318 Order of pole = 7.988 TOP MAIN SOLVE Loop memory used=999.4MB, alloc=4.6MB, time=105.14 x[1] = 3.093 y[1] (analytic) = 0 y[1] (numeric) = 4.8391948722245924072585037720072 absolute error = 4.8391948722245924072585037720072 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.318 Order of pole = 7.988 TOP MAIN SOLVE Loop x[1] = 3.094 y[1] (analytic) = 0 y[1] (numeric) = 4.840228756093277908158626749674 absolute error = 4.840228756093277908158626749674 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.318 Order of pole = 7.988 TOP MAIN SOLVE Loop x[1] = 3.095 y[1] (analytic) = 0 y[1] (numeric) = 4.841261924387539579300320458288 absolute error = 4.841261924387539579300320458288 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.319 Order of pole = 7.989 TOP MAIN SOLVE Loop x[1] = 3.096 y[1] (analytic) = 0 y[1] (numeric) = 4.8422943775689536104206485991363 absolute error = 4.8422943775689536104206485991363 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.319 Order of pole = 7.989 TOP MAIN SOLVE Loop x[1] = 3.097 y[1] (analytic) = 0 y[1] (numeric) = 4.8433261160995377315715629409629 absolute error = 4.8433261160995377315715629409629 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.319 Order of pole = 7.989 TOP MAIN SOLVE Loop x[1] = 3.098 y[1] (analytic) = 0 y[1] (numeric) = 4.8443571404417494117480110523493 absolute error = 4.8443571404417494117480110523493 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.32 Order of pole = 7.99 TOP MAIN SOLVE Loop x[1] = 3.099 y[1] (analytic) = 0 y[1] (numeric) = 4.8453874510584840598224284202179 absolute error = 4.8453874510584840598224284202179 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.32 Order of pole = 7.99 TOP MAIN SOLVE Loop x[1] = 3.1 y[1] (analytic) = 0 y[1] (numeric) = 4.8464170484130732277899219278237 absolute error = 4.8464170484130732277899219278237 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.32 Order of pole = 7.991 TOP MAIN SOLVE Loop x[1] = 3.101 y[1] (analytic) = 0 y[1] (numeric) = 4.8474459329692828163284259005882 absolute error = 4.8474459329692828163284259005882 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.321 Order of pole = 7.991 TOP MAIN SOLVE Loop x[1] = 3.102 y[1] (analytic) = 0 y[1] (numeric) = 4.8484741051913112826780861974214 absolute error = 4.8484741051913112826780861974214 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.321 Order of pole = 7.991 TOP MAIN SOLVE Loop x[1] = 3.103 y[1] (analytic) = 0 y[1] (numeric) = 4.8495015655437878508441021289426 absolute error = 4.8495015655437878508441021289426 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.321 Order of pole = 7.992 TOP MAIN SOLVE Loop memory used=1003.3MB, alloc=4.6MB, time=105.54 x[1] = 3.104 y[1] (analytic) = 0 y[1] (numeric) = 4.8505283144917707241272303224074 absolute error = 4.8505283144917707241272303224074 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.322 Order of pole = 7.992 TOP MAIN SOLVE Loop x[1] = 3.105 y[1] (analytic) = 0 y[1] (numeric) = 4.8515543525007452999861290263389 absolute error = 4.8515543525007452999861290263389 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.322 Order of pole = 7.993 TOP MAIN SOLVE Loop x[1] = 3.106 y[1] (analytic) = 0 y[1] (numeric) = 4.8525796800366223872356957560097 absolute error = 4.8525796800366223872356957560097 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.322 Order of pole = 7.993 TOP MAIN SOLVE Loop x[1] = 3.107 y[1] (analytic) = 0 y[1] (numeric) = 4.853604297565736425585525624183 absolute error = 4.853604297565736425585525624183 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.323 Order of pole = 7.994 TOP MAIN SOLVE Loop x[1] = 3.108 y[1] (analytic) = 0 y[1] (numeric) = 4.8546282055548437075225921800565 absolute error = 4.8546282055548437075225921800565 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.323 Order of pole = 7.994 TOP MAIN SOLVE Loop x[1] = 3.109 y[1] (analytic) = 0 y[1] (numeric) = 4.8556514044711206025422270933228 absolute error = 4.8556514044711206025422270933228 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.323 Order of pole = 7.995 TOP MAIN SOLVE Loop x[1] = 3.11 y[1] (analytic) = 0 y[1] (numeric) = 4.8566738947821617837314495698168 absolute error = 4.8566738947821617837314495698168 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.324 Order of pole = 7.996 TOP MAIN SOLVE Loop x[1] = 3.111 y[1] (analytic) = 0 y[1] (numeric) = 4.8576956769559784567086709705231 absolute error = 4.8576956769559784567086709705231 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.324 Order of pole = 7.996 TOP MAIN SOLVE Loop x[1] = 3.112 y[1] (analytic) = 0 y[1] (numeric) = 4.8587167514609965909237747269219 absolute error = 4.8587167514609965909237747269219 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.324 Order of pole = 7.997 TOP MAIN SOLVE Loop x[1] = 3.113 y[1] (analytic) = 0 y[1] (numeric) = 4.8597371187660551533225463029077 absolute error = 4.8597371187660551533225463029077 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.325 Order of pole = 7.997 TOP MAIN SOLVE Loop x[1] = 3.114 y[1] (analytic) = 0 y[1] (numeric) = 4.8607567793404043443794026469844 absolute error = 4.8607567793404043443794026469844 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.325 Order of pole = 7.998 TOP MAIN SOLVE Loop x[1] = 3.115 y[1] (analytic) = 0 y[1] (numeric) = 4.8617757336537038365023453082658 absolute error = 4.8617757336537038365023453082658 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.325 Order of pole = 7.999 memory used=1007.1MB, alloc=4.6MB, time=105.94 TOP MAIN SOLVE Loop x[1] = 3.116 y[1] (analytic) = 0 y[1] (numeric) = 4.8627939821760210148140361561525 absolute error = 4.8627939821760210148140361561525 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.326 Order of pole = 7.999 TOP MAIN SOLVE Loop x[1] = 3.117 y[1] (analytic) = 0 y[1] (numeric) = 4.8638115253778292203128694465583 absolute error = 4.8638115253778292203128694465583 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.326 Order of pole = 8 TOP MAIN SOLVE Loop x[1] = 3.118 y[1] (analytic) = 0 y[1] (numeric) = 4.8648283637300059954178888173755 absolute error = 4.8648283637300059954178888173755 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.327 Order of pole = 8.001 TOP MAIN SOLVE Loop x[1] = 3.119 y[1] (analytic) = 0 y[1] (numeric) = 4.8658444977038313319013726726462 absolute error = 4.8658444977038313319013726726462 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.327 Order of pole = 8.001 TOP MAIN SOLVE Loop x[1] = 3.12 y[1] (analytic) = 0 y[1] (numeric) = 4.8668599277709859212128863287953 absolute error = 4.8668599277709859212128863287953 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.327 Order of pole = 8.002 TOP MAIN SOLVE Loop x[1] = 3.121 y[1] (analytic) = 0 y[1] (numeric) = 4.8678746544035494071985742474243 absolute error = 4.8678746544035494071985742474243 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.328 Order of pole = 8.003 TOP MAIN SOLVE Loop x[1] = 3.122 y[1] (analytic) = 0 y[1] (numeric) = 4.8688886780739986412194406677135 absolute error = 4.8688886780739986412194406677135 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.328 Order of pole = 8.004 TOP MAIN SOLVE Loop x[1] = 3.123 y[1] (analytic) = 0 y[1] (numeric) = 4.8699019992552059396723419775754 absolute error = 4.8699019992552059396723419775754 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.328 Order of pole = 8.004 TOP MAIN SOLVE Loop x[1] = 3.124 y[1] (analytic) = 0 y[1] (numeric) = 4.8709146184204373439173892264906 absolute error = 4.8709146184204373439173892264906 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.329 Order of pole = 8.005 TOP MAIN SOLVE Loop x[1] = 3.125 y[1] (analytic) = 0 y[1] (numeric) = 4.8719265360433508826154342845828 absolute error = 4.8719265360433508826154342845828 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.329 Order of pole = 8.006 TOP MAIN SOLVE Loop x[1] = 3.126 y[1] (analytic) = 0 y[1] (numeric) = 4.8729377525979948364792882920919 absolute error = 4.8729377525979948364792882920919 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.329 Order of pole = 8.007 TOP MAIN SOLVE Loop memory used=1010.9MB, alloc=4.6MB, time=106.35 x[1] = 3.127 y[1] (analytic) = 0 y[1] (numeric) = 4.8739482685588060054422962211283 absolute error = 4.8739482685588060054422962211283 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.33 Order of pole = 8.007 TOP MAIN SOLVE Loop x[1] = 3.128 y[1] (analytic) = 0 y[1] (numeric) = 4.8749580844006079782478665875755 absolute error = 4.8749580844006079782478665875755 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.33 Order of pole = 8.008 TOP MAIN SOLVE Loop x[1] = 3.129 y[1] (analytic) = 0 y[1] (numeric) = 4.8759672005986094044635306053948 absolute error = 4.8759672005986094044635306053948 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.331 Order of pole = 8.009 TOP MAIN SOLVE Loop x[1] = 3.13 y[1] (analytic) = 0 y[1] (numeric) = 4.8769756176284022689230803685105 absolute error = 4.8769756176284022689230803685105 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.331 Order of pole = 8.01 TOP MAIN SOLVE Loop x[1] = 3.131 y[1] (analytic) = 0 y[1] (numeric) = 4.8779833359659601686003109770573 absolute error = 4.8779833359659601686003109770573 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.331 Order of pole = 8.01 TOP MAIN SOLVE Loop x[1] = 3.132 y[1] (analytic) = 0 y[1] (numeric) = 4.8789903560876365919178668951918 absolute error = 4.8789903560876365919178668951918 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.332 Order of pole = 8.011 TOP MAIN SOLVE Loop x[1] = 3.133 y[1] (analytic) = 0 y[1] (numeric) = 4.879996678470163200494668237038 absolute error = 4.879996678470163200494668237038 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.332 Order of pole = 8.012 TOP MAIN SOLVE Loop x[1] = 3.134 y[1] (analytic) = 0 y[1] (numeric) = 4.8810023035906481133353681257957 absolute error = 4.8810023035906481133353681257957 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.332 Order of pole = 8.013 TOP MAIN SOLVE Loop x[1] = 3.135 y[1] (analytic) = 0 y[1] (numeric) = 4.8820072319265741934652677587176 absolute error = 4.8820072319265741934652677587176 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.333 Order of pole = 8.014 TOP MAIN SOLVE Loop x[1] = 3.136 y[1] (analytic) = 0 y[1] (numeric) = 4.8830114639557973370140913376947 absolute error = 4.8830114639557973370140913376947 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.333 Order of pole = 8.015 TOP MAIN SOLVE Loop x[1] = 3.137 y[1] (analytic) = 0 y[1] (numeric) = 4.8840150001565447647519985917114 absolute error = 4.8840150001565447647519985917114 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.334 Order of pole = 8.015 TOP MAIN SOLVE Loop memory used=1014.7MB, alloc=4.6MB, time=106.74 x[1] = 3.138 y[1] (analytic) = 0 y[1] (numeric) = 4.8850178410074133160811882235707 absolute error = 4.8850178410074133160811882235707 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.334 Order of pole = 8.016 TOP MAIN SOLVE Loop x[1] = 3.139 y[1] (analytic) = 0 y[1] (numeric) = 4.8860199869873677454864212591814 absolute error = 4.8860199869873677454864212591814 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.334 Order of pole = 8.017 TOP MAIN SOLVE Loop x[1] = 3.14 y[1] (analytic) = 0 y[1] (numeric) = 4.8870214385757390214477689634722 absolute error = 4.8870214385757390214477689634722 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.335 Order of pole = 8.018 TOP MAIN SOLVE Loop x[1] = 3.141 y[1] (analytic) = 0 y[1] (numeric) = 4.8880221962522226278188657127761 absolute error = 4.8880221962522226278188657127761 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.335 Order of pole = 8.019 TOP MAIN SOLVE Loop x[1] = 3.142 y[1] (analytic) = 0 y[1] (numeric) = 4.8890222604968768676739229794501 absolute error = 4.8890222604968768676739229794501 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.336 Order of pole = 8.02 TOP MAIN SOLVE Loop x[1] = 3.143 y[1] (analytic) = 0 y[1] (numeric) = 4.8900216317901211696267363906784 absolute error = 4.8900216317901211696267363906784 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.336 Order of pole = 8.02 TOP MAIN SOLVE Loop x[1] = 3.144 y[1] (analytic) = 0 y[1] (numeric) = 4.8910203106127343966248936699841 absolute error = 4.8910203106127343966248936699841 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.336 Order of pole = 8.021 TOP MAIN SOLVE Loop x[1] = 3.145 y[1] (analytic) = 0 y[1] (numeric) = 4.892018297445853157222367157069 absolute error = 4.892018297445853157222367157069 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.337 Order of pole = 8.022 TOP MAIN SOLVE Loop x[1] = 3.146 y[1] (analytic) = 0 y[1] (numeric) = 4.8930155927709701193336505293371 absolute error = 4.8930155927709701193336505293371 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.337 Order of pole = 8.023 TOP MAIN SOLVE Loop x[1] = 3.147 y[1] (analytic) = 0 y[1] (numeric) = 4.8940121970699323264725753169594 absolute error = 4.8940121970699323264725753169594 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.337 Order of pole = 8.024 TOP MAIN SOLVE Loop x[1] = 3.148 y[1] (analytic) = 0 y[1] (numeric) = 4.8950081108249395164789188127312 absolute error = 4.8950081108249395164789188127312 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.338 Order of pole = 8.025 TOP MAIN SOLVE Loop memory used=1018.5MB, alloc=4.6MB, time=107.14 x[1] = 3.149 y[1] (analytic) = 0 y[1] (numeric) = 4.8960033345185424427358910283746 absolute error = 4.8960033345185424427358910283746 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.338 Order of pole = 8.025 TOP MAIN SOLVE Loop x[1] = 3.15 y[1] (analytic) = 0 y[1] (numeric) = 4.8969978686336411978815644404758 absolute error = 4.8969978686336411978815644404758 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.339 Order of pole = 8.026 TOP MAIN SOLVE Loop x[1] = 3.151 y[1] (analytic) = 0 y[1] (numeric) = 4.8979917136534835400172864020349 absolute error = 4.8979917136534835400172864020349 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.339 Order of pole = 8.027 TOP MAIN SOLVE Loop x[1] = 3.152 y[1] (analytic) = 0 y[1] (numeric) = 4.8989848700616632214160902697687 absolute error = 4.8989848700616632214160902697687 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.339 Order of pole = 8.028 TOP MAIN SOLVE Loop x[1] = 3.153 y[1] (analytic) = 0 y[1] (numeric) = 4.8999773383421183197340975129579 absolute error = 4.8999773383421183197340975129579 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.34 Order of pole = 8.029 TOP MAIN SOLVE Loop x[1] = 3.154 y[1] (analytic) = 0 y[1] (numeric) = 4.9009691189791295717278793268927 absolute error = 4.9009691189791295717278793268927 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.34 Order of pole = 8.03 TOP MAIN SOLVE Loop x[1] = 3.155 y[1] (analytic) = 0 y[1] (numeric) = 4.9019602124573187094807225729581 absolute error = 4.9019602124573187094807225729581 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.34 Order of pole = 8.03 TOP MAIN SOLVE Loop x[1] = 3.156 y[1] (analytic) = 0 y[1] (numeric) = 4.9029506192616467991407212082291 absolute error = 4.9029506192616467991407212082291 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.341 Order of pole = 8.031 TOP MAIN SOLVE Loop x[1] = 3.157 y[1] (analytic) = 0 y[1] (numeric) = 4.9039403398774125821735907502323 absolute error = 4.9039403398774125821735907502323 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.341 Order of pole = 8.032 TOP MAIN SOLVE Loop x[1] = 3.158 y[1] (analytic) = 0 y[1] (numeric) = 4.9049293747902508191330797473891 absolute error = 4.9049293747902508191330797473891 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.342 Order of pole = 8.033 TOP MAIN SOLVE Loop x[1] = 3.159 y[1] (analytic) = 0 y[1] (numeric) = 4.9059177244861306359518286926962 absolute error = 4.9059177244861306359518286926962 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.342 Order of pole = 8.034 TOP MAIN SOLVE Loop memory used=1022.3MB, alloc=4.6MB, time=107.54 x[1] = 3.16 y[1] (analytic) = 0 y[1] (numeric) = 4.9069053894513538727555033275407 absolute error = 4.9069053894513538727555033275407 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.342 Order of pole = 8.034 TOP MAIN SOLVE Loop x[1] = 3.161 y[1] (analytic) = 0 y[1] (numeric) = 4.907892370172553435203005834296 absolute error = 4.907892370172553435203005834296 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.343 Order of pole = 8.035 TOP MAIN SOLVE Loop x[1] = 3.162 y[1] (analytic) = 0 y[1] (numeric) = 4.9088786671366916483555440106114 absolute error = 4.9088786671366916483555440106114 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.343 Order of pole = 8.036 TOP MAIN SOLVE Loop x[1] = 3.163 y[1] (analytic) = 0 y[1] (numeric) = 4.9098642808310586130773151552106 absolute error = 4.9098642808310586130773151552106 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.344 Order of pole = 8.037 TOP MAIN SOLVE Loop x[1] = 3.164 y[1] (analytic) = 0 y[1] (numeric) = 4.9108492117432705649705380746488 absolute error = 4.9108492117432705649705380746488 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.344 Order of pole = 8.038 TOP MAIN SOLVE Loop x[1] = 3.165 y[1] (analytic) = 0 y[1] (numeric) = 4.9118334603612682358475433429657 absolute error = 4.9118334603612682358475433429657 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.344 Order of pole = 8.038 TOP MAIN SOLVE Loop x[1] = 3.166 y[1] (analytic) = 0 y[1] (numeric) = 4.9128170271733152177426087116112 absolute error = 4.9128170271733152177426087116112 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.345 Order of pole = 8.039 TOP MAIN SOLVE Loop x[1] = 3.167 y[1] (analytic) = 0 y[1] (numeric) = 4.913799912667996329466203375521 absolute error = 4.913799912667996329466203375521 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.345 Order of pole = 8.04 TOP MAIN SOLVE Loop x[1] = 3.168 y[1] (analytic) = 0 y[1] (numeric) = 4.9147821173342159857042816528893 absolute error = 4.9147821173342159857042816528893 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.345 Order of pole = 8.04 TOP MAIN SOLVE Loop x[1] = 3.169 y[1] (analytic) = 0 y[1] (numeric) = 4.9157636416611965686652435311262 absolute error = 4.9157636416611965686652435311262 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.346 Order of pole = 8.041 TOP MAIN SOLVE Loop x[1] = 3.17 y[1] (analytic) = 0 y[1] (numeric) = 4.916744486138476802277156469802 absolute error = 4.916744486138476802277156469802 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.346 Order of pole = 8.042 TOP MAIN SOLVE Loop x[1] = 3.171 y[1] (analytic) = 0 y[1] (numeric) = 4.9177246512559101289378098331797 absolute error = 4.9177246512559101289378098331797 relative error = -1 % Correct digits = -1 h = 0.001 memory used=1026.1MB, alloc=4.6MB, time=107.94 Complex estimate of poles used for equation 1 Radius of convergence = 4.347 Order of pole = 8.043 TOP MAIN SOLVE Loop x[1] = 3.172 y[1] (analytic) = 0 y[1] (numeric) = 4.9187041375036630888201503503108 absolute error = 4.9187041375036630888201503503108 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.347 Order of pole = 8.043 TOP MAIN SOLVE Loop x[1] = 3.173 y[1] (analytic) = 0 y[1] (numeric) = 4.9196829453722137017356240697321 absolute error = 4.9196829453722137017356240697321 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.347 Order of pole = 8.044 TOP MAIN SOLVE Loop x[1] = 3.174 y[1] (analytic) = 0 y[1] (numeric) = 4.9206610753523498515579273886438 absolute error = 4.9206610753523498515579273886438 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.348 Order of pole = 8.045 TOP MAIN SOLVE Loop x[1] = 3.175 y[1] (analytic) = 0 y[1] (numeric) = 4.9216385279351676732096468931767 absolute error = 4.9216385279351676732096468931767 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.348 Order of pole = 8.045 TOP MAIN SOLVE Loop x[1] = 3.176 y[1] (analytic) = 0 y[1] (numeric) = 4.9226153036120699422142449470672 absolute error = 4.9226153036120699422142449470672 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.348 Order of pole = 8.046 TOP MAIN SOLVE Loop x[1] = 3.177 y[1] (analytic) = 0 y[1] (numeric) = 4.9235914028747644668158252108461 absolute error = 4.9235914028747644668158252108461 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.349 Order of pole = 8.047 TOP MAIN SOLVE Loop x[1] = 3.178 y[1] (analytic) = 0 y[1] (numeric) = 4.9245668262152624826690895626188 absolute error = 4.9245668262152624826690895626188 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.349 Order of pole = 8.047 TOP MAIN SOLVE Loop x[1] = 3.179 y[1] (analytic) = 0 y[1] (numeric) = 4.9255415741258770501018752247536 absolute error = 4.9255415741258770501018752247536 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.349 Order of pole = 8.048 TOP MAIN SOLVE Loop x[1] = 3.18 y[1] (analytic) = 0 y[1] (numeric) = 4.9265156470992214539526382784089 absolute error = 4.9265156470992214539526382784089 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.35 Order of pole = 8.048 TOP MAIN SOLVE Loop x[1] = 3.181 y[1] (analytic) = 0 y[1] (numeric) = 4.9274890456282076059852271699056 absolute error = 4.9274890456282076059852271699056 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.35 Order of pole = 8.049 TOP MAIN SOLVE Loop x[1] = 3.182 y[1] (analytic) = 0 y[1] (numeric) = 4.9284617702060444498832672795864 absolute error = 4.9284617702060444498832672795864 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.351 Order of pole = 8.049 TOP MAIN SOLVE Loop memory used=1030.0MB, alloc=4.6MB, time=108.34 x[1] = 3.183 y[1] (analytic) = 0 y[1] (numeric) = 4.929433821326236368826455135092 absolute error = 4.929433821326236368826455135092 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.351 Order of pole = 8.05 TOP MAIN SOLVE Loop x[1] = 3.184 y[1] (analytic) = 0 y[1] (numeric) = 4.9304051994825815956510384070119 absolute error = 4.9304051994825815956510384070119 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.351 Order of pole = 8.05 TOP MAIN SOLVE Loop x[1] = 3.185 y[1] (analytic) = 0 y[1] (numeric) = 4.9313759051691706255967354257378 absolute error = 4.9313759051691706255967354257378 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.352 Order of pole = 8.051 TOP MAIN SOLVE Loop x[1] = 3.186 y[1] (analytic) = 0 y[1] (numeric) = 4.9323459388803846316423256041364 absolute error = 4.9323459388803846316423256041364 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.352 Order of pole = 8.051 TOP MAIN SOLVE Loop x[1] = 3.187 y[1] (analytic) = 0 y[1] (numeric) = 4.9333153011108938824321198414685 absolute error = 4.9333153011108938824321198414685 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.352 Order of pole = 8.052 TOP MAIN SOLVE Loop x[1] = 3.188 y[1] (analytic) = 0 y[1] (numeric) = 4.934283992355656162795497719894 absolute error = 4.934283992355656162795497719894 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.353 Order of pole = 8.052 TOP MAIN SOLVE Loop x[1] = 3.189 y[1] (analytic) = 0 y[1] (numeric) = 4.9352520131099151968616760860079 absolute error = 4.9352520131099151968616760860079 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.353 Order of pole = 8.053 TOP MAIN SOLVE Loop x[1] = 3.19 y[1] (analytic) = 0 y[1] (numeric) = 4.9362193638691990737718514362387 absolute error = 4.9362193638691990737718514362387 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.353 Order of pole = 8.053 TOP MAIN SOLVE Loop x[1] = 3.191 y[1] (analytic) = 0 y[1] (numeric) = 4.9371860451293186759908363966944 absolute error = 4.9371860451293186759908363966944 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.354 Order of pole = 8.053 TOP MAIN SOLVE Loop x[1] = 3.192 y[1] (analytic) = 0 y[1] (numeric) = 4.9381520573863661102202885052464 absolute error = 4.9381520573863661102202885052464 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.354 Order of pole = 8.054 TOP MAIN SOLVE Loop x[1] = 3.193 y[1] (analytic) = 0 y[1] (numeric) = 4.9391174011367131409156074663847 absolute error = 4.9391174011367131409156074663847 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.354 Order of pole = 8.054 TOP MAIN SOLVE Loop memory used=1033.8MB, alloc=4.6MB, time=108.73 x[1] = 3.194 y[1] (analytic) = 0 y[1] (numeric) = 4.9400820768770096264085550577427 absolute error = 4.9400820768770096264085550577427 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.355 Order of pole = 8.055 TOP MAIN SOLVE Loop x[1] = 3.195 y[1] (analytic) = 0 y[1] (numeric) = 4.9410460851041819576376299212593 absolute error = 4.9410460851041819576376299212593 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.355 Order of pole = 8.055 TOP MAIN SOLVE Loop x[1] = 3.196 y[1] (analytic) = 0 y[1] (numeric) = 4.9420094263154314994882075718025 absolute error = 4.9420094263154314994882075718025 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.355 Order of pole = 8.055 TOP MAIN SOLVE Loop x[1] = 3.197 y[1] (analytic) = 0 y[1] (numeric) = 4.942972101008233034744434101804 absolute error = 4.942972101008233034744434101804 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.356 Order of pole = 8.055 TOP MAIN SOLVE Loop x[1] = 3.198 y[1] (analytic) = 0 y[1] (numeric) = 4.9439341096803332106548402521299 absolute error = 4.9439341096803332106548402521299 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.356 Order of pole = 8.056 TOP MAIN SOLVE Loop x[1] = 3.199 y[1] (analytic) = 0 y[1] (numeric) = 4.9448954528297489881136207571174 absolute error = 4.9448954528297489881136207571174 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.356 Order of pole = 8.056 TOP MAIN SOLVE Loop x[1] = 3.2 y[1] (analytic) = 0 y[1] (numeric) = 4.9458561309547660934595021555211 absolute error = 4.9458561309547660934595021555211 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.357 Order of pole = 8.056 TOP MAIN SOLVE Loop x[1] = 3.201 y[1] (analytic) = 0 y[1] (numeric) = 4.9468161445539374728941005891135 absolute error = 4.9468161445539374728941005891135 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.357 Order of pole = 8.056 TOP MAIN SOLVE Loop x[1] = 3.202 y[1] (analytic) = 0 y[1] (numeric) = 4.9477754941260817495216494869517 absolute error = 4.9477754941260817495216494869517 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.357 Order of pole = 8.056 TOP MAIN SOLVE Loop x[1] = 3.203 y[1] (analytic) = 0 y[1] (numeric) = 4.9487341801702816830119554559284 absolute error = 4.9487341801702816830119554559284 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.358 Order of pole = 8.056 TOP MAIN SOLVE Loop x[1] = 3.204 y[1] (analytic) = 0 y[1] (numeric) = 4.9496922031858826318884191672536 absolute error = 4.9496922031858826318884191672536 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.358 Order of pole = 8.057 TOP MAIN SOLVE Loop memory used=1037.6MB, alloc=4.6MB, time=109.14 x[1] = 3.205 y[1] (analytic) = 0 y[1] (numeric) = 4.9506495636724910184429365440295 absolute error = 4.9506495636724910184429365440295 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.358 Order of pole = 8.057 TOP MAIN SOLVE Loop x[1] = 3.206 y[1] (analytic) = 0 y[1] (numeric) = 4.9516062621299727962794741171706 absolute error = 4.9516062621299727962794741171706 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.358 Order of pole = 8.057 TOP MAIN SOLVE Loop x[1] = 3.207 y[1] (analytic) = 0 y[1] (numeric) = 4.9525622990584519204880910256459 absolute error = 4.9525622990584519204880910256459 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.359 Order of pole = 8.057 TOP MAIN SOLVE Loop x[1] = 3.208 y[1] (analytic) = 0 y[1] (numeric) = 4.9535176749583088204511587924628 absolute error = 4.9535176749583088204511587924628 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.359 Order of pole = 8.057 TOP MAIN SOLVE Loop x[1] = 3.209 y[1] (analytic) = 0 y[1] (numeric) = 4.9544723903301788752835087100408 absolute error = 4.9544723903301788752835087100408 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.359 Order of pole = 8.057 TOP MAIN SOLVE Loop x[1] = 3.21 y[1] (analytic) = 0 y[1] (numeric) = 4.9554264456749508919082154177058 absolute error = 4.9554264456749508919082154177058 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.36 Order of pole = 8.057 TOP MAIN SOLVE Loop x[1] = 3.211 y[1] (analytic) = 0 y[1] (numeric) = 4.9563798414937655857697040500502 absolute error = 4.9563798414937655857697040500502 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.36 Order of pole = 8.057 TOP MAIN SOLVE Loop x[1] = 3.212 y[1] (analytic) = 0 y[1] (numeric) = 4.9573325782880140641858471779133 absolute error = 4.9573325782880140641858471779133 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.36 Order of pole = 8.056 TOP MAIN SOLVE Loop x[1] = 3.213 y[1] (analytic) = 0 y[1] (numeric) = 4.9582846565593363123406966538138 absolute error = 4.9582846565593363123406966538138 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.361 Order of pole = 8.056 TOP MAIN SOLVE Loop x[1] = 3.214 y[1] (analytic) = 0 y[1] (numeric) = 4.9592360768096196819194744108761 absolute error = 4.9592360768096196819194744108761 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.361 Order of pole = 8.056 TOP MAIN SOLVE Loop x[1] = 3.215 y[1] (analytic) = 0 y[1] (numeric) = 4.9601868395409973823874252487065 absolute error = 4.9601868395409973823874252487065 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.361 Order of pole = 8.056 TOP MAIN SOLVE Loop x[1] = 3.216 y[1] (analytic) = 0 y[1] (numeric) = 4.9611369452558469749141136713551 absolute error = 4.9611369452558469749141136713551 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.361 Order of pole = 8.056 memory used=1041.4MB, alloc=4.6MB, time=109.54 TOP MAIN SOLVE Loop x[1] = 3.217 y[1] (analytic) = 0 y[1] (numeric) = 4.9620863944567888689447259215168 absolute error = 4.9620863944567888689447259215168 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.362 Order of pole = 8.056 TOP MAIN SOLVE Loop x[1] = 3.218 y[1] (analytic) = 0 y[1] (numeric) = 4.9630351876466848214199174815384 absolute error = 4.9630351876466848214199174815384 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.362 Order of pole = 8.055 TOP MAIN SOLVE Loop x[1] = 3.219 y[1] (analytic) = 0 y[1] (numeric) = 4.9639833253286364386457254856779 absolute error = 4.9639833253286364386457254856779 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.362 Order of pole = 8.055 TOP MAIN SOLVE Loop x[1] = 3.22 y[1] (analytic) = 0 y[1] (numeric) = 4.9649308080059836808150447094674 absolute error = 4.9649308080059836808150447094674 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.362 Order of pole = 8.055 TOP MAIN SOLVE Loop x[1] = 3.221 y[1] (analytic) = 0 y[1] (numeric) = 4.9658776361823033691821450710271 absolute error = 4.9658776361823033691821450710271 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.363 Order of pole = 8.054 TOP MAIN SOLVE Loop x[1] = 3.222 y[1] (analytic) = 0 y[1] (numeric) = 4.9668238103614076958916878958235 absolute error = 4.9668238103614076958916878958235 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.363 Order of pole = 8.054 TOP MAIN SOLVE Loop x[1] = 3.223 y[1] (analytic) = 0 y[1] (numeric) = 4.9677693310473427364636775607265 absolute error = 4.9677693310473427364636775607265 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.363 Order of pole = 8.054 TOP MAIN SOLVE Loop x[1] = 3.224 y[1] (analytic) = 0 y[1] (numeric) = 4.9687141987443869649357645453514 absolute error = 4.9687141987443869649357645453514 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.363 Order of pole = 8.053 TOP MAIN SOLVE Loop x[1] = 3.225 y[1] (analytic) = 0 y[1] (numeric) = 4.9696584139570497716642953786402 absolute error = 4.9696584139570497716642953786402 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.364 Order of pole = 8.053 TOP MAIN SOLVE Loop x[1] = 3.226 y[1] (analytic) = 0 y[1] (numeric) = 4.9706019771900699837854844764923 absolute error = 4.9706019771900699837854844764923 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.364 Order of pole = 8.052 TOP MAIN SOLVE Loop x[1] = 3.227 y[1] (analytic) = 0 y[1] (numeric) = 4.9715448889484143883380624220642 absolute error = 4.9715448889484143883380624220642 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.364 Order of pole = 8.052 TOP MAIN SOLVE Loop memory used=1045.2MB, alloc=4.6MB, time=109.96 x[1] = 3.228 y[1] (analytic) = 0 y[1] (numeric) = 4.9724871497372762580487348441728 absolute error = 4.9724871497372762580487348441728 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.364 Order of pole = 8.051 TOP MAIN SOLVE Loop x[1] = 3.229 y[1] (analytic) = 0 y[1] (numeric) = 4.9734287600620738797817657011154 absolute error = 4.9734287600620738797817657011154 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.365 Order of pole = 8.051 TOP MAIN SOLVE Loop x[1] = 3.23 y[1] (analytic) = 0 y[1] (numeric) = 4.9743697204284490856539784772202 absolute error = 4.9743697204284490856539784772202 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.365 Order of pole = 8.05 TOP MAIN SOLVE Loop x[1] = 3.231 y[1] (analytic) = 0 y[1] (numeric) = 4.9753100313422657868164485476139 absolute error = 4.9753100313422657868164485476139 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.365 Order of pole = 8.049 TOP MAIN SOLVE Loop x[1] = 3.232 y[1] (analytic) = 0 y[1] (numeric) = 4.976249693309608509904139763097 absolute error = 4.976249693309608509904139763097 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.365 Order of pole = 8.049 TOP MAIN SOLVE Loop x[1] = 3.233 y[1] (analytic) = 0 y[1] (numeric) = 4.9771887068367809361547181517042 absolute error = 4.9771887068367809361547181517042 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.366 Order of pole = 8.048 TOP MAIN SOLVE Loop x[1] = 3.234 y[1] (analytic) = 0 y[1] (numeric) = 4.9781270724303044431977555265491 absolute error = 4.9781270724303044431977555265491 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.366 Order of pole = 8.047 TOP MAIN SOLVE Loop x[1] = 3.235 y[1] (analytic) = 0 y[1] (numeric) = 4.9790647905969166495155157309631 absolute error = 4.9790647905969166495155157309631 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.366 Order of pole = 8.046 TOP MAIN SOLVE Loop x[1] = 3.236 y[1] (analytic) = 0 y[1] (numeric) = 4.9800018618435699615764962417879 absolute error = 4.9800018618435699615764962417879 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.366 Order of pole = 8.046 TOP MAIN SOLVE Loop x[1] = 3.237 y[1] (analytic) = 0 y[1] (numeric) = 4.980938286677430123642877890021 absolute error = 4.980938286677430123642877890021 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.366 Order of pole = 8.045 TOP MAIN SOLVE Loop x[1] = 3.238 y[1] (analytic) = 0 y[1] (numeric) = 4.9818740656058747702530155448929 absolute error = 4.9818740656058747702530155448929 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.367 Order of pole = 8.044 TOP MAIN SOLVE Loop memory used=1049.0MB, alloc=4.6MB, time=110.36 x[1] = 3.239 y[1] (analytic) = 0 y[1] (numeric) = 4.9828091991364919813800827429238 absolute error = 4.9828091991364919813800827429238 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.367 Order of pole = 8.043 TOP MAIN SOLVE Loop x[1] = 3.24 y[1] (analytic) = 0 y[1] (numeric) = 4.9837436877770788402679634276141 absolute error = 4.9837436877770788402679634276141 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.367 Order of pole = 8.042 TOP MAIN SOLVE Loop x[1] = 3.241 y[1] (analytic) = 0 y[1] (numeric) = 4.9846775320356399939454641982139 absolute error = 4.9846775320356399939454641982139 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.367 Order of pole = 8.041 TOP MAIN SOLVE Loop x[1] = 3.242 y[1] (analytic) = 0 y[1] (numeric) = 4.9856107324203862164199007475413 absolute error = 4.9856107324203862164199007475413 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.367 Order of pole = 8.04 TOP MAIN SOLVE Loop x[1] = 3.243 y[1] (analytic) = 0 y[1] (numeric) = 4.9865432894397329745510924991222 absolute error = 4.9865432894397329745510924991222 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.368 Order of pole = 8.039 TOP MAIN SOLVE Loop x[1] = 3.244 y[1] (analytic) = 0 y[1] (numeric) = 4.9874752036022989966067798330485 absolute error = 4.9874752036022989966067798330485 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.368 Order of pole = 8.038 TOP MAIN SOLVE Loop x[1] = 3.245 y[1] (analytic) = 0 y[1] (numeric) = 4.9884064754169048435004587179492 absolute error = 4.9884064754169048435004587179492 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.368 Order of pole = 8.037 TOP MAIN SOLVE Loop x[1] = 3.246 y[1] (analytic) = 0 y[1] (numeric) = 4.989337105392571482712608043376 absolute error = 4.989337105392571482712608043376 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.368 Order of pole = 8.036 TOP MAIN SOLVE Loop x[1] = 3.247 y[1] (analytic) = 0 y[1] (numeric) = 4.990267094038518864896265472769 absolute error = 4.990267094038518864896265472769 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.368 Order of pole = 8.035 TOP MAIN SOLVE Loop x[1] = 3.248 y[1] (analytic) = 0 y[1] (numeric) = 4.9911964418641645031678882120316 absolute error = 4.9911964418641645031678882120316 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.369 Order of pole = 8.034 TOP MAIN SOLVE Loop x[1] = 3.249 y[1] (analytic) = 0 y[1] (numeric) = 4.9921251493791220550844157126476 absolute error = 4.9921251493791220550844157126476 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.369 Order of pole = 8.032 TOP MAIN SOLVE Loop x[1] = 3.25 y[1] (analytic) = 0 y[1] (numeric) = 4.9930532170931999073074320012595 absolute error = 4.9930532170931999073074320012595 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 memory used=1052.8MB, alloc=4.6MB, time=110.77 Radius of convergence = 4.369 Order of pole = 8.031 TOP MAIN SOLVE Loop x[1] = 3.251 y[1] (analytic) = 0 y[1] (numeric) = 4.9939806455163997629553060497351 absolute error = 4.9939806455163997629553060497351 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.369 Order of pole = 8.03 TOP MAIN SOLVE Loop x[1] = 3.252 y[1] (analytic) = 0 y[1] (numeric) = 4.9949074351589152316441693710204 absolute error = 4.9949074351589152316441693710204 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.369 Order of pole = 8.029 TOP MAIN SOLVE Loop x[1] = 3.253 y[1] (analytic) = 0 y[1] (numeric) = 4.9958335865311304222185708465483 absolute error = 4.9958335865311304222185708465483 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.369 Order of pole = 8.027 TOP MAIN SOLVE Loop x[1] = 3.254 y[1] (analytic) = 0 y[1] (numeric) = 4.9967591001436185381726296606841 absolute error = 4.9967591001436185381726296606841 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.37 Order of pole = 8.026 TOP MAIN SOLVE Loop x[1] = 3.255 y[1] (analytic) = 0 y[1] (numeric) = 4.9976839765071404757624881366777 absolute error = 4.9976839765071404757624881366777 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.37 Order of pole = 8.024 TOP MAIN SOLVE Loop x[1] = 3.256 y[1] (analytic) = 0 y[1] (numeric) = 4.9986082161326434248108472368956 absolute error = 4.9986082161326434248108472368956 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.37 Order of pole = 8.023 TOP MAIN SOLVE Loop x[1] = 3.257 y[1] (analytic) = 0 y[1] (numeric) = 4.9995318195312594722043485077582 absolute error = 4.9995318195312594722043485077582 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.37 Order of pole = 8.021 TOP MAIN SOLVE Loop x[1] = 3.258 y[1] (analytic) = 0 y[1] (numeric) = 5.0004547872143042080845473168489 absolute error = 5.0004547872143042080845473168489 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.37 Order of pole = 8.02 TOP MAIN SOLVE Loop x[1] = 3.259 y[1] (analytic) = 0 y[1] (numeric) = 5.0013771196932753347332033461196 absolute error = 5.0013771196932753347332033461196 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.37 Order of pole = 8.018 TOP MAIN SOLVE Loop x[1] = 3.26 y[1] (analytic) = 0 y[1] (numeric) = 5.0022988174798512781525954710344 absolute error = 5.0022988174798512781525954710344 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.37 Order of pole = 8.017 TOP MAIN SOLVE Loop x[1] = 3.261 y[1] (analytic) = 0 y[1] (numeric) = 5.0032198810858898023415493708956 absolute error = 5.0032198810858898023415493708956 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.371 Order of pole = 8.015 TOP MAIN SOLVE Loop memory used=1056.7MB, alloc=4.6MB, time=111.17 x[1] = 3.262 y[1] (analytic) = 0 y[1] (numeric) = 5.004140311023426626267847480521 absolute error = 5.004140311023426626267847480521 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.371 Order of pole = 8.014 TOP MAIN SOLVE Loop x[1] = 3.263 y[1] (analytic) = 0 y[1] (numeric) = 5.0050601078046740435376722079199 absolute error = 5.0050601078046740435376722079199 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.371 Order of pole = 8.012 TOP MAIN SOLVE Loop x[1] = 3.264 y[1] (analytic) = 0 y[1] (numeric) = 5.0059792719420195447627147066772 absolute error = 5.0059792719420195447627147066772 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.371 Order of pole = 8.01 TOP MAIN SOLVE Loop x[1] = 3.265 y[1] (analytic) = 0 y[1] (numeric) = 5.0068978039480244426255629054331 absolute error = 5.0068978039480244426255629054331 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.371 Order of pole = 8.008 TOP MAIN SOLVE Loop x[1] = 3.266 y[1] (analytic) = 0 y[1] (numeric) = 5.0078157043354224996439639601687 absolute error = 5.0078157043354224996439639601687 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.371 Order of pole = 8.007 TOP MAIN SOLVE Loop x[1] = 3.267 y[1] (analytic) = 0 y[1] (numeric) = 5.0087329736171185586345378080057 absolute error = 5.0087329736171185586345378080057 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.371 Order of pole = 8.005 TOP MAIN SOLVE Loop x[1] = 3.268 y[1] (analytic) = 0 y[1] (numeric) = 5.0096496123061871758765000639296 absolute error = 5.0096496123061871758765000639296 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.371 Order of pole = 8.003 TOP MAIN SOLVE Loop x[1] = 3.269 y[1] (analytic) = 0 y[1] (numeric) = 5.0105656209158712569759341142766 absolute error = 5.0105656209158712569759341142766 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.371 Order of pole = 8.001 TOP MAIN SOLVE Loop x[1] = 3.27 y[1] (analytic) = 0 y[1] (numeric) = 5.011480999959580695431133923017 absolute error = 5.011480999959580695431133923017 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.372 Order of pole = 7.999 TOP MAIN SOLVE Loop x[1] = 3.271 y[1] (analytic) = 0 y[1] (numeric) = 5.0123957499508910138995207788415 absolute error = 5.0123957499508910138995207788415 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.372 Order of pole = 7.997 TOP MAIN SOLVE Loop x[1] = 3.272 y[1] (analytic) = 0 y[1] (numeric) = 5.0133098714035420081666189728442 absolute error = 5.0133098714035420081666189728442 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.372 Order of pole = 7.995 TOP MAIN SOLVE Loop memory used=1060.5MB, alloc=4.6MB, time=111.58 x[1] = 3.273 y[1] (analytic) = 0 y[1] (numeric) = 5.0142233648314363938175572082198 absolute error = 5.0142233648314363938175572082198 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.372 Order of pole = 7.993 TOP MAIN SOLVE Loop x[1] = 3.274 y[1] (analytic) = 0 y[1] (numeric) = 5.0151362307486384556115444048748 absolute error = 5.0151362307486384556115444048748 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.372 Order of pole = 7.991 TOP MAIN SOLVE Loop x[1] = 3.275 y[1] (analytic) = 0 y[1] (numeric) = 5.0160484696693726995597504732215 absolute error = 5.0160484696693726995597504732215 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.372 Order of pole = 7.989 TOP MAIN SOLVE Loop x[1] = 3.276 y[1] (analytic) = 0 y[1] (numeric) = 5.0169600821080225077070045927004 absolute error = 5.0169600821080225077070045927004 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.372 Order of pole = 7.987 TOP MAIN SOLVE Loop x[1] = 3.277 y[1] (analytic) = 0 y[1] (numeric) = 5.017871068579128795617705541784 absolute error = 5.017871068579128795617705541784 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.372 Order of pole = 7.985 TOP MAIN SOLVE Loop x[1] = 3.278 y[1] (analytic) = 0 y[1] (numeric) = 5.0187814295973886725663206873732 absolute error = 5.0187814295973886725663206873732 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.372 Order of pole = 7.983 TOP MAIN SOLVE Loop x[1] = 3.279 y[1] (analytic) = 0 y[1] (numeric) = 5.0196911656776541044328323526331 absolute error = 5.0196911656776541044328323526331 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.372 Order of pole = 7.981 TOP MAIN SOLVE Loop x[1] = 3.28 y[1] (analytic) = 0 y[1] (numeric) = 5.0206002773349305793034724434409 absolute error = 5.0206002773349305793034724434409 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.372 Order of pole = 7.978 TOP MAIN SOLVE Loop x[1] = 3.281 y[1] (analytic) = 0 y[1] (numeric) = 5.0215087650843757757770684247625 absolute error = 5.0215087650843757757770684247625 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.372 Order of pole = 7.976 TOP MAIN SOLVE Loop x[1] = 3.282 y[1] (analytic) = 0 y[1] (numeric) = 5.0224166294412982339773059994499 absolute error = 5.0224166294412982339773059994499 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.372 Order of pole = 7.974 TOP MAIN SOLVE Loop x[1] = 3.283 y[1] (analytic) = 0 y[1] (numeric) = 5.0233238709211560292711961531795 absolute error = 5.0233238709211560292711961531795 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.373 Order of pole = 7.972 TOP MAIN SOLVE Loop x[1] = 3.284 y[1] (analytic) = 0 y[1] (numeric) = 5.0242304900395554486940165905511 absolute error = 5.0242304900395554486940165905511 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.373 Order of pole = 7.969 memory used=1064.3MB, alloc=4.6MB, time=111.97 TOP MAIN SOLVE Loop x[1] = 3.285 y[1] (analytic) = 0 y[1] (numeric) = 5.0251364873122496700809799987531 absolute error = 5.0251364873122496700809799987531 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.373 Order of pole = 7.967 TOP MAIN SOLVE Loop x[1] = 3.286 y[1] (analytic) = 0 y[1] (numeric) = 5.0260418632551374439058640366909 absolute error = 5.0260418632551374439058640366909 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.373 Order of pole = 7.964 TOP MAIN SOLVE Loop x[1] = 3.287 y[1] (analytic) = 0 y[1] (numeric) = 5.026946618384261777826820459087 absolute error = 5.026946618384261777826820459087 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.373 Order of pole = 7.962 TOP MAIN SOLVE Loop x[1] = 3.288 y[1] (analytic) = 0 y[1] (numeric) = 5.0278507532158086239395633468082 absolute error = 5.0278507532158086239395633468082 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.373 Order of pole = 7.959 TOP MAIN SOLVE Loop x[1] = 3.289 y[1] (analytic) = 0 y[1] (numeric) = 5.0287542682661055687381190265745 absolute error = 5.0287542682661055687381190265745 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.373 Order of pole = 7.957 TOP MAIN SOLVE Loop x[1] = 3.29 y[1] (analytic) = 0 y[1] (numeric) = 5.0296571640516205257833029252662 absolute error = 5.0296571640516205257833029252662 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.373 Order of pole = 7.954 TOP MAIN SOLVE Loop x[1] = 3.291 y[1] (analytic) = 0 y[1] (numeric) = 5.0305594410889604310790713162884 absolute error = 5.0305594410889604310790713162884 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.373 Order of pole = 7.952 TOP MAIN SOLVE Loop x[1] = 3.292 y[1] (analytic) = 0 y[1] (numeric) = 5.0314610998948699411568786778839 absolute error = 5.0314610998948699411568786778839 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.373 Order of pole = 7.949 TOP MAIN SOLVE Loop x[1] = 3.293 y[1] (analytic) = 0 y[1] (numeric) = 5.0323621409862301338681541959226 absolute error = 5.0323621409862301338681541959226 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.373 Order of pole = 7.947 TOP MAIN SOLVE Loop x[1] = 3.294 y[1] (analytic) = 0 y[1] (numeric) = 5.0332625648800572118849938065464 absolute error = 5.0332625648800572118849938065464 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.373 Order of pole = 7.944 TOP MAIN SOLVE Loop x[1] = 3.295 y[1] (analytic) = 0 y[1] (numeric) = 5.0341623720935012089091470871274 absolute error = 5.0341623720935012089091470871274 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.373 Order of pole = 7.941 TOP MAIN SOLVE Loop memory used=1068.1MB, alloc=4.6MB, time=112.38 x[1] = 3.296 y[1] (analytic) = 0 y[1] (numeric) = 5.0350615631438446985893612673094 absolute error = 5.0350615631438446985893612673094 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.373 Order of pole = 7.938 TOP MAIN SOLVE Loop x[1] = 3.297 y[1] (analytic) = 0 y[1] (numeric) = 5.0359601385485015061471276454664 absolute error = 5.0359601385485015061471276454664 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.373 Order of pole = 7.936 TOP MAIN SOLVE Loop x[1] = 3.298 y[1] (analytic) = 0 y[1] (numeric) = 5.0368580988250154227108587597246 absolute error = 5.0368580988250154227108587597246 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.373 Order of pole = 7.933 TOP MAIN SOLVE Loop x[1] = 3.299 y[1] (analytic) = 0 y[1] (numeric) = 5.037755444491058922358507776777 absolute error = 5.037755444491058922358507776777 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.373 Order of pole = 7.93 TOP MAIN SOLVE Loop x[1] = 3.3 y[1] (analytic) = 0 y[1] (numeric) = 5.038652176064431881868624726069 absolute error = 5.038652176064431881868624726069 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.373 Order of pole = 7.927 TOP MAIN SOLVE Loop x[1] = 3.301 y[1] (analytic) = 0 y[1] (numeric) = 5.0395482940630603031798274215677 absolute error = 5.0395482940630603031798274215677 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.373 Order of pole = 7.924 TOP MAIN SOLVE Loop x[1] = 3.302 y[1] (analytic) = 0 y[1] (numeric) = 5.0404437990049950385586481782402 absolute error = 5.0404437990049950385586481782402 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.373 Order of pole = 7.921 TOP MAIN SOLVE Loop x[1] = 3.303 y[1] (analytic) = 0 y[1] (numeric) = 5.041338691408410518475700745579 absolute error = 5.041338691408410518475700745579 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.373 Order of pole = 7.919 TOP MAIN SOLVE Loop x[1] = 3.304 y[1] (analytic) = 0 y[1] (numeric) = 5.042232971791603482190095246015 absolute error = 5.042232971791603482190095246015 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.373 Order of pole = 7.916 TOP MAIN SOLVE Loop x[1] = 3.305 y[1] (analytic) = 0 y[1] (numeric) = 5.0431266406729917110420123218691 absolute error = 5.0431266406729917110420123218691 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.373 Order of pole = 7.913 TOP MAIN SOLVE Loop x[1] = 3.306 y[1] (analytic) = 0 y[1] (numeric) = 5.0440196985711127644533311606066 absolute error = 5.0440196985711127644533311606066 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.373 Order of pole = 7.91 TOP MAIN SOLVE Loop memory used=1071.9MB, alloc=4.6MB, time=112.78 x[1] = 3.307 y[1] (analytic) = 0 y[1] (numeric) = 5.0449121460046227186361895845835 absolute error = 5.0449121460046227186361895845835 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.373 Order of pole = 7.907 TOP MAIN SOLVE Loop x[1] = 3.308 y[1] (analytic) = 0 y[1] (numeric) = 5.0458039834922949080093379582112 absolute error = 5.0458039834922949080093379582112 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.373 Order of pole = 7.903 TOP MAIN SOLVE Loop x[1] = 3.309 y[1] (analytic) = 0 y[1] (numeric) = 5.0466952115530186693221322825191 absolute error = 5.0466952115530186693221322825191 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.373 Order of pole = 7.9 TOP MAIN SOLVE Loop x[1] = 3.31 y[1] (analytic) = 0 y[1] (numeric) = 5.0475858307057980884859955144656 absolute error = 5.0475858307057980884859955144656 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.373 Order of pole = 7.897 TOP MAIN SOLVE Loop x[1] = 3.311 y[1] (analytic) = 0 y[1] (numeric) = 5.0484758414697507501131598660358 absolute error = 5.0484758414697507501131598660358 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.373 Order of pole = 7.894 TOP MAIN SOLVE Loop x[1] = 3.312 y[1] (analytic) = 0 y[1] (numeric) = 5.0493652443641064897624866061738 absolute error = 5.0493652443641064897624866061738 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.373 Order of pole = 7.891 TOP MAIN SOLVE Loop x[1] = 3.313 y[1] (analytic) = 0 y[1] (numeric) = 5.050254039908206148892143706924 absolute error = 5.050254039908206148892143706924 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.373 Order of pole = 7.888 TOP MAIN SOLVE Loop x[1] = 3.314 y[1] (analytic) = 0 y[1] (numeric) = 5.0511422286215003325189055438031 absolute error = 5.0511422286215003325189055438031 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.373 Order of pole = 7.884 TOP MAIN SOLVE Loop x[1] = 3.315 y[1] (analytic) = 0 y[1] (numeric) = 5.0520298110235481695838227793875 absolute error = 5.0520298110235481695838227793875 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.373 Order of pole = 7.881 TOP MAIN SOLVE Loop x[1] = 3.316 y[1] (analytic) = 0 y[1] (numeric) = 5.052916787634016076023994528382 absolute error = 5.052916787634016076023994528382 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.373 Order of pole = 7.878 TOP MAIN SOLVE Loop x[1] = 3.317 y[1] (analytic) = 0 y[1] (numeric) = 5.0538031589726765205501589220288 absolute error = 5.0538031589726765205501589220288 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.372 Order of pole = 7.875 TOP MAIN SOLVE Loop x[1] = 3.318 y[1] (analytic) = 0 y[1] (numeric) = 5.0546889255594067931298022596213 absolute error = 5.0546889255594067931298022596213 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.372 Order of pole = 7.871 memory used=1075.7MB, alloc=4.6MB, time=113.18 TOP MAIN SOLVE Loop x[1] = 3.319 y[1] (analytic) = 0 y[1] (numeric) = 5.0555740879141877761754710550978 absolute error = 5.0555740879141877761754710550978 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.372 Order of pole = 7.868 TOP MAIN SOLVE Loop x[1] = 3.32 y[1] (analytic) = 0 y[1] (numeric) = 5.0564586465571027184379554572084 absolute error = 5.0564586465571027184379554572084 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.372 Order of pole = 7.865 TOP MAIN SOLVE Loop x[1] = 3.321 y[1] (analytic) = 0 y[1] (numeric) = 5.0573426020083360116039967425606 absolute error = 5.0573426020083360116039967425606 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.372 Order of pole = 7.861 TOP MAIN SOLVE Loop x[1] = 3.322 y[1] (analytic) = 0 y[1] (numeric) = 5.0582259547881719695981558519587 absolute error = 5.0582259547881719695981558519587 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.372 Order of pole = 7.858 TOP MAIN SOLVE Loop x[1] = 3.323 y[1] (analytic) = 0 y[1] (numeric) = 5.0591087054169936105884642618484 absolute error = 5.0591087054169936105884642618484 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.372 Order of pole = 7.854 TOP MAIN SOLVE Loop x[1] = 3.324 y[1] (analytic) = 0 y[1] (numeric) = 5.0599908544152814416954628543553 absolute error = 5.0599908544152814416954628543553 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.372 Order of pole = 7.851 TOP MAIN SOLVE Loop x[1] = 3.325 y[1] (analytic) = 0 y[1] (numeric) = 5.0608724023036122464042188713607 absolute error = 5.0608724023036122464042188713607 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.372 Order of pole = 7.847 TOP MAIN SOLVE Loop x[1] = 3.326 y[1] (analytic) = 0 y[1] (numeric) = 5.0617533496026578746788955102763 absolute error = 5.0617533496026578746788955102763 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.372 Order of pole = 7.844 TOP MAIN SOLVE Loop x[1] = 3.327 y[1] (analytic) = 0 y[1] (numeric) = 5.0626336968331840357794332416622 absolute error = 5.0626336968331840357794332416622 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.372 Order of pole = 7.84 TOP MAIN SOLVE Loop x[1] = 3.328 y[1] (analytic) = 0 y[1] (numeric) = 5.0635134445160490937798865015609 absolute error = 5.0635134445160490937798865015609 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.372 Order of pole = 7.837 TOP MAIN SOLVE Loop x[1] = 3.329 y[1] (analytic) = 0 y[1] (numeric) = 5.0643925931722028657879440343962 absolute error = 5.0643925931722028657879440343962 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.372 Order of pole = 7.833 TOP MAIN SOLVE Loop memory used=1079.5MB, alloc=4.6MB, time=113.58 x[1] = 3.33 y[1] (analytic) = 0 y[1] (numeric) = 5.0652711433226854228651458354874 absolute error = 5.0652711433226854228651458354874 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.372 Order of pole = 7.83 TOP MAIN SOLVE Loop x[1] = 3.331 y[1] (analytic) = 0 y[1] (numeric) = 5.0661490954886258936472943656612 absolute error = 5.0661490954886258936472943656612 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.372 Order of pole = 7.826 TOP MAIN SOLVE Loop x[1] = 3.332 y[1] (analytic) = 0 y[1] (numeric) = 5.0670264501912412706645424840777 absolute error = 5.0670264501912412706645424840777 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.371 Order of pole = 7.823 TOP MAIN SOLVE Loop x[1] = 3.333 y[1] (analytic) = 0 y[1] (numeric) = 5.0679032079518352193606253692303 absolute error = 5.0679032079518352193606253692303 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.371 Order of pole = 7.819 TOP MAIN SOLVE Loop x[1] = 3.334 y[1] (analytic) = 0 y[1] (numeric) = 5.0687793692917968898106885721032 absolute error = 5.0687793692917968898106885721032 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.371 Order of pole = 7.815 TOP MAIN SOLVE Loop x[1] = 3.335 y[1] (analytic) = 0 y[1] (numeric) = 5.0696549347325997311371492696745 absolute error = 5.0696549347325997311371492696745 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.371 Order of pole = 7.812 TOP MAIN SOLVE Loop x[1] = 3.336 y[1] (analytic) = 0 y[1] (numeric) = 5.07052990479580030862301276132 absolute error = 5.07052990479580030862301276132 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.371 Order of pole = 7.808 TOP MAIN SOLVE Loop x[1] = 3.337 y[1] (analytic) = 0 y[1] (numeric) = 5.0714042800030371235220512751858 absolute error = 5.0714042800030371235220512751858 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.371 Order of pole = 7.804 TOP MAIN SOLVE Loop x[1] = 3.338 y[1] (analytic) = 0 y[1] (numeric) = 5.0722780608760294355652372262513 absolute error = 5.0722780608760294355652372262513 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.371 Order of pole = 7.8 TOP MAIN SOLVE Loop x[1] = 3.339 y[1] (analytic) = 0 y[1] (numeric) = 5.073151247936576088162808192575 absolute error = 5.073151247936576088162808192575 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.371 Order of pole = 7.797 TOP MAIN SOLVE Loop x[1] = 3.34 y[1] (analytic) = 0 y[1] (numeric) = 5.0740238417065543363013260510936 absolute error = 5.0740238417065543363013260510936 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.371 Order of pole = 7.793 TOP MAIN SOLVE Loop memory used=1083.4MB, alloc=4.6MB, time=113.98 x[1] = 3.341 y[1] (analytic) = 0 y[1] (numeric) = 5.0748958427079186771350779393136 absolute error = 5.0748958427079186771350779393136 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.371 Order of pole = 7.789 TOP MAIN SOLVE Loop x[1] = 3.342 y[1] (analytic) = 0 y[1] (numeric) = 5.0757672514626996832711519842767 absolute error = 5.0757672514626996832711519842767 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.371 Order of pole = 7.785 TOP MAIN SOLVE Loop x[1] = 3.343 y[1] (analytic) = 0 y[1] (numeric) = 5.0766380684930028387475060652807 absolute error = 5.0766380684930028387475060652807 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.37 Order of pole = 7.781 TOP MAIN SOLVE Loop x[1] = 3.344 y[1] (analytic) = 0 y[1] (numeric) = 5.0775082943210073777033332519782 absolute error = 5.0775082943210073777033332519782 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.37 Order of pole = 7.778 TOP MAIN SOLVE Loop x[1] = 3.345 y[1] (analytic) = 0 y[1] (numeric) = 5.0783779294689651257410129846381 absolute error = 5.0783779294689651257410129846381 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.37 Order of pole = 7.774 TOP MAIN SOLVE Loop x[1] = 3.346 y[1] (analytic) = 0 y[1] (numeric) = 5.0792469744591993439789225385235 absolute error = 5.0792469744591993439789225385235 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.37 Order of pole = 7.77 TOP MAIN SOLVE Loop x[1] = 3.347 y[1] (analytic) = 0 y[1] (numeric) = 5.0801154298141035757943688394915 absolute error = 5.0801154298141035757943688394915 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.37 Order of pole = 7.766 TOP MAIN SOLVE Loop x[1] = 3.348 y[1] (analytic) = 0 y[1] (numeric) = 5.0809832960561404962558862730428 absolute error = 5.0809832960561404962558862730428 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.37 Order of pole = 7.762 TOP MAIN SOLVE Loop x[1] = 3.349 y[1] (analytic) = 0 y[1] (numeric) = 5.0818505737078407642441317541131 absolute error = 5.0818505737078407642441317541131 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.37 Order of pole = 7.758 TOP MAIN SOLVE Loop x[1] = 3.35 y[1] (analytic) = 0 y[1] (numeric) = 5.0827172632918018772605939998931 absolute error = 5.0827172632918018772605939998931 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.37 Order of pole = 7.754 TOP MAIN SOLVE Loop x[1] = 3.351 y[1] (analytic) = 0 y[1] (numeric) = 5.0835833653306870289233196728629 absolute error = 5.0835833653306870289233196728629 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.37 Order of pole = 7.75 TOP MAIN SOLVE Loop x[1] = 3.352 y[1] (analytic) = 0 y[1] (numeric) = 5.0844488803472239691488448360081 absolute error = 5.0844488803472239691488448360081 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.369 Order of pole = 7.747 memory used=1087.2MB, alloc=4.6MB, time=114.38 TOP MAIN SOLVE Loop x[1] = 3.353 y[1] (analytic) = 0 y[1] (numeric) = 5.0853138088642038670195059868335 absolute error = 5.0853138088642038670195059868335 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.369 Order of pole = 7.743 TOP MAIN SOLVE Loop x[1] = 3.354 y[1] (analytic) = 0 y[1] (numeric) = 5.0861781514044801763352908112736 absolute error = 5.0861781514044801763352908112736 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.369 Order of pole = 7.739 TOP MAIN SOLVE Loop x[1] = 3.355 y[1] (analytic) = 0 y[1] (numeric) = 5.0870419084909675038493747229046 absolute error = 5.0870419084909675038493747229046 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.369 Order of pole = 7.735 TOP MAIN SOLVE Loop x[1] = 3.356 y[1] (analytic) = 0 y[1] (numeric) = 5.0879050806466404801864752269603 absolute error = 5.0879050806466404801864752269603 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.369 Order of pole = 7.731 TOP MAIN SOLVE Loop x[1] = 3.357 y[1] (analytic) = 0 y[1] (numeric) = 5.0887676683945326334431421725213 absolute error = 5.0887676683945326334431421725213 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.369 Order of pole = 7.727 TOP MAIN SOLVE Loop x[1] = 3.358 y[1] (analytic) = 0 y[1] (numeric) = 5.0896296722577352654690880298624 absolute error = 5.0896296722577352654690880298624 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.369 Order of pole = 7.723 TOP MAIN SOLVE Loop x[1] = 3.359 y[1] (analytic) = 0 y[1] (numeric) = 5.0904910927593963308286484532785 absolute error = 5.0904910927593963308286484532785 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.369 Order of pole = 7.719 TOP MAIN SOLVE Loop x[1] = 3.36 y[1] (analytic) = 0 y[1] (numeric) = 5.09135193042271931844144956274 absolute error = 5.09135193042271931844144956274 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.368 Order of pole = 7.715 TOP MAIN SOLVE Loop x[1] = 3.361 y[1] (analytic) = 0 y[1] (numeric) = 5.0922121857709621359013446004322 absolute error = 5.0922121857709621359013446004322 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.368 Order of pole = 7.711 TOP MAIN SOLVE Loop x[1] = 3.362 y[1] (analytic) = 0 y[1] (numeric) = 5.0930718593274359964726688905771 absolute error = 5.0930718593274359964726688905771 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.368 Order of pole = 7.707 TOP MAIN SOLVE Loop x[1] = 3.363 y[1] (analytic) = 0 y[1] (numeric) = 5.0939309516155043087628483529011 absolute error = 5.0939309516155043087628483529011 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.368 Order of pole = 7.703 TOP MAIN SOLVE Loop memory used=1091.0MB, alloc=4.6MB, time=114.79 x[1] = 3.364 y[1] (analytic) = 0 y[1] (numeric) = 5.0947894631585815690703831916638 absolute error = 5.0947894631585815690703831916638 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.368 Order of pole = 7.699 TOP MAIN SOLVE Loop x[1] = 3.365 y[1] (analytic) = 0 y[1] (numeric) = 5.0956473944801322564072148032793 absolute error = 5.0956473944801322564072148032793 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.368 Order of pole = 7.695 TOP MAIN SOLVE Loop x[1] = 3.366 y[1] (analytic) = 0 y[1] (numeric) = 5.0965047461036697301944704162111 absolute error = 5.0965047461036697301944704162111 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.368 Order of pole = 7.691 TOP MAIN SOLVE Loop x[1] = 3.367 y[1] (analytic) = 0 y[1] (numeric) = 5.0973615185527551306305664969764 absolute error = 5.0973615185527551306305664969764 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.368 Order of pole = 7.686 TOP MAIN SOLVE Loop x[1] = 3.368 y[1] (analytic) = 0 y[1] (numeric) = 5.0982177123509962817306385257275 absolute error = 5.0982177123509962817306385257275 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.367 Order of pole = 7.682 TOP MAIN SOLVE Loop x[1] = 3.369 y[1] (analytic) = 0 y[1] (numeric) = 5.0990733280220465970362513639566 absolute error = 5.0990733280220465970362513639566 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.367 Order of pole = 7.678 TOP MAIN SOLVE Loop x[1] = 3.37 y[1] (analytic) = 0 y[1] (numeric) = 5.0999283660896039879943311053644 absolute error = 5.0999283660896039879943311053644 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.367 Order of pole = 7.674 TOP MAIN SOLVE Loop x[1] = 3.371 y[1] (analytic) = 0 y[1] (numeric) = 5.1007828270774097750042460188151 absolute error = 5.1007828270774097750042460188151 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.367 Order of pole = 7.67 TOP MAIN SOLVE Loop x[1] = 3.372 y[1] (analytic) = 0 y[1] (numeric) = 5.1016367115092476011319509595359 absolute error = 5.1016367115092476011319509595359 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.367 Order of pole = 7.666 TOP MAIN SOLVE Loop x[1] = 3.373 y[1] (analytic) = 0 y[1] (numeric) = 5.1024900199089423484900964412792 absolute error = 5.1024900199089423484900964412792 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.367 Order of pole = 7.662 TOP MAIN SOLVE Loop x[1] = 3.374 y[1] (analytic) = 0 y[1] (numeric) = 5.1033427528003590572829904280185 absolute error = 5.1033427528003590572829904280185 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.367 Order of pole = 7.658 TOP MAIN SOLVE Loop memory used=1094.8MB, alloc=4.6MB, time=115.19 x[1] = 3.375 y[1] (analytic) = 0 y[1] (numeric) = 5.1041949107074018475152878188581 absolute error = 5.1041949107074018475152878188581 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.367 Order of pole = 7.654 TOP MAIN SOLVE Loop x[1] = 3.376 y[1] (analytic) = 0 y[1] (numeric) = 5.1050464941540128433632695641761 absolute error = 5.1050464941540128433632695641761 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.366 Order of pole = 7.65 TOP MAIN SOLVE Loop x[1] = 3.377 y[1] (analytic) = 0 y[1] (numeric) = 5.1058975036641711002075603645506 absolute error = 5.1058975036641711002075603645506 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.366 Order of pole = 7.646 TOP MAIN SOLVE Loop x[1] = 3.378 y[1] (analytic) = 0 y[1] (numeric) = 5.1067479397618915343261209667078 absolute error = 5.1067479397618915343261209667078 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.366 Order of pole = 7.642 TOP MAIN SOLVE Loop x[1] = 3.379 y[1] (analytic) = 0 y[1] (numeric) = 5.1075978029712238552463381825493 absolute error = 5.1075978029712238552463381825493 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.366 Order of pole = 7.638 TOP MAIN SOLVE Loop x[1] = 3.38 y[1] (analytic) = 0 y[1] (numeric) = 5.1084470938162515007550229182179 absolute error = 5.1084470938162515007550229182179 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.366 Order of pole = 7.633 TOP MAIN SOLVE Loop x[1] = 3.381 y[1] (analytic) = 0 y[1] (numeric) = 5.1092958128210905745651137101272 absolute error = 5.1092958128210905745651137101272 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.366 Order of pole = 7.629 TOP MAIN SOLVE Loop x[1] = 3.382 y[1] (analytic) = 0 y[1] (numeric) = 5.1101439605098887866378705238579 absolute error = 5.1101439605098887866378705238579 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.366 Order of pole = 7.625 TOP MAIN SOLVE Loop x[1] = 3.383 y[1] (analytic) = 0 y[1] (numeric) = 5.1109915374068243961593308797918 absolute error = 5.1109915374068243961593308797918 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.366 Order of pole = 7.621 TOP MAIN SOLVE Loop x[1] = 3.384 y[1] (analytic) = 0 y[1] (numeric) = 5.1118385440361051571697877262664 absolute error = 5.1118385440361051571697877262664 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.365 Order of pole = 7.617 TOP MAIN SOLVE Loop x[1] = 3.385 y[1] (analytic) = 0 y[1] (numeric) = 5.112684980921967266845035886857 absolute error = 5.112684980921967266845035886857 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.365 Order of pole = 7.613 TOP MAIN SOLVE Loop x[1] = 3.386 y[1] (analytic) = 0 y[1] (numeric) = 5.1135308485886743164281213630894 absolute error = 5.1135308485886743164281213630894 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.365 Order of pole = 7.609 TOP MAIN SOLVE Loop memory used=1098.6MB, alloc=4.6MB, time=115.60 x[1] = 3.387 y[1] (analytic) = 0 y[1] (numeric) = 5.1143761475605162448103152774206 absolute error = 5.1143761475605162448103152774206 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.365 Order of pole = 7.605 TOP MAIN SOLVE Loop x[1] = 3.388 y[1] (analytic) = 0 y[1] (numeric) = 5.1152208783618082947600217936525 absolute error = 5.1152208783618082947600217936525 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.365 Order of pole = 7.601 TOP MAIN SOLVE Loop x[1] = 3.389 y[1] (analytic) = 0 y[1] (numeric) = 5.1160650415168899717983169530349 absolute error = 5.1160650415168899717983169530349 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.365 Order of pole = 7.597 TOP MAIN SOLVE Loop x[1] = 3.39 y[1] (analytic) = 0 y[1] (numeric) = 5.1169086375501240057198030141211 absolute error = 5.1169086375501240057198030141211 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.365 Order of pole = 7.593 TOP MAIN SOLVE Loop x[1] = 3.391 y[1] (analytic) = 0 y[1] (numeric) = 5.1177516669858953147574505829291 absolute error = 5.1177516669858953147574505829291 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.365 Order of pole = 7.589 TOP MAIN SOLVE Loop x[1] = 3.392 y[1] (analytic) = 0 y[1] (numeric) = 5.1185941303486099723900885670904 absolute error = 5.1185941303486099723900885670904 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.364 Order of pole = 7.585 TOP MAIN SOLVE Loop x[1] = 3.393 y[1] (analytic) = 0 y[1] (numeric) = 5.1194360281626941767911897833985 absolute error = 5.1194360281626941767911897833985 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.364 Order of pole = 7.581 TOP MAIN SOLVE Loop x[1] = 3.394 y[1] (analytic) = 0 y[1] (numeric) = 5.120277360952593222917587892458 absolute error = 5.120277360952593222917587892458 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.364 Order of pole = 7.577 TOP MAIN SOLVE Loop x[1] = 3.395 y[1] (analytic) = 0 y[1] (numeric) = 5.1211181292427704772367492269423 absolute error = 5.1211181292427704772367492269423 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.364 Order of pole = 7.573 TOP MAIN SOLVE Loop x[1] = 3.396 y[1] (analytic) = 0 y[1] (numeric) = 5.121958333557706355091211021253 absolute error = 5.121958333557706355091211021253 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.364 Order of pole = 7.569 TOP MAIN SOLVE Loop x[1] = 3.397 y[1] (analytic) = 0 y[1] (numeric) = 5.1227979744218973006987855400908 absolute error = 5.1227979744218973006987855400908 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.364 Order of pole = 7.565 TOP MAIN SOLVE Loop memory used=1102.4MB, alloc=4.6MB, time=116.00 x[1] = 3.398 y[1] (analytic) = 0 y[1] (numeric) = 5.1236370523598547697871176415619 absolute error = 5.1236370523598547697871176415619 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.364 Order of pole = 7.561 TOP MAIN SOLVE Loop x[1] = 3.399 y[1] (analytic) = 0 y[1] (numeric) = 5.1244755678961042148611713969021 absolute error = 5.1244755678961042148611713969021 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.364 Order of pole = 7.557 TOP MAIN SOLVE Loop x[1] = 3.4 y[1] (analytic) = 0 y[1] (numeric) = 5.1253135215551840731022095236695 absolute error = 5.1253135215551840731022095236695 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.363 Order of pole = 7.553 TOP MAIN SOLVE Loop x[1] = 3.401 y[1] (analytic) = 0 y[1] (numeric) = 5.1261509138616447568968175722865 absolute error = 5.1261509138616447568968175722865 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.363 Order of pole = 7.549 TOP MAIN SOLVE Loop x[1] = 3.402 y[1] (analytic) = 0 y[1] (numeric) = 5.1269877453400476469945130370605 absolute error = 5.1269877453400476469945130370605 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.363 Order of pole = 7.545 TOP MAIN SOLVE Loop x[1] = 3.403 y[1] (analytic) = 0 y[1] (numeric) = 5.1278240165149640882924678422354 absolute error = 5.1278240165149640882924678422354 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.363 Order of pole = 7.541 TOP MAIN SOLVE Loop x[1] = 3.404 y[1] (analytic) = 0 y[1] (numeric) = 5.1286597279109743882458609811803 absolute error = 5.1286597279109743882458609811803 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.363 Order of pole = 7.537 TOP MAIN SOLVE Loop x[1] = 3.405 y[1] (analytic) = 0 y[1] (numeric) = 5.1294948800526668179023664624577 absolute error = 5.1294948800526668179023664624577 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.363 Order of pole = 7.533 TOP MAIN SOLVE Loop x[1] = 3.406 y[1] (analytic) = 0 y[1] (numeric) = 5.1303294734646366155592701401895 absolute error = 5.1303294734646366155592701401895 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.363 Order of pole = 7.529 TOP MAIN SOLVE Loop x[1] = 3.407 y[1] (analytic) = 0 y[1] (numeric) = 5.1311635086714849930416974778084 absolute error = 5.1311635086714849930416974778084 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.363 Order of pole = 7.525 TOP MAIN SOLVE Loop x[1] = 3.408 y[1] (analytic) = 0 y[1] (numeric) = 5.1319969861978181446004228138979 absolute error = 5.1319969861978181446004228138979 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.363 Order of pole = 7.521 TOP MAIN SOLVE Loop x[1] = 3.409 y[1] (analytic) = 0 y[1] (numeric) = 5.132829906568246258427719266337 absolute error = 5.132829906568246258427719266337 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.362 Order of pole = 7.517 memory used=1106.3MB, alloc=4.6MB, time=116.41 TOP MAIN SOLVE Loop x[1] = 3.41 y[1] (analytic) = 0 y[1] (numeric) = 5.1336622703073825307896970263356 absolute error = 5.1336622703073825307896970263356 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.362 Order of pole = 7.513 TOP MAIN SOLVE Loop x[1] = 3.411 y[1] (analytic) = 0 y[1] (numeric) = 5.1344940779398421827735664571162 absolute error = 5.1344940779398421827735664571162 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.362 Order of pole = 7.51 TOP MAIN SOLVE Loop x[1] = 3.412 y[1] (analytic) = 0 y[1] (numeric) = 5.1353253299902414796482511229288 absolute error = 5.1353253299902414796482511229288 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.362 Order of pole = 7.506 TOP MAIN SOLVE Loop x[1] = 3.413 y[1] (analytic) = 0 y[1] (numeric) = 5.1361560269831967528367646327227 absolute error = 5.1361560269831967528367646327227 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.362 Order of pole = 7.502 TOP MAIN SOLVE Loop x[1] = 3.414 y[1] (analytic) = 0 y[1] (numeric) = 5.1369861694433234244987539890968 absolute error = 5.1369861694433234244987539890968 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.362 Order of pole = 7.498 TOP MAIN SOLVE Loop x[1] = 3.415 y[1] (analytic) = 0 y[1] (numeric) = 5.137815757895235034721600987059 absolute error = 5.137815757895235034721600987059 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.362 Order of pole = 7.494 TOP MAIN SOLVE Loop x[1] = 3.416 y[1] (analytic) = 0 y[1] (numeric) = 5.1386447928635422713184621085968 absolute error = 5.1386447928635422713184621085968 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.362 Order of pole = 7.491 TOP MAIN SOLVE Loop x[1] = 3.417 y[1] (analytic) = 0 y[1] (numeric) = 5.1394732748728520022316163080407 absolute error = 5.1394732748728520022316163080407 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.362 Order of pole = 7.487 TOP MAIN SOLVE Loop x[1] = 3.418 y[1] (analytic) = 0 y[1] (numeric) = 5.1403012044477663105394790796483 absolute error = 5.1403012044477663105394790796483 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.362 Order of pole = 7.483 TOP MAIN SOLVE Loop x[1] = 3.419 y[1] (analytic) = 0 y[1] (numeric) = 5.1411285821128815320656302426903 absolute error = 5.1411285821128815320656302426903 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.362 Order of pole = 7.479 TOP MAIN SOLVE Loop x[1] = 3.42 y[1] (analytic) = 0 y[1] (numeric) = 5.1419554083927872955881919705337 absolute error = 5.1419554083927872955881919705337 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.361 Order of pole = 7.476 TOP MAIN SOLVE Loop memory used=1110.1MB, alloc=4.6MB, time=116.81 x[1] = 3.421 y[1] (analytic) = 0 y[1] (numeric) = 5.1427816838120655656478827287422 absolute error = 5.1427816838120655656478827287422 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.361 Order of pole = 7.472 TOP MAIN SOLVE Loop x[1] = 3.422 y[1] (analytic) = 0 y[1] (numeric) = 5.1436074088952896879530619729937 absolute error = 5.1436074088952896879530619729937 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.361 Order of pole = 7.468 TOP MAIN SOLVE Loop x[1] = 3.423 y[1] (analytic) = 0 y[1] (numeric) = 5.1444325841670234373800696906002 absolute error = 5.1444325841670234373800696906002 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.361 Order of pole = 7.465 TOP MAIN SOLVE Loop x[1] = 3.424 y[1] (analytic) = 0 y[1] (numeric) = 5.145257210151820068567154149554 absolute error = 5.145257210151820068567154149554 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.361 Order of pole = 7.461 TOP MAIN SOLVE Loop x[1] = 3.425 y[1] (analytic) = 0 y[1] (numeric) = 5.1460812873742213691002705462637 absolute error = 5.1460812873742213691002705462637 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.361 Order of pole = 7.457 TOP MAIN SOLVE Loop x[1] = 3.426 y[1] (analytic) = 0 y[1] (numeric) = 5.1469048163587567152890226174267 absolute error = 5.1469048163587567152890226174267 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.361 Order of pole = 7.454 TOP MAIN SOLVE Loop x[1] = 3.427 y[1] (analytic) = 0 y[1] (numeric) = 5.1477277976299421305310087027664 absolute error = 5.1477277976299421305310087027664 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.361 Order of pole = 7.45 TOP MAIN SOLVE Loop x[1] = 3.428 y[1] (analytic) = 0 y[1] (numeric) = 5.1485502317122793462628232135795 absolute error = 5.1485502317122793462628232135795 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.361 Order of pole = 7.447 TOP MAIN SOLVE Loop x[1] = 3.429 y[1] (analytic) = 0 y[1] (numeric) = 5.1493721191302548654959539771438 absolute error = 5.1493721191302548654959539771438 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.361 Order of pole = 7.443 TOP MAIN SOLVE Loop x[1] = 3.43 y[1] (analytic) = 0 y[1] (numeric) = 5.1501934604083390289358054889728 absolute error = 5.1501934604083390289358054889728 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.361 Order of pole = 7.44 TOP MAIN SOLVE Loop x[1] = 3.431 y[1] (analytic) = 0 y[1] (numeric) = 5.1510142560709850836820677136149 absolute error = 5.1510142560709850836820677136149 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.361 Order of pole = 7.436 TOP MAIN SOLVE Loop memory used=1113.9MB, alloc=4.6MB, time=117.22 x[1] = 3.432 y[1] (analytic) = 0 y[1] (numeric) = 5.1518345066426282545086397301289 absolute error = 5.1518345066426282545086397301289 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.361 Order of pole = 7.433 TOP MAIN SOLVE Loop x[1] = 3.433 y[1] (analytic) = 0 y[1] (numeric) = 5.1526542126476848177213072204659 absolute error = 5.1526542126476848177213072204659 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.361 Order of pole = 7.429 TOP MAIN SOLVE Loop x[1] = 3.434 y[1] (analytic) = 0 y[1] (numeric) = 5.1534733746105511775913625476969 absolute error = 5.1534733746105511775913625476969 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.361 Order of pole = 7.426 TOP MAIN SOLVE Loop x[1] = 3.435 y[1] (analytic) = 0 y[1] (numeric) = 5.1542919930556029453633459662879 absolute error = 5.1542919930556029453633459662879 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.361 Order of pole = 7.422 TOP MAIN SOLVE Loop x[1] = 3.436 y[1] (analytic) = 0 y[1] (numeric) = 5.155110068507194020835076348384 absolute error = 5.155110068507194020835076348384 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.361 Order of pole = 7.419 TOP MAIN SOLVE Loop x[1] = 3.437 y[1] (analytic) = 0 y[1] (numeric) = 5.155927601489655676508129698264 absolute error = 5.155927601489655676508129698264 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.36 Order of pole = 7.416 TOP MAIN SOLVE Loop x[1] = 3.438 y[1] (analytic) = 0 y[1] (numeric) = 5.1567445925272956443069136617108 absolute error = 5.1567445925272956443069136617108 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.36 Order of pole = 7.412 TOP MAIN SOLVE Loop x[1] = 3.439 y[1] (analytic) = 0 y[1] (numeric) = 5.1575610421443972048644762179516 absolute error = 5.1575610421443972048644762179516 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.36 Order of pole = 7.409 TOP MAIN SOLVE Loop x[1] = 3.44 y[1] (analytic) = 0 y[1] (numeric) = 5.1583769508652182793731767689982 absolute error = 5.1583769508652182793731767689982 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.36 Order of pole = 7.406 TOP MAIN SOLVE Loop x[1] = 3.441 y[1] (analytic) = 0 y[1] (numeric) = 5.1591923192139905239983379146057 absolute error = 5.1591923192139905239983379146057 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.36 Order of pole = 7.403 TOP MAIN SOLVE Loop x[1] = 3.442 y[1] (analytic) = 0 y[1] (numeric) = 5.1600071477149184268529863206044 absolute error = 5.1600071477149184268529863206044 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.36 Order of pole = 7.399 TOP MAIN SOLVE Loop x[1] = 3.443 y[1] (analytic) = 0 y[1] (numeric) = 5.1608214368921784075317812539905 absolute error = 5.1608214368921784075317812539905 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.36 Order of pole = 7.396 TOP MAIN SOLVE Loop memory used=1117.7MB, alloc=4.6MB, time=117.62 x[1] = 3.444 y[1] (analytic) = 0 y[1] (numeric) = 5.1616351872699179192022195698251 absolute error = 5.1616351872699179192022195698251 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.36 Order of pole = 7.393 TOP MAIN SOLVE Loop x[1] = 3.445 y[1] (analytic) = 0 y[1] (numeric) = 5.1624483993722545532511961926281 absolute error = 5.1624483993722545532511961926281 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.36 Order of pole = 7.39 TOP MAIN SOLVE Loop x[1] = 3.446 y[1] (analytic) = 0 y[1] (numeric) = 5.1632610737232751464849894385056 absolute error = 5.1632610737232751464849894385056 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.36 Order of pole = 7.387 TOP MAIN SOLVE Loop x[1] = 3.447 y[1] (analytic) = 0 y[1] (numeric) = 5.1640732108470348908807308736547 absolute error = 5.1640732108470348908807308736547 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.36 Order of pole = 7.384 TOP MAIN SOLVE Loop x[1] = 3.448 y[1] (analytic) = 0 y[1] (numeric) = 5.1648848112675564458874098000899 absolute error = 5.1648848112675564458874098000899 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.36 Order of pole = 7.381 TOP MAIN SOLVE Loop x[1] = 3.449 y[1] (analytic) = 0 y[1] (numeric) = 5.1656958755088290532744529003678 absolute error = 5.1656958755088290532744529003678 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.36 Order of pole = 7.378 TOP MAIN SOLVE Loop x[1] = 3.45 y[1] (analytic) = 0 y[1] (numeric) = 5.1665064040948076545259100596901 absolute error = 5.1665064040948076545259100596901 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.36 Order of pole = 7.375 TOP MAIN SOLVE Loop x[1] = 3.451 y[1] (analytic) = 0 y[1] (numeric) = 5.1673163975494120107782679159831 absolute error = 5.1673163975494120107782679159831 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.36 Order of pole = 7.372 TOP MAIN SOLVE Loop x[1] = 3.452 y[1] (analytic) = 0 y[1] (numeric) = 5.1681258563965258252999032663133 absolute error = 5.1681258563965258252999032663133 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.36 Order of pole = 7.369 TOP MAIN SOLVE Loop x[1] = 3.453 y[1] (analytic) = 0 y[1] (numeric) = 5.1689347811599958685101790812536 absolute error = 5.1689347811599958685101790812536 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.36 Order of pole = 7.366 TOP MAIN SOLVE Loop x[1] = 3.454 y[1] (analytic) = 0 y[1] (numeric) = 5.1697431723636311055361765474898 absolute error = 5.1697431723636311055361765474898 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.36 Order of pole = 7.363 TOP MAIN SOLVE Loop memory used=1121.5MB, alloc=4.6MB, time=118.02 x[1] = 3.455 y[1] (analytic) = 0 y[1] (numeric) = 5.1705510305312018263050472729975 absolute error = 5.1705510305312018263050472729975 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.36 Order of pole = 7.36 TOP MAIN SOLVE Loop x[1] = 3.456 y[1] (analytic) = 0 y[1] (numeric) = 5.1713583561864387781699605484591 absolute error = 5.1713583561864387781699605484591 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.36 Order of pole = 7.357 TOP MAIN SOLVE Loop x[1] = 3.457 y[1] (analytic) = 0 y[1] (numeric) = 5.1721651498530323010676113631668 absolute error = 5.1721651498530323010676113631668 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.36 Order of pole = 7.354 TOP MAIN SOLVE Loop x[1] = 3.458 y[1] (analytic) = 0 y[1] (numeric) = 5.1729714120546314652052457234066 absolute error = 5.1729714120546314652052457234066 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.36 Order of pole = 7.351 TOP MAIN SOLVE Loop x[1] = 3.459 y[1] (analytic) = 0 y[1] (numeric) = 5.1737771433148432112751507161791 absolute error = 5.1737771433148432112751507161791 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.36 Order of pole = 7.349 TOP MAIN SOLVE Loop x[1] = 3.46 y[1] (analytic) = 0 y[1] (numeric) = 5.1745823441572314931945477010162 absolute error = 5.1745823441572314931945477010162 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.36 Order of pole = 7.346 TOP MAIN SOLVE Loop x[1] = 3.461 y[1] (analytic) = 0 y[1] (numeric) = 5.1753870151053164233688179975415 absolute error = 5.1753870151053164233688179975415 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.36 Order of pole = 7.343 TOP MAIN SOLVE Loop x[1] = 3.462 y[1] (analytic) = 0 y[1] (numeric) = 5.1761911566825734204759814662241 absolute error = 5.1761911566825734204759814662241 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.361 Order of pole = 7.341 TOP MAIN SOLVE Loop x[1] = 3.463 y[1] (analytic) = 0 y[1] (numeric) = 5.1769947694124323597703394544326 absolute error = 5.1769947694124323597703394544326 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.361 Order of pole = 7.338 TOP MAIN SOLVE Loop x[1] = 3.464 y[1] (analytic) = 0 y[1] (numeric) = 5.1777978538182767259031846993391 absolute error = 5.1777978538182767259031846993391 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.361 Order of pole = 7.335 TOP MAIN SOLVE Loop x[1] = 3.465 y[1] (analytic) = 0 y[1] (numeric) = 5.1786004104234427682584719433872 absolute error = 5.1786004104234427682584719433872 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.361 Order of pole = 7.333 TOP MAIN SOLVE Loop x[1] = 3.466 y[1] (analytic) = 0 y[1] (numeric) = 5.1794024397512186588013342268599 absolute error = 5.1794024397512186588013342268599 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.361 memory used=1125.3MB, alloc=4.6MB, time=118.42 Order of pole = 7.33 TOP MAIN SOLVE Loop x[1] = 3.467 y[1] (analytic) = 0 y[1] (numeric) = 5.1802039423248436524373210754937 absolute error = 5.1802039423248436524373210754937 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.361 Order of pole = 7.328 TOP MAIN SOLVE Loop x[1] = 3.468 y[1] (analytic) = 0 y[1] (numeric) = 5.1810049186675072498802260990211 absolute error = 5.1810049186675072498802260990211 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.361 Order of pole = 7.325 TOP MAIN SOLVE Loop x[1] = 3.469 y[1] (analytic) = 0 y[1] (numeric) = 5.1818053693023483630263628589168 absolute error = 5.1818053693023483630263628589168 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.361 Order of pole = 7.323 TOP MAIN SOLVE Loop x[1] = 3.47 y[1] (analytic) = 0 y[1] (numeric) = 5.1826052947524544828331392504054 absolute error = 5.1826052947524544828331392504054 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.361 Order of pole = 7.32 TOP MAIN SOLVE Loop x[1] = 3.471 y[1] (analytic) = 0 y[1] (numeric) = 5.1834046955408608496997720748979 absolute error = 5.1834046955408608496997720748979 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.361 Order of pole = 7.318 TOP MAIN SOLVE Loop x[1] = 3.472 y[1] (analytic) = 0 y[1] (numeric) = 5.1842035721905496263479749543869 absolute error = 5.1842035721905496263479749543869 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.361 Order of pole = 7.315 TOP MAIN SOLVE Loop x[1] = 3.473 y[1] (analytic) = 0 y[1] (numeric) = 5.1850019252244490732004442588854 absolute error = 5.1850019252244490732004442588854 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.361 Order of pole = 7.313 TOP MAIN SOLVE Loop x[1] = 3.474 y[1] (analytic) = 0 y[1] (numeric) = 5.1857997551654327262549592816673 absolute error = 5.1857997551654327262549592816673 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.361 Order of pole = 7.311 TOP MAIN SOLVE Loop x[1] = 3.475 y[1] (analytic) = 0 y[1] (numeric) = 5.1865970625363185774519045047968 absolute error = 5.1865970625363185774519045047968 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.361 Order of pole = 7.309 TOP MAIN SOLVE Loop x[1] = 3.476 y[1] (analytic) = 0 y[1] (numeric) = 5.1873938478598682575330134491467 absolute error = 5.1873938478598682575330134491467 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.362 Order of pole = 7.306 TOP MAIN SOLVE Loop x[1] = 3.477 y[1] (analytic) = 0 y[1] (numeric) = 5.188190111658786221389125298735 absolute error = 5.188190111658786221389125298735 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.362 Order of pole = 7.304 TOP MAIN SOLVE Loop memory used=1129.1MB, alloc=4.6MB, time=118.83 x[1] = 3.478 y[1] (analytic) = 0 y[1] (numeric) = 5.1889858544557189358947372286864 absolute error = 5.1889858544557189358947372286864 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.362 Order of pole = 7.302 TOP MAIN SOLVE Loop x[1] = 3.479 y[1] (analytic) = 0 y[1] (numeric) = 5.1897810767732540702271271493811 absolute error = 5.1897810767732540702271271493811 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.362 Order of pole = 7.3 TOP MAIN SOLVE Loop x[1] = 3.48 y[1] (analytic) = 0 y[1] (numeric) = 5.190575779133919688667813406318 absolute error = 5.190575779133919688667813406318 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.362 Order of pole = 7.298 TOP MAIN SOLVE Loop x[1] = 3.481 y[1] (analytic) = 0 y[1] (numeric) = 5.191369962060183445884109845825 absolute error = 5.191369962060183445884109845825 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.362 Order of pole = 7.296 TOP MAIN SOLVE Loop x[1] = 3.482 y[1] (analytic) = 0 y[1] (numeric) = 5.1921636260744517846885265709221 absolute error = 5.1921636260744517846885265709221 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.362 Order of pole = 7.294 TOP MAIN SOLVE Loop x[1] = 3.483 y[1] (analytic) = 0 y[1] (numeric) = 5.1929567716990691362737586693199 absolute error = 5.1929567716990691362737586693199 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.362 Order of pole = 7.292 TOP MAIN SOLVE Loop x[1] = 3.484 y[1] (analytic) = 0 y[1] (numeric) = 5.1937493994563171229209971966378 absolute error = 5.1937493994563171229209971966378 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.362 Order of pole = 7.29 TOP MAIN SOLVE Loop x[1] = 3.485 y[1] (analytic) = 0 y[1] (numeric) = 5.1945415098684137631792887423908 absolute error = 5.1945415098684137631792887423908 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.363 Order of pole = 7.288 TOP MAIN SOLVE Loop x[1] = 3.486 y[1] (analytic) = 0 y[1] (numeric) = 5.1953331034575126795136619940449 absolute error = 5.1953331034575126795136619940449 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.363 Order of pole = 7.286 TOP MAIN SOLVE Loop x[1] = 3.487 y[1] (analytic) = 0 y[1] (numeric) = 5.1961241807457023084197318454099 absolute error = 5.1961241807457023084197318454099 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.363 Order of pole = 7.284 TOP MAIN SOLVE Loop x[1] = 3.488 y[1] (analytic) = 0 y[1] (numeric) = 5.1969147422550051130024837697521 absolute error = 5.1969147422550051130024837697521 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.363 Order of pole = 7.282 TOP MAIN SOLVE Loop memory used=1133.0MB, alloc=4.6MB, time=119.24 x[1] = 3.489 y[1] (analytic) = 0 y[1] (numeric) = 5.1977047885073767980169333952009 absolute error = 5.1977047885073767980169333952009 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.363 Order of pole = 7.28 TOP MAIN SOLVE Loop x[1] = 3.49 y[1] (analytic) = 0 y[1] (numeric) = 5.1984943200247055273683484802125 absolute error = 5.1984943200247055273683484802125 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.363 Order of pole = 7.278 TOP MAIN SOLVE Loop x[1] = 3.491 y[1] (analytic) = 0 y[1] (numeric) = 5.1992833373288111440697127899794 absolute error = 5.1992833373288111440697127899794 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.363 Order of pole = 7.277 TOP MAIN SOLVE Loop x[1] = 3.492 y[1] (analytic) = 0 y[1] (numeric) = 5.2000718409414443926541037206548 absolute error = 5.2000718409414443926541037206548 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.364 Order of pole = 7.275 TOP MAIN SOLVE Loop x[1] = 3.493 y[1] (analytic) = 0 y[1] (numeric) = 5.2008598313842861440396479070287 absolute error = 5.2008598313842861440396479070287 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.364 Order of pole = 7.273 TOP MAIN SOLVE Loop x[1] = 3.494 y[1] (analytic) = 0 y[1] (numeric) = 5.201647309178946622844711480776 absolute error = 5.201647309178946622844711480776 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.364 Order of pole = 7.272 TOP MAIN SOLVE Loop x[1] = 3.495 y[1] (analytic) = 0 y[1] (numeric) = 5.2024342748469646371509741205171 absolute error = 5.2024342748469646371509741205171 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.364 Order of pole = 7.27 TOP MAIN SOLVE Loop x[1] = 3.496 y[1] (analytic) = 0 y[1] (numeric) = 5.2032207289098068107120285516238 absolute error = 5.2032207289098068107120285516238 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.364 Order of pole = 7.268 TOP MAIN SOLVE Loop x[1] = 3.497 y[1] (analytic) = 0 y[1] (numeric) = 5.2040066718888668176051397128878 absolute error = 5.2040066718888668176051397128878 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.364 Order of pole = 7.267 TOP MAIN SOLVE Loop x[1] = 3.498 y[1] (analytic) = 0 y[1] (numeric) = 5.2047921043054646193237904087736 absolute error = 5.2047921043054646193237904087736 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.365 Order of pole = 7.265 TOP MAIN SOLVE Loop x[1] = 3.499 y[1] (analytic) = 0 y[1] (numeric) = 5.2055770266808457043086329099333 absolute error = 5.2055770266808457043086329099333 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.365 Order of pole = 7.264 TOP MAIN SOLVE Loop x[1] = 3.5 y[1] (analytic) = 0 y[1] (numeric) = 5.2063614395361803299144586508854 absolute error = 5.2063614395361803299144586508854 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.365 Order of pole = 7.262 TOP MAIN SOLVE Loop memory used=1136.8MB, alloc=4.6MB, time=119.64 x[1] = 3.501 y[1] (analytic) = 0 y[1] (numeric) = 5.2071453433925627668107909021857 absolute error = 5.2071453433925627668107909021857 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.365 Order of pole = 7.261 TOP MAIN SOLVE Loop x[1] = 3.502 y[1] (analytic) = 0 y[1] (numeric) = 5.2079287387710105458136980649708 absolute error = 5.2079287387710105458136980649708 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.365 Order of pole = 7.26 TOP MAIN SOLVE Loop x[1] = 3.503 y[1] (analytic) = 0 y[1] (numeric) = 5.2087116261924637071464180483526 absolute error = 5.2087116261924637071464180483526 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.366 Order of pole = 7.258 TOP MAIN SOLVE Loop x[1] = 3.504 y[1] (analytic) = 0 y[1] (numeric) = 5.2094940061777840521263770447222 absolute error = 5.2094940061777840521263770447222 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.366 Order of pole = 7.257 TOP MAIN SOLVE Loop x[1] = 3.505 y[1] (analytic) = 0 y[1] (numeric) = 5.2102758792477543972761789144955 absolute error = 5.2102758792477543972761789144955 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.366 Order of pole = 7.256 TOP MAIN SOLVE Loop x[1] = 3.506 y[1] (analytic) = 0 y[1] (numeric) = 5.2110572459230778308561343301369 absolute error = 5.2110572459230778308561343301369 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.366 Order of pole = 7.254 TOP MAIN SOLVE Loop x[1] = 3.507 y[1] (analytic) = 0 y[1] (numeric) = 5.2118381067243769718158918093502 absolute error = 5.2118381067243769718158918093502 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.366 Order of pole = 7.253 TOP MAIN SOLVE Loop x[1] = 3.508 y[1] (analytic) = 0 y[1] (numeric) = 5.2126184621721932311627257890512 absolute error = 5.2126184621721932311627257890512 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.367 Order of pole = 7.252 TOP MAIN SOLVE Loop x[1] = 3.509 y[1] (analytic) = 0 y[1] (numeric) = 5.2133983127869860757440299550625 absolute error = 5.2133983127869860757440299550625 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.367 Order of pole = 7.251 TOP MAIN SOLVE Loop x[1] = 3.51 y[1] (analytic) = 0 y[1] (numeric) = 5.2141776590891322944415571473199 absolute error = 5.2141776590891322944415571473199 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.367 Order of pole = 7.25 TOP MAIN SOLVE Loop x[1] = 3.511 y[1] (analytic) = 0 y[1] (numeric) = 5.2149565015989252667749403066732 absolute error = 5.2149565015989252667749403066732 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.367 Order of pole = 7.248 TOP MAIN SOLVE Loop memory used=1140.6MB, alloc=4.6MB, time=120.05 x[1] = 3.512 y[1] (analytic) = 0 y[1] (numeric) = 5.2157348408365742339120221170291 absolute error = 5.2157348408365742339120221170291 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.367 Order of pole = 7.247 TOP MAIN SOLVE Loop x[1] = 3.513 y[1] (analytic) = 0 y[1] (numeric) = 5.2165126773222035720835142255426 absolute error = 5.2165126773222035720835142255426 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.368 Order of pole = 7.246 TOP MAIN SOLVE Loop x[1] = 3.514 y[1] (analytic) = 0 y[1] (numeric) = 5.217290011575852068399500193738 absolute error = 5.217290011575852068399500193738 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.368 Order of pole = 7.245 TOP MAIN SOLVE Loop x[1] = 3.515 y[1] (analytic) = 0 y[1] (numeric) = 5.2180668441174721990652896437551 absolute error = 5.2180668441174721990652896437551 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.368 Order of pole = 7.244 TOP MAIN SOLVE Loop x[1] = 3.516 y[1] (analytic) = 0 y[1] (numeric) = 5.2188431754669294099941244162942 absolute error = 5.2188431754669294099941244162942 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.368 Order of pole = 7.243 TOP MAIN SOLVE Loop x[1] = 3.517 y[1] (analytic) = 0 y[1] (numeric) = 5.2196190061440013998142309501968 absolute error = 5.2196190061440013998142309501968 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.369 Order of pole = 7.242 TOP MAIN SOLVE Loop x[1] = 3.518 y[1] (analytic) = 0 y[1] (numeric) = 5.2203943366683774052677065278691 absolute error = 5.2203943366683774052677065278691 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.369 Order of pole = 7.242 TOP MAIN SOLVE Loop x[1] = 3.519 y[1] (analytic) = 0 y[1] (numeric) = 5.2211691675596574889987205058581 absolute error = 5.2211691675596574889987205058581 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.369 Order of pole = 7.241 TOP MAIN SOLVE Loop x[1] = 3.52 y[1] (analytic) = 0 y[1] (numeric) = 5.2219434993373518297285051657414 absolute error = 5.2219434993373518297285051657414 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.369 Order of pole = 7.24 TOP MAIN SOLVE Loop x[1] = 3.521 y[1] (analytic) = 0 y[1] (numeric) = 5.2227173325208800148146043770232 absolute error = 5.2227173325208800148146043770232 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.37 Order of pole = 7.239 TOP MAIN SOLVE Loop x[1] = 3.522 y[1] (analytic) = 0 y[1] (numeric) = 5.2234906676295703351918418608499 absolute error = 5.2234906676295703351918418608499 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.37 Order of pole = 7.238 TOP MAIN SOLVE Loop x[1] = 3.523 y[1] (analytic) = 0 y[1] (numeric) = 5.2242635051826590826924644810041 absolute error = 5.2242635051826590826924644810041 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.37 Order of pole = 7.237 memory used=1144.4MB, alloc=4.6MB, time=120.46 TOP MAIN SOLVE Loop x[1] = 3.524 y[1] (analytic) = 0 y[1] (numeric) = 5.225035845699289849742909666714 absolute error = 5.225035845699289849742909666714 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.371 Order of pole = 7.237 TOP MAIN SOLVE Loop x[1] = 3.525 y[1] (analytic) = 0 y[1] (numeric) = 5.22580768969851283143463979026 absolute error = 5.22580768969851283143463979026 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.371 Order of pole = 7.236 TOP MAIN SOLVE Loop x[1] = 3.526 y[1] (analytic) = 0 y[1] (numeric) = 5.2265790376992841299664800810821 absolute error = 5.2265790376992841299664800810821 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.371 Order of pole = 7.235 TOP MAIN SOLVE Loop x[1] = 3.527 y[1] (analytic) = 0 y[1] (numeric) = 5.2273498902204650614558904570187 absolute error = 5.2273498902204650614558904570187 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.371 Order of pole = 7.235 TOP MAIN SOLVE Loop x[1] = 3.528 y[1] (analytic) = 0 y[1] (numeric) = 5.2281202477808214651165954923565 absolute error = 5.2281202477808214651165954923565 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.372 Order of pole = 7.234 TOP MAIN SOLVE Loop x[1] = 3.529 y[1] (analytic) = 0 y[1] (numeric) = 5.2288901108990230147999906214648 absolute error = 5.2288901108990230147999906214648 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.372 Order of pole = 7.233 TOP MAIN SOLVE Loop x[1] = 3.53 y[1] (analytic) = 0 y[1] (numeric) = 5.2296594800936425328977365958466 absolute error = 5.2296594800936425328977365958466 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.372 Order of pole = 7.233 TOP MAIN SOLVE Loop x[1] = 3.531 y[1] (analytic) = 0 y[1] (numeric) = 5.2304283558831553066029481713792 absolute error = 5.2304283558831553066029481713792 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.373 Order of pole = 7.232 TOP MAIN SOLVE Loop x[1] = 3.532 y[1] (analytic) = 0 y[1] (numeric) = 5.231196738785938406527377001267 absolute error = 5.231196738785938406527377001267 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.373 Order of pole = 7.232 TOP MAIN SOLVE Loop x[1] = 3.533 y[1] (analytic) = 0 y[1] (numeric) = 5.2319646293202700076719827486995 absolute error = 5.2319646293202700076719827486995 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.373 Order of pole = 7.231 TOP MAIN SOLVE Loop x[1] = 3.534 y[1] (analytic) = 0 y[1] (numeric) = 5.232732028004328712748280511326 absolute error = 5.232732028004328712748280511326 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.373 Order of pole = 7.231 TOP MAIN SOLVE Loop memory used=1148.2MB, alloc=4.6MB, time=120.86 x[1] = 3.535 y[1] (analytic) = 0 y[1] (numeric) = 5.2334989353561928778478467673382 absolute error = 5.2334989353561928778478467673382 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.374 Order of pole = 7.23 TOP MAIN SOLVE Loop x[1] = 3.536 y[1] (analytic) = 0 y[1] (numeric) = 5.234265351893839940457360210118 absolute error = 5.234265351893839940457360210118 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.374 Order of pole = 7.23 TOP MAIN SOLVE Loop x[1] = 3.537 y[1] (analytic) = 0 y[1] (numeric) = 5.2350312781351457498165480349749 absolute error = 5.2350312781351457498165480349749 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.374 Order of pole = 7.229 TOP MAIN SOLVE Loop x[1] = 3.538 y[1] (analytic) = 0 y[1] (numeric) = 5.2357967145978838996164024773881 absolute error = 5.2357967145978838996164024773881 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.375 Order of pole = 7.229 TOP MAIN SOLVE Loop x[1] = 3.539 y[1] (analytic) = 0 y[1] (numeric) = 5.2365616617997250630350266773005 absolute error = 5.2365616617997250630350266773005 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.375 Order of pole = 7.229 TOP MAIN SOLVE Loop x[1] = 3.54 y[1] (analytic) = 0 y[1] (numeric) = 5.2373261202582363301084632583032 absolute error = 5.2373261202582363301084632583032 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.375 Order of pole = 7.228 TOP MAIN SOLVE Loop x[1] = 3.541 y[1] (analytic) = 0 y[1] (numeric) = 5.2380900904908805474338533639198 absolute error = 5.2380900904908805474338533639198 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.376 Order of pole = 7.228 TOP MAIN SOLVE Loop x[1] = 3.542 y[1] (analytic) = 0 y[1] (numeric) = 5.2388535730150156602022682855696 absolute error = 5.2388535730150156602022682855696 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.376 Order of pole = 7.228 TOP MAIN SOLVE Loop x[1] = 3.543 y[1] (analytic) = 0 y[1] (numeric) = 5.2396165683478940565585502480725 absolute error = 5.2396165683478940565585502480725 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.376 Order of pole = 7.227 TOP MAIN SOLVE Loop x[1] = 3.544 y[1] (analytic) = 0 y[1] (numeric) = 5.2403790770066619142854933886775 absolute error = 5.2403790770066619142854933886775 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.377 Order of pole = 7.227 TOP MAIN SOLVE Loop x[1] = 3.545 y[1] (analytic) = 0 y[1] (numeric) = 5.2411410995083585498096904744703 absolute error = 5.2411410995083585498096904744703 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.377 Order of pole = 7.227 TOP MAIN SOLVE Loop x[1] = 3.546 y[1] (analytic) = 0 y[1] (numeric) = 5.2419026363699157695263654505554 absolute error = 5.2419026363699157695263654505554 relative error = -1 % Correct digits = -1 h = 0.001 memory used=1152.0MB, alloc=4.6MB, time=121.27 Complex estimate of poles used for equation 1 Radius of convergence = 4.377 Order of pole = 7.227 TOP MAIN SOLVE Loop x[1] = 3.547 y[1] (analytic) = 0 y[1] (numeric) = 5.2426636881081572234405064975413 absolute error = 5.2426636881081572234405064975413 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.378 Order of pole = 7.226 TOP MAIN SOLVE Loop x[1] = 3.548 y[1] (analytic) = 0 y[1] (numeric) = 5.2434242552397977611216089014951 absolute error = 5.2434242552397977611216089014951 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.378 Order of pole = 7.226 TOP MAIN SOLVE Loop x[1] = 3.549 y[1] (analytic) = 0 y[1] (numeric) = 5.2441843382814427899693317025923 absolute error = 5.2441843382814427899693317025923 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.378 Order of pole = 7.226 TOP MAIN SOLVE Loop x[1] = 3.55 y[1] (analytic) = 0 y[1] (numeric) = 5.244943937749587635787366790094 absolute error = 5.244943937749587635787366790094 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.379 Order of pole = 7.226 TOP MAIN SOLVE Loop x[1] = 3.551 y[1] (analytic) = 0 y[1] (numeric) = 5.2457030541606169056628138509435 absolute error = 5.2457030541606169056628138509435 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.379 Order of pole = 7.226 TOP MAIN SOLVE Loop x[1] = 3.552 y[1] (analytic) = 0 y[1] (numeric) = 5.2464616880308038531483493571145 absolute error = 5.2464616880308038531483493571145 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.379 Order of pole = 7.226 TOP MAIN SOLVE Loop x[1] = 3.553 y[1] (analytic) = 0 y[1] (numeric) = 5.2472198398763097457444725927735 absolute error = 5.2472198398763097457444725927735 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.38 Order of pole = 7.225 TOP MAIN SOLVE Loop x[1] = 3.554 y[1] (analytic) = 0 y[1] (numeric) = 5.2479775102131832346791065762633 absolute error = 5.2479775102131832346791065762633 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.38 Order of pole = 7.225 TOP MAIN SOLVE Loop x[1] = 3.555 y[1] (analytic) = 0 y[1] (numeric) = 5.2487346995573597269818266237828 absolute error = 5.2487346995573597269818266237828 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.38 Order of pole = 7.225 TOP MAIN SOLVE Loop x[1] = 3.556 y[1] (analytic) = 0 y[1] (numeric) = 5.2494914084246607598499842313521 absolute error = 5.2494914084246607598499842313521 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.381 Order of pole = 7.225 TOP MAIN SOLVE Loop x[1] = 3.557 y[1] (analytic) = 0 y[1] (numeric) = 5.2502476373307933773039889191282 absolute error = 5.2502476373307933773039889191282 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.381 Order of pole = 7.225 TOP MAIN SOLVE Loop memory used=1155.8MB, alloc=4.6MB, time=121.68 x[1] = 3.558 y[1] (analytic) = 0 y[1] (numeric) = 5.2510033867913495091290056872855 absolute error = 5.2510033867913495091290056872855 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.381 Order of pole = 7.225 TOP MAIN SOLVE Loop x[1] = 3.559 y[1] (analytic) = 0 y[1] (numeric) = 5.2517586573218053521003207754239 absolute error = 5.2517586573218053521003207754239 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.382 Order of pole = 7.225 TOP MAIN SOLVE Loop x[1] = 3.56 y[1] (analytic) = 0 y[1] (numeric) = 5.2525134494375207534896234977204 absolute error = 5.2525134494375207534896234977204 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.382 Order of pole = 7.225 TOP MAIN SOLVE Loop x[1] = 3.561 y[1] (analytic) = 0 y[1] (numeric) = 5.2532677636537385968494470437234 absolute error = 5.2532677636537385968494470437234 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.383 Order of pole = 7.225 TOP MAIN SOLVE Loop x[1] = 3.562 y[1] (analytic) = 0 y[1] (numeric) = 5.2540216004855841900730062897118 absolute error = 5.2540216004855841900730062897118 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.383 Order of pole = 7.225 TOP MAIN SOLVE Loop x[1] = 3.563 y[1] (analytic) = 0 y[1] (numeric) = 5.2547749604480646557266658578237 absolute error = 5.2547749604480646557266658578237 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.383 Order of pole = 7.225 TOP MAIN SOLVE Loop x[1] = 3.564 y[1] (analytic) = 0 y[1] (numeric) = 5.2555278440560683236522668896158 absolute error = 5.2555278440560683236522668896158 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.384 Order of pole = 7.225 TOP MAIN SOLVE Loop x[1] = 3.565 y[1] (analytic) = 0 y[1] (numeric) = 5.2562802518243641258365362672603 absolute error = 5.2562802518243641258365362672603 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.384 Order of pole = 7.225 TOP MAIN SOLVE Loop x[1] = 3.566 y[1] (analytic) = 0 y[1] (numeric) = 5.2570321842676009935447973191375 absolute error = 5.2570321842676009935447973191375 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.384 Order of pole = 7.225 TOP MAIN SOLVE Loop x[1] = 3.567 y[1] (analytic) = 0 y[1] (numeric) = 5.2577836419003072567161963870556 absolute error = 5.2577836419003072567161963870556 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.385 Order of pole = 7.225 TOP MAIN SOLVE Loop x[1] = 3.568 y[1] (analytic) = 0 y[1] (numeric) = 5.2585346252368900456176550096366 absolute error = 5.2585346252368900456176550096366 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.385 Order of pole = 7.225 TOP MAIN SOLVE Loop memory used=1159.7MB, alloc=4.7MB, time=122.08 x[1] = 3.569 y[1] (analytic) = 0 y[1] (numeric) = 5.2592851347916346947537528904696 absolute error = 5.2592851347916346947537528904696 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.385 Order of pole = 7.225 TOP MAIN SOLVE Loop x[1] = 3.57 y[1] (analytic) = 0 y[1] (numeric) = 5.2600351710787041490297422703591 absolute error = 5.2600351710787041490297422703591 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.386 Order of pole = 7.225 TOP MAIN SOLVE Loop x[1] = 3.571 y[1] (analytic) = 0 y[1] (numeric) = 5.2607847346121383721648898103062 absolute error = 5.2607847346121383721648898103062 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.386 Order of pole = 7.225 TOP MAIN SOLVE Loop x[1] = 3.572 y[1] (analytic) = 0 y[1] (numeric) = 5.2615338259058537573533376156665 absolute error = 5.2615338259058537573533376156665 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.387 Order of pole = 7.225 TOP MAIN SOLVE Loop x[1] = 3.573 y[1] (analytic) = 0 y[1] (numeric) = 5.2622824454736425401696705921493 absolute error = 5.2622824454736425401696705921493 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.387 Order of pole = 7.225 TOP MAIN SOLVE Loop x[1] = 3.574 y[1] (analytic) = 0 y[1] (numeric) = 5.2630305938291722137163729208663 absolute error = 5.2630305938291722137163729208663 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.387 Order of pole = 7.225 TOP MAIN SOLVE Loop x[1] = 3.575 y[1] (analytic) = 0 y[1] (numeric) = 5.2637782714859849460103520724267 absolute error = 5.2637782714859849460103520724267 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.388 Order of pole = 7.225 TOP MAIN SOLVE Loop x[1] = 3.576 y[1] (analytic) = 0 y[1] (numeric) = 5.2645254789574969996057044490191 absolute error = 5.2645254789574969996057044490191 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.388 Order of pole = 7.225 TOP MAIN SOLVE Loop x[1] = 3.577 y[1] (analytic) = 0 y[1] (numeric) = 5.2652722167569981534498924484345 absolute error = 5.2652722167569981534498924484345 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.388 Order of pole = 7.225 TOP MAIN SOLVE Loop x[1] = 3.578 y[1] (analytic) = 0 y[1] (numeric) = 5.2660184853976511269704984849862 absolute error = 5.2660184853976511269704984849862 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.389 Order of pole = 7.225 TOP MAIN SOLVE Loop x[1] = 3.579 y[1] (analytic) = 0 y[1] (numeric) = 5.2667642853924910063897172791794 absolute error = 5.2667642853924910063897172791794 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.389 Order of pole = 7.225 TOP MAIN SOLVE Loop x[1] = 3.58 y[1] (analytic) = 0 y[1] (numeric) = 5.2675096172544246732637435406997 absolute error = 5.2675096172544246732637435406997 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.389 Order of pole = 7.225 TOP MAIN SOLVE Loop memory used=1163.5MB, alloc=4.7MB, time=122.49 x[1] = 3.581 y[1] (analytic) = 0 y[1] (numeric) = 5.2682544814962302352442080177299 absolute error = 5.2682544814962302352442080177299 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.39 Order of pole = 7.225 TOP MAIN SOLVE Loop x[1] = 3.582 y[1] (analytic) = 0 y[1] (numeric) = 5.2689988786305564590588107696885 absolute error = 5.2689988786305564590588107696885 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.39 Order of pole = 7.225 TOP MAIN SOLVE Loop x[1] = 3.583 y[1] (analytic) = 0 y[1] (numeric) = 5.2697428091699222057082964401257 absolute error = 5.2697428091699222057082964401257 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.391 Order of pole = 7.225 TOP MAIN SOLVE Loop x[1] = 3.584 y[1] (analytic) = 0 y[1] (numeric) = 5.2704862736267158678769122616212 absolute error = 5.2704862736267158678769122616212 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.391 Order of pole = 7.225 TOP MAIN SOLVE Loop x[1] = 3.585 y[1] (analytic) = 0 y[1] (numeric) = 5.2712292725131948095534855150256 absolute error = 5.2712292725131948095534855150256 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.391 Order of pole = 7.224 TOP MAIN SOLVE Loop x[1] = 3.586 y[1] (analytic) = 0 y[1] (numeric) = 5.271971806341484807860253191179 absolute error = 5.271971806341484807860253191179 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.392 Order of pole = 7.224 TOP MAIN SOLVE Loop x[1] = 3.587 y[1] (analytic) = 0 y[1] (numeric) = 5.2727138756235794970865726642464 absolute error = 5.2727138756235794970865726642464 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.392 Order of pole = 7.224 TOP MAIN SOLVE Loop x[1] = 3.588 y[1] (analytic) = 0 y[1] (numeric) = 5.2734554808713398149246382819396 absolute error = 5.2734554808713398149246382819396 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.392 Order of pole = 7.224 TOP MAIN SOLVE Loop x[1] = 3.589 y[1] (analytic) = 0 y[1] (numeric) = 5.2741966225964934509043249090657 absolute error = 5.2741966225964934509043249090657 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.393 Order of pole = 7.224 TOP MAIN SOLVE Loop x[1] = 3.59 y[1] (analytic) = 0 y[1] (numeric) = 5.2749373013106342970242756269634 absolute error = 5.2749373013106342970242756269634 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.393 Order of pole = 7.224 TOP MAIN SOLVE Loop x[1] = 3.591 y[1] (analytic) = 0 y[1] (numeric) = 5.2756775175252219005763469923775 absolute error = 5.2756775175252219005763469923775 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.393 Order of pole = 7.224 TOP MAIN SOLVE Loop memory used=1167.3MB, alloc=4.7MB, time=122.89 x[1] = 3.592 y[1] (analytic) = 0 y[1] (numeric) = 5.2764172717515809191605214950893 absolute error = 5.2764172717515809191605214950893 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.394 Order of pole = 7.224 TOP MAIN SOLVE Loop x[1] = 3.593 y[1] (analytic) = 0 y[1] (numeric) = 5.2771565645009005778873931240813 absolute error = 5.2771565645009005778873931240813 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.394 Order of pole = 7.223 TOP MAIN SOLVE Loop x[1] = 3.594 y[1] (analytic) = 0 y[1] (numeric) = 5.2778953962842341287653282570798 absolute error = 5.2778953962842341287653282570798 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.394 Order of pole = 7.223 TOP MAIN SOLVE Loop x[1] = 3.595 y[1] (analytic) = 0 y[1] (numeric) = 5.2786337676124983122694004279059 absolute error = 5.2786337676124983122694004279059 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.395 Order of pole = 7.223 TOP MAIN SOLVE Loop x[1] = 3.596 y[1] (analytic) = 0 y[1] (numeric) = 5.2793716789964728210891939000815 absolute error = 5.2793716789964728210891939000815 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.395 Order of pole = 7.223 TOP MAIN SOLVE Loop x[1] = 3.597 y[1] (analytic) = 0 y[1] (numeric) = 5.2801091309467997660525673835009 absolute error = 5.2801091309467997660525673835009 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.395 Order of pole = 7.222 TOP MAIN SOLVE Loop x[1] = 3.598 y[1] (analytic) = 0 y[1] (numeric) = 5.2808461239739831442224656735988 absolute error = 5.2808461239739831442224656735988 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.396 Order of pole = 7.222 TOP MAIN SOLVE Loop x[1] = 3.599 y[1] (analytic) = 0 y[1] (numeric) = 5.2815826585883883091638634692385 absolute error = 5.2815826585883883091638634692385 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.396 Order of pole = 7.222 TOP MAIN SOLVE Loop x[1] = 3.6 y[1] (analytic) = 0 y[1] (numeric) = 5.2823187353002414433779221364195 absolute error = 5.2823187353002414433779221364195 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.396 Order of pole = 7.221 TOP MAIN SOLVE Loop x[1] = 3.601 y[1] (analytic) = 0 y[1] (numeric) = 5.2830543546196290329004367297777 absolute error = 5.2830543546196290329004367297777 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.397 Order of pole = 7.221 TOP MAIN SOLVE Loop x[1] = 3.602 y[1] (analytic) = 0 y[1] (numeric) = 5.2837895170564973440616471626332 absolute error = 5.2837895170564973440616471626332 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.397 Order of pole = 7.221 TOP MAIN SOLVE Loop x[1] = 3.603 y[1] (analytic) = 0 y[1] (numeric) = 5.284524223120651902404484028947 absolute error = 5.284524223120651902404484028947 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.397 Order of pole = 7.22 memory used=1171.1MB, alloc=4.7MB, time=123.29 TOP MAIN SOLVE Loop x[1] = 3.604 y[1] (analytic) = 0 y[1] (numeric) = 5.2852584733217569737583162268856 absolute error = 5.2852584733217569737583162268856 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.398 Order of pole = 7.22 TOP MAIN SOLVE Loop x[1] = 3.605 y[1] (analytic) = 0 y[1] (numeric) = 5.2859922681693350474652642136825 absolute error = 5.2859922681693350474652642136825 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.398 Order of pole = 7.219 TOP MAIN SOLVE Loop x[1] = 3.606 y[1] (analytic) = 0 y[1] (numeric) = 5.2867256081727663217561394350313 absolute error = 5.2867256081727663217561394350313 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.398 Order of pole = 7.219 TOP MAIN SOLVE Loop x[1] = 3.607 y[1] (analytic) = 0 y[1] (numeric) = 5.2874584938412881912730672192654 absolute error = 5.2874584938412881912730672192654 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.399 Order of pole = 7.218 TOP MAIN SOLVE Loop x[1] = 3.608 y[1] (analytic) = 0 y[1] (numeric) = 5.2881909256839947367358472069855 absolute error = 5.2881909256839947367358472069855 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.399 Order of pole = 7.217 TOP MAIN SOLVE Loop x[1] = 3.609 y[1] (analytic) = 0 y[1] (numeric) = 5.2889229042098362167491022004963 absolute error = 5.2889229042098362167491022004963 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.399 Order of pole = 7.217 TOP MAIN SOLVE Loop x[1] = 3.61 y[1] (analytic) = 0 y[1] (numeric) = 5.2896544299276185617472631643285 absolute error = 5.2896544299276185617472631643285 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.399 Order of pole = 7.216 TOP MAIN SOLVE Loop x[1] = 3.611 y[1] (analytic) = 0 y[1] (numeric) = 5.2903855033460028700744349881546 absolute error = 5.2903855033460028700744349881546 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.4 Order of pole = 7.215 TOP MAIN SOLVE Loop x[1] = 3.612 y[1] (analytic) = 0 y[1] (numeric) = 5.2911161249735049061961845364756 absolute error = 5.2911161249735049061961845364756 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.4 Order of pole = 7.215 TOP MAIN SOLVE Loop x[1] = 3.613 y[1] (analytic) = 0 y[1] (numeric) = 5.2918462953184946010402894554721 absolute error = 5.2918462953184946010402894554721 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.4 Order of pole = 7.214 TOP MAIN SOLVE Loop x[1] = 3.614 y[1] (analytic) = 0 y[1] (numeric) = 5.2925760148891955544634831862851 absolute error = 5.2925760148891955544634831862851 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.4 Order of pole = 7.213 TOP MAIN SOLVE Loop memory used=1174.9MB, alloc=4.7MB, time=123.70 x[1] = 3.615 y[1] (analytic) = 0 y[1] (numeric) = 5.293305284193684539841228645638 absolute error = 5.293305284193684539841228645638 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.401 Order of pole = 7.212 TOP MAIN SOLVE Loop x[1] = 3.616 y[1] (analytic) = 0 y[1] (numeric) = 5.2940341037398910107775500790375 absolute error = 5.2940341037398910107775500790375 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.401 Order of pole = 7.211 TOP MAIN SOLVE Loop x[1] = 3.617 y[1] (analytic) = 0 y[1] (numeric) = 5.2947624740355966099319496687147 absolute error = 5.2947624740355966099319496687147 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.401 Order of pole = 7.21 TOP MAIN SOLVE Loop x[1] = 3.618 y[1] (analytic) = 0 y[1] (numeric) = 5.2954903955884346799604325878965 absolute error = 5.2954903955884346799604325878965 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.401 Order of pole = 7.209 TOP MAIN SOLVE Loop x[1] = 3.619 y[1] (analytic) = 0 y[1] (numeric) = 5.2962178689058897765676613348457 absolute error = 5.2962178689058897765676613348457 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.402 Order of pole = 7.208 TOP MAIN SOLVE Loop x[1] = 3.62 y[1] (analytic) = 0 y[1] (numeric) = 5.2969448944952971836672573542894 absolute error = 5.2969448944952971836672573542894 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.402 Order of pole = 7.207 TOP MAIN SOLVE Loop x[1] = 3.621 y[1] (analytic) = 0 y[1] (numeric) = 5.297671472863842430647265160275 absolute error = 5.297671472863842430647265160275 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.402 Order of pole = 7.205 TOP MAIN SOLVE Loop x[1] = 3.622 y[1] (analytic) = 0 y[1] (numeric) = 5.2983976045185608117377914130736 absolute error = 5.2983976045185608117377914130736 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.402 Order of pole = 7.204 TOP MAIN SOLVE Loop x[1] = 3.623 y[1] (analytic) = 0 y[1] (numeric) = 5.2991232899663369074778286733913 absolute error = 5.2991232899663369074778286733913 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.403 Order of pole = 7.203 TOP MAIN SOLVE Loop x[1] = 3.624 y[1] (analytic) = 0 y[1] (numeric) = 5.2998485297139041082782708597745 absolute error = 5.2998485297139041082782708597745 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.403 Order of pole = 7.201 TOP MAIN SOLVE Loop x[1] = 3.625 y[1] (analytic) = 0 y[1] (numeric) = 5.3005733242678441400781247696056 absolute error = 5.3005733242678441400781247696056 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.403 Order of pole = 7.2 TOP MAIN SOLVE Loop memory used=1178.7MB, alloc=4.7MB, time=124.10 x[1] = 3.626 y[1] (analytic) = 0 y[1] (numeric) = 5.3012976741345865920909193904018 absolute error = 5.3012976741345865920909193904018 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.403 Order of pole = 7.198 TOP MAIN SOLVE Loop x[1] = 3.627 y[1] (analytic) = 0 y[1] (numeric) = 5.3020215798204084466383121261586 absolute error = 5.3020215798204084466383121261586 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.403 Order of pole = 7.197 TOP MAIN SOLVE Loop x[1] = 3.628 y[1] (analytic) = 0 y[1] (numeric) = 5.3027450418314336110678884931329 absolute error = 5.3027450418314336110678884931329 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.404 Order of pole = 7.195 TOP MAIN SOLVE Loop x[1] = 3.629 y[1] (analytic) = 0 y[1] (numeric) = 5.3034680606736324517521493006542 absolute error = 5.3034680606736324517521493006542 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.404 Order of pole = 7.194 TOP MAIN SOLVE Loop x[1] = 3.63 y[1] (analytic) = 0 y[1] (numeric) = 5.3041906368528213301656768251916 absolute error = 5.3041906368528213301656768251916 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.404 Order of pole = 7.192 TOP MAIN SOLVE Loop x[1] = 3.631 y[1] (analytic) = 0 y[1] (numeric) = 5.3049127708746621410374690099065 absolute error = 5.3049127708746621410374690099065 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.404 Order of pole = 7.19 TOP MAIN SOLVE Loop x[1] = 3.632 y[1] (analytic) = 0 y[1] (numeric) = 5.3056344632446618525754282771953 absolute error = 5.3056344632446618525754282771953 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.404 Order of pole = 7.188 TOP MAIN SOLVE Loop x[1] = 3.633 y[1] (analytic) = 0 y[1] (numeric) = 5.3063557144681720487599891281837 absolute error = 5.3063557144681720487599891281837 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.404 Order of pole = 7.186 TOP MAIN SOLVE Loop x[1] = 3.634 y[1] (analytic) = 0 y[1] (numeric) = 5.3070765250503884737038663206881 absolute error = 5.3070765250503884737038663206881 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.404 Order of pole = 7.184 TOP MAIN SOLVE Loop x[1] = 3.635 y[1] (analytic) = 0 y[1] (numeric) = 5.3077968954963505780749030657202 absolute error = 5.3077968954963505780749030657202 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.405 Order of pole = 7.182 TOP MAIN SOLVE Loop x[1] = 3.636 y[1] (analytic) = 0 y[1] (numeric) = 5.3085168263109410675789963620909 absolute error = 5.3085168263109410675789963620909 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.405 Order of pole = 7.18 TOP MAIN SOLVE Loop x[1] = 3.637 y[1] (analytic) = 0 y[1] (numeric) = 5.3092363179988854535000742989794 absolute error = 5.3092363179988854535000742989794 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.405 Order of pole = 7.178 TOP MAIN SOLVE Loop memory used=1182.5MB, alloc=4.7MB, time=124.50 x[1] = 3.638 y[1] (analytic) = 0 y[1] (numeric) = 5.3099553710647516052940978973855 absolute error = 5.3099553710647516052940978973855 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.405 Order of pole = 7.175 TOP MAIN SOLVE Loop x[1] = 3.639 y[1] (analytic) = 0 y[1] (numeric) = 5.3106739860129493052340578330892 absolute error = 5.3106739860129493052340578330892 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.405 Order of pole = 7.173 TOP MAIN SOLVE Loop x[1] = 3.64 y[1] (analytic) = 0 y[1] (numeric) = 5.3113921633477298051029341860115 absolute error = 5.3113921633477298051029341860115 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.405 Order of pole = 7.17 TOP MAIN SOLVE Loop x[1] = 3.641 y[1] (analytic) = 0 y[1] (numeric) = 5.3121099035731853849315851936185 absolute error = 5.3121099035731853849315851936185 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.405 Order of pole = 7.168 TOP MAIN SOLVE Loop x[1] = 3.642 y[1] (analytic) = 0 y[1] (numeric) = 5.3128272071932489137785288491457 absolute error = 5.3128272071932489137785288491457 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.405 Order of pole = 7.165 TOP MAIN SOLVE Loop x[1] = 3.643 y[1] (analytic) = 0 y[1] (numeric) = 5.3135440747116934125485790788553 absolute error = 5.3135440747116934125485790788553 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.405 Order of pole = 7.162 TOP MAIN SOLVE Loop x[1] = 3.644 y[1] (analytic) = 0 y[1] (numeric) = 5.3142605066321316188472961561853 absolute error = 5.3142605066321316188472961561853 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.405 Order of pole = 7.159 TOP MAIN SOLVE Loop x[1] = 3.645 y[1] (analytic) = 0 y[1] (numeric) = 5.3149765034580155538682089644182 absolute error = 5.3149765034580155538682089644182 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.405 Order of pole = 7.157 TOP MAIN SOLVE Loop x[1] = 3.646 y[1] (analytic) = 0 y[1] (numeric) = 5.3156920656926360913097647033012 absolute error = 5.3156920656926360913097647033012 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.405 Order of pole = 7.154 TOP MAIN SOLVE Loop x[1] = 3.647 y[1] (analytic) = 0 y[1] (numeric) = 5.3164071938391225283189596487977 absolute error = 5.3164071938391225283189596487977 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.405 Order of pole = 7.15 TOP MAIN SOLVE Loop x[1] = 3.648 y[1] (analytic) = 0 y[1] (numeric) = 5.3171218884004421584586026187583 absolute error = 5.3171218884004421584586026187583 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.405 Order of pole = 7.147 TOP MAIN SOLVE Loop memory used=1186.4MB, alloc=4.7MB, time=124.90 x[1] = 3.649 y[1] (analytic) = 0 y[1] (numeric) = 5.317836149879399846695160870672 absolute error = 5.317836149879399846695160870672 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.405 Order of pole = 7.144 TOP MAIN SOLVE Loop x[1] = 3.65 y[1] (analytic) = 0 y[1] (numeric) = 5.3185499787786376064041362607173 absolute error = 5.3185499787786376064041362607173 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.405 Order of pole = 7.141 TOP MAIN SOLVE Loop x[1] = 3.651 y[1] (analytic) = 0 y[1] (numeric) = 5.3192633756006341783899176259764 absolute error = 5.3192633756006341783899176259764 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.405 Order of pole = 7.137 TOP MAIN SOLVE Loop x[1] = 3.652 y[1] (analytic) = 0 y[1] (numeric) = 5.31997634084770461191705351383 absolute error = 5.31997634084770461191705351383 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.405 Order of pole = 7.133 TOP MAIN SOLVE Loop x[1] = 3.653 y[1] (analytic) = 0 y[1] (numeric) = 5.3206888750219998477498875741131 absolute error = 5.3206888750219998477498875741131 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.405 Order of pole = 7.13 TOP MAIN SOLVE Loop x[1] = 3.654 y[1] (analytic) = 0 y[1] (numeric) = 5.3214009786255063031974971505056 absolute error = 5.3214009786255063031974971505056 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.405 Order of pole = 7.126 TOP MAIN SOLVE Loop x[1] = 3.655 y[1] (analytic) = 0 y[1] (numeric) = 5.3221126521600454591608738577611 absolute error = 5.3221126521600454591608738577611 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.405 Order of pole = 7.122 TOP MAIN SOLVE Loop x[1] = 3.656 y[1] (analytic) = 0 y[1] (numeric) = 5.3228238961272734491792832106566 absolute error = 5.3228238961272734491792832106566 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.405 Order of pole = 7.118 TOP MAIN SOLVE Loop x[1] = 3.657 y[1] (analytic) = 0 y[1] (numeric) = 5.3235347110286806504727386788863 absolute error = 5.3235347110286806504727386788863 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.405 Order of pole = 7.114 TOP MAIN SOLVE Loop x[1] = 3.658 y[1] (analytic) = 0 y[1] (numeric) = 5.324245097365591276977523879436 absolute error = 5.324245097365591276977523879436 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.405 Order of pole = 7.11 TOP MAIN SOLVE Loop x[1] = 3.659 y[1] (analytic) = 0 y[1] (numeric) = 5.3249550556391629743716949841714 absolute error = 5.3249550556391629743716949841714 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.404 Order of pole = 7.105 TOP MAIN SOLVE Loop x[1] = 3.66 y[1] (analytic) = 0 y[1] (numeric) = 5.3256645863503864170874938153672 absolute error = 5.3256645863503864170874938153672 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.404 Order of pole = 7.101 memory used=1190.2MB, alloc=4.7MB, time=125.31 TOP MAIN SOLVE Loop x[1] = 3.661 y[1] (analytic) = 0 y[1] (numeric) = 5.3263736900000849073076005256045 absolute error = 5.3263736900000849073076005256045 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.404 Order of pole = 7.096 TOP MAIN SOLVE Loop x[1] = 3.662 y[1] (analytic) = 0 y[1] (numeric) = 5.3270823670889139759421532107821 absolute error = 5.3270823670889139759421532107821 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.404 Order of pole = 7.092 TOP MAIN SOLVE Loop x[1] = 3.663 y[1] (analytic) = 0 y[1] (numeric) = 5.3277906181173609855834602858397 absolute error = 5.3277906181173609855834602858397 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.404 Order of pole = 7.087 TOP MAIN SOLVE Loop x[1] = 3.664 y[1] (analytic) = 0 y[1] (numeric) = 5.3284984435857447354353299620813 absolute error = 5.3284984435857447354353299620813 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.404 Order of pole = 7.082 TOP MAIN SOLVE Loop x[1] = 3.665 y[1] (analytic) = 0 y[1] (numeric) = 5.3292058439942150682139397026346 absolute error = 5.3292058439942150682139397026346 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.403 Order of pole = 7.077 TOP MAIN SOLVE Loop x[1] = 3.666 y[1] (analytic) = 0 y[1] (numeric) = 5.3299128198427524790171670984937 absolute error = 5.3299128198427524790171670984937 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.403 Order of pole = 7.072 TOP MAIN SOLVE Loop x[1] = 3.667 y[1] (analytic) = 0 y[1] (numeric) = 5.3306193716311677261593022016825 absolute error = 5.3306193716311677261593022016825 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.403 Order of pole = 7.067 TOP MAIN SOLVE Loop x[1] = 3.668 y[1] (analytic) = 0 y[1] (numeric) = 5.3313254998591014439680599742539 absolute error = 5.3313254998591014439680599742539 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.403 Order of pole = 7.061 TOP MAIN SOLVE Loop x[1] = 3.669 y[1] (analytic) = 0 y[1] (numeric) = 5.3320312050260237575408101620194 absolute error = 5.3320312050260237575408101620194 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.402 Order of pole = 7.056 TOP MAIN SOLVE Loop x[1] = 3.67 y[1] (analytic) = 0 y[1] (numeric) = 5.3327364876312338994569405799957 absolute error = 5.3327364876312338994569405799957 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.402 Order of pole = 7.05 TOP MAIN SOLVE Loop x[1] = 3.671 y[1] (analytic) = 0 y[1] (numeric) = 5.3334413481738598284432685024712 absolute error = 5.3334413481738598284432685024712 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.402 Order of pole = 7.044 TOP MAIN SOLVE Loop memory used=1194.0MB, alloc=4.7MB, time=125.71 x[1] = 3.672 y[1] (analytic) = 0 y[1] (numeric) = 5.3341457871528578499894135842477 absolute error = 5.3341457871528578499894135842477 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.401 Order of pole = 7.038 TOP MAIN SOLVE Loop x[1] = 3.673 y[1] (analytic) = 0 y[1] (numeric) = 5.3348498050670122389100445009133 absolute error = 5.3348498050670122389100445009133 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.401 Order of pole = 7.032 TOP MAIN SOLVE Loop x[1] = 3.674 y[1] (analytic) = 0 y[1] (numeric) = 5.3355534024149348638509102848628 absolute error = 5.3355534024149348638509102848628 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.401 Order of pole = 7.026 TOP MAIN SOLVE Loop x[1] = 3.675 y[1] (analytic) = 0 y[1] (numeric) = 5.3362565796950648137355661501139 absolute error = 5.3362565796950648137355661501139 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.4 Order of pole = 7.02 TOP MAIN SOLVE Loop x[1] = 3.676 y[1] (analytic) = 0 y[1] (numeric) = 5.3369593374056680261497024426848 absolute error = 5.3369593374056680261497024426848 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.4 Order of pole = 7.013 TOP MAIN SOLVE Loop x[1] = 3.677 y[1] (analytic) = 0 y[1] (numeric) = 5.3376616760448369176599842243089 absolute error = 5.3376616760448369176599842243089 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.4 Order of pole = 7.007 TOP MAIN SOLVE Loop x[1] = 3.678 y[1] (analytic) = 0 y[1] (numeric) = 5.3383635961104900160643078954828 absolute error = 5.3383635961104900160643078954828 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.399 Order of pole = 7 TOP MAIN SOLVE Loop x[1] = 3.679 y[1] (analytic) = 0 y[1] (numeric) = 5.3390650981003715945703801891831 absolute error = 5.3390650981003715945703801891831 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.399 Order of pole = 6.993 TOP MAIN SOLVE Loop x[1] = 3.68 y[1] (analytic) = 0 y[1] (numeric) = 5.3397661825120513078995238189575 absolute error = 5.3397661825120513078995238189575 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.398 Order of pole = 6.986 TOP MAIN SOLVE Loop x[1] = 3.681 y[1] (analytic) = 0 y[1] (numeric) = 5.3404668498429238303126130444117 absolute error = 5.3404668498429238303126130444117 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.398 Order of pole = 6.979 TOP MAIN SOLVE Loop x[1] = 3.682 y[1] (analytic) = 0 y[1] (numeric) = 5.3411671005902084955550414232827 absolute error = 5.3411671005902084955550414232827 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.397 Order of pole = 6.971 TOP MAIN SOLVE Loop x[1] = 3.683 y[1] (analytic) = 0 y[1] (numeric) = 5.3418669352509489387176230522305 memory used=1197.8MB, alloc=4.7MB, time=126.12 absolute error = 5.3418669352509489387176230522305 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.397 Order of pole = 6.964 TOP MAIN SOLVE Loop x[1] = 3.684 y[1] (analytic) = 0 y[1] (numeric) = 5.3425663543220127400103276580964 absolute error = 5.3425663543220127400103276580964 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.396 Order of pole = 6.956 TOP MAIN SOLVE Loop x[1] = 3.685 y[1] (analytic) = 0 y[1] (numeric) = 5.3432653583000910704457489875898 absolute error = 5.3432653583000910704457489875898 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.396 Order of pole = 6.949 TOP MAIN SOLVE Loop x[1] = 3.686 y[1] (analytic) = 0 y[1] (numeric) = 5.3439639476816983394292050560815 absolute error = 5.3439639476816983394292050560815 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.395 Order of pole = 6.941 TOP MAIN SOLVE Loop x[1] = 3.687 y[1] (analytic) = 0 y[1] (numeric) = 5.3446621229631718442523679553143 absolute error = 5.3446621229631718442523679553143 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.394 Order of pole = 6.933 TOP MAIN SOLVE Loop x[1] = 3.688 y[1] (analytic) = 0 y[1] (numeric) = 5.3453598846406714214873200853062 absolute error = 5.3453598846406714214873200853062 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.394 Order of pole = 6.924 TOP MAIN SOLVE Loop x[1] = 3.689 y[1] (analytic) = 0 y[1] (numeric) = 5.3460572332101791002779328674241 absolute error = 5.3460572332101791002779328674241 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.393 Order of pole = 6.916 TOP MAIN SOLVE Loop x[1] = 3.69 y[1] (analytic) = 0 y[1] (numeric) = 5.3467541691674987575254632134677 absolute error = 5.3467541691674987575254632134677 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.393 Order of pole = 6.907 TOP MAIN SOLVE Loop x[1] = 3.691 y[1] (analytic) = 0 y[1] (numeric) = 5.3474506930082557749652622695266 absolute error = 5.3474506930082557749652622695266 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.392 Order of pole = 6.899 TOP MAIN SOLVE Loop x[1] = 3.692 y[1] (analytic) = 0 y[1] (numeric) = 5.3481468052278966981314902232802 absolute error = 5.3481468052278966981314902232802 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.391 Order of pole = 6.89 TOP MAIN SOLVE Loop x[1] = 3.693 y[1] (analytic) = 0 y[1] (numeric) = 5.3488425063216888972067302592061 absolute error = 5.3488425063216888972067302592061 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.391 Order of pole = 6.881 TOP MAIN SOLVE Loop x[1] = 3.694 y[1] (analytic) = 0 y[1] (numeric) = 5.3495377967847202297533940677638 absolute error = 5.3495377967847202297533940677638 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.39 Order of pole = 6.871 TOP MAIN SOLVE Loop memory used=1201.6MB, alloc=4.7MB, time=126.53 x[1] = 3.695 y[1] (analytic) = 0 y[1] (numeric) = 5.3502326771118987053238106619394 absolute error = 5.3502326771118987053238106619394 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.389 Order of pole = 6.862 TOP MAIN SOLVE Loop x[1] = 3.696 y[1] (analytic) = 0 y[1] (numeric) = 5.3509271477979521519458896274834 absolute error = 5.3509271477979521519458896274834 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.388 Order of pole = 6.852 TOP MAIN SOLVE Loop x[1] = 3.697 y[1] (analytic) = 0 y[1] (numeric) = 5.3516212093374278844812493316657 absolute error = 5.3516212093374278844812493316657 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.388 Order of pole = 6.843 TOP MAIN SOLVE Loop x[1] = 3.698 y[1] (analytic) = 0 y[1] (numeric) = 5.3523148622246923748527000393162 absolute error = 5.3523148622246923748527000393162 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.387 Order of pole = 6.833 TOP MAIN SOLVE Loop x[1] = 3.699 y[1] (analytic) = 0 y[1] (numeric) = 5.3530081069539309241379713342338 absolute error = 5.3530081069539309241379713342338 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.386 Order of pole = 6.823 TOP MAIN SOLVE Loop x[1] = 3.7 y[1] (analytic) = 0 y[1] (numeric) = 5.3537009440191473365265727186409 absolute error = 5.3537009440191473365265727186409 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.385 Order of pole = 6.812 TOP MAIN SOLVE Loop x[1] = 3.701 y[1] (analytic) = 0 y[1] (numeric) = 5.3543933739141635951366757631483 absolute error = 5.3543933739141635951366757631483 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.384 Order of pole = 6.802 TOP MAIN SOLVE Loop x[1] = 3.702 y[1] (analytic) = 0 y[1] (numeric) = 5.3550853971326195396889057045928 absolute error = 5.3550853971326195396889057045928 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.383 Order of pole = 6.791 TOP MAIN SOLVE Loop x[1] = 3.703 y[1] (analytic) = 0 y[1] (numeric) = 5.3557770141679725460339299390223 absolute error = 5.3557770141679725460339299390223 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.382 Order of pole = 6.78 TOP MAIN SOLVE Loop x[1] = 3.704 y[1] (analytic) = 0 y[1] (numeric) = 5.3564682255134972075307304319541 absolute error = 5.3564682255134972075307304319541 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.382 Order of pole = 6.769 TOP MAIN SOLVE Loop x[1] = 3.705 y[1] (analytic) = 0 y[1] (numeric) = 5.3571590316622850182724466677256 absolute error = 5.3571590316622850182724466677256 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.381 Order of pole = 6.758 TOP MAIN SOLVE Loop memory used=1205.4MB, alloc=4.7MB, time=126.94 x[1] = 3.706 y[1] (analytic) = 0 y[1] (numeric) = 5.3578494331072440581566753842099 absolute error = 5.3578494331072440581566753842099 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.38 Order of pole = 6.747 TOP MAIN SOLVE Loop x[1] = 3.707 y[1] (analytic) = 0 y[1] (numeric) = 5.358539430341098679797112988297 absolute error = 5.358539430341098679797112988297 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.379 Order of pole = 6.735 TOP MAIN SOLVE Loop x[1] = 3.708 y[1] (analytic) = 0 y[1] (numeric) = 5.3592290238563891972734262212525 absolute error = 5.3592290238563891972734262212525 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.378 Order of pole = 6.724 TOP MAIN SOLVE Loop x[1] = 3.709 y[1] (analytic) = 0 y[1] (numeric) = 5.3599182141454715767162363412785 absolute error = 5.3599182141454715767162363412785 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.376 Order of pole = 6.712 TOP MAIN SOLVE Loop x[1] = 3.71 y[1] (analytic) = 0 y[1] (numeric) = 5.3606070017005171287241018132257 absolute error = 5.3606070017005171287241018132257 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.375 Order of pole = 6.7 TOP MAIN SOLVE Loop x[1] = 3.711 y[1] (analytic) = 0 y[1] (numeric) = 5.3612953870135122026093842423576 absolute error = 5.3612953870135122026093842423576 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.374 Order of pole = 6.687 TOP MAIN SOLVE Loop x[1] = 3.712 y[1] (analytic) = 0 y[1] (numeric) = 5.3619833705762578824698820602572 absolute error = 5.3619833705762578824698820602572 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.373 Order of pole = 6.675 TOP MAIN SOLVE Loop x[1] = 3.713 y[1] (analytic) = 0 y[1] (numeric) = 5.3626709528803696850831162663132 absolute error = 5.3626709528803696850831162663132 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.372 Order of pole = 6.662 TOP MAIN SOLVE Loop x[1] = 3.714 y[1] (analytic) = 0 y[1] (numeric) = 5.3633581344172772596201523476318 absolute error = 5.3633581344172772596201523476318 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.371 Order of pole = 6.649 TOP MAIN SOLVE Loop x[1] = 3.715 y[1] (analytic) = 0 y[1] (numeric) = 5.3640449156782240891758423436147 absolute error = 5.3640449156782240891758423436147 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.37 Order of pole = 6.636 TOP MAIN SOLVE Loop x[1] = 3.716 y[1] (analytic) = 0 y[1] (numeric) = 5.3647312971542671941123708887307 absolute error = 5.3647312971542671941123708887307 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.369 Order of pole = 6.623 TOP MAIN SOLVE Loop x[1] = 3.717 y[1] (analytic) = 0 y[1] (numeric) = 5.3654172793362768372129889581032 absolute error = 5.3654172793362768372129889581032 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.367 Order of pole = 6.609 TOP MAIN SOLVE Loop memory used=1209.3MB, alloc=4.7MB, time=127.34 x[1] = 3.718 y[1] (analytic) = 0 y[1] (numeric) = 5.3661028627149362306428189553553 absolute error = 5.3661028627149362306428189553553 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.366 Order of pole = 6.596 TOP MAIN SOLVE Loop x[1] = 3.719 y[1] (analytic) = 0 y[1] (numeric) = 5.3667880477807412447136147206091 absolute error = 5.3667880477807412447136147206091 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.365 Order of pole = 6.582 TOP MAIN SOLVE Loop x[1] = 3.72 y[1] (analytic) = 0 y[1] (numeric) = 5.3674728350240001184493599985403 absolute error = 5.3674728350240001184493599985403 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.363 Order of pole = 6.568 TOP MAIN SOLVE Loop x[1] = 3.721 y[1] (analytic) = 0 y[1] (numeric) = 5.3681572249348331719495888918609 absolute error = 5.3681572249348331719495888918609 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.362 Order of pole = 6.553 TOP MAIN SOLVE Loop x[1] = 3.722 y[1] (analytic) = 0 y[1] (numeric) = 5.3688412180031725205473118344504 absolute error = 5.3688412180031725205473118344504 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.361 Order of pole = 6.539 TOP MAIN SOLVE Loop x[1] = 3.723 y[1] (analytic) = 0 y[1] (numeric) = 5.3695248147187617907584306504999 absolute error = 5.3695248147187617907584306504999 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.359 Order of pole = 6.524 TOP MAIN SOLVE Loop x[1] = 3.724 y[1] (analytic) = 0 y[1] (numeric) = 5.3702080155711558380195263213822 absolute error = 5.3702080155711558380195263213822 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.358 Order of pole = 6.509 TOP MAIN SOLVE Loop x[1] = 3.725 y[1] (analytic) = 0 y[1] (numeric) = 5.3708908210497204662109031604341 absolute error = 5.3708908210497204662109031604341 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.356 Order of pole = 6.494 TOP MAIN SOLVE Loop x[1] = 3.726 y[1] (analytic) = 0 y[1] (numeric) = 5.3715732316436321489617731973444 absolute error = 5.3715732316436321489617731973444 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.355 Order of pole = 6.479 TOP MAIN SOLVE Loop x[1] = 3.727 y[1] (analytic) = 0 y[1] (numeric) = 5.3722552478418777527344646983016 absolute error = 5.3722552478418777527344646983016 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.354 Order of pole = 6.463 TOP MAIN SOLVE Loop x[1] = 3.728 y[1] (analytic) = 0 y[1] (numeric) = 5.3729368701332542616845388953799 absolute error = 5.3729368701332542616845388953799 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.352 Order of pole = 6.447 TOP MAIN SOLVE Loop memory used=1213.1MB, alloc=4.7MB, time=127.74 x[1] = 3.729 y[1] (analytic) = 0 y[1] (numeric) = 5.3736180990063685042936991687473 absolute error = 5.3736180990063685042936991687473 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.35 Order of pole = 6.431 TOP MAIN SOLVE Loop x[1] = 3.73 y[1] (analytic) = 0 y[1] (numeric) = 5.3742989349496368817723771180819 absolute error = 5.3742989349496368817723771180819 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.349 Order of pole = 6.415 TOP MAIN SOLVE Loop x[1] = 3.731 y[1] (analytic) = 0 y[1] (numeric) = 5.3749793784512850982288801749901 absolute error = 5.3749793784512850982288801749901 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.347 Order of pole = 6.399 TOP MAIN SOLVE Loop x[1] = 3.732 y[1] (analytic) = 0 y[1] (numeric) = 5.3756594299993478926019856461599 absolute error = 5.3756594299993478926019856461599 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.346 Order of pole = 6.382 TOP MAIN SOLVE Loop x[1] = 3.733 y[1] (analytic) = 0 y[1] (numeric) = 5.376339090081668772353866337354 absolute error = 5.376339090081668772353866337354 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.344 Order of pole = 6.365 TOP MAIN SOLVE Loop x[1] = 3.734 y[1] (analytic) = 0 y[1] (numeric) = 5.3770183591858997489202331910816 absolute error = 5.3770183591858997489202331910816 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.342 Order of pole = 6.348 TOP MAIN SOLVE Loop x[1] = 3.735 y[1] (analytic) = 0 y[1] (numeric) = 5.3776972377995010749145806757858 absolute error = 5.3776972377995010749145806757858 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.341 Order of pole = 6.331 TOP MAIN SOLVE Loop x[1] = 3.736 y[1] (analytic) = 0 y[1] (numeric) = 5.378375726409740983083420991571 absolute error = 5.378375726409740983083420991571 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.339 Order of pole = 6.314 TOP MAIN SOLVE Loop x[1] = 3.737 y[1] (analytic) = 0 y[1] (numeric) = 5.3790538255036954270093935067812 absolute error = 5.3790538255036954270093935067812 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.337 Order of pole = 6.296 TOP MAIN SOLVE Loop x[1] = 3.738 y[1] (analytic) = 0 y[1] (numeric) = 5.3797315355682478235591362110437 absolute error = 5.3797315355682478235591362110437 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.335 Order of pole = 6.278 TOP MAIN SOLVE Loop x[1] = 3.739 y[1] (analytic) = 0 y[1] (numeric) = 5.3804088570900887970728063636257 absolute error = 5.3804088570900887970728063636257 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.333 Order of pole = 6.26 TOP MAIN SOLVE Loop x[1] = 3.74 y[1] (analytic) = 0 y[1] (numeric) = 5.3810857905557159252921379310361 absolute error = 5.3810857905557159252921379310361 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.332 Order of pole = 6.241 TOP MAIN SOLVE Loop memory used=1216.9MB, alloc=4.7MB, time=128.15 x[1] = 3.741 y[1] (analytic) = 0 y[1] (numeric) = 5.3817623364514334870239238446453 absolute error = 5.3817623364514334870239238446453 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.33 Order of pole = 6.223 TOP MAIN SOLVE Loop x[1] = 3.742 y[1] (analytic) = 0 y[1] (numeric) = 5.3824384952633522115358115676238 absolute error = 5.3824384952633522115358115676238 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.328 Order of pole = 6.204 TOP MAIN SOLVE Loop x[1] = 3.743 y[1] (analytic) = 0 y[1] (numeric) = 5.3831142674773890296813009406133 absolute error = 5.3831142674773890296813009406133 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.326 Order of pole = 6.185 TOP MAIN SOLVE Loop x[1] = 3.744 y[1] (analytic) = 0 y[1] (numeric) = 5.3837896535792668267508337771754 absolute error = 5.3837896535792668267508337771754 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.324 Order of pole = 6.166 TOP MAIN SOLVE Loop x[1] = 3.745 y[1] (analytic) = 0 y[1] (numeric) = 5.3844646540545141970458652031147 absolute error = 5.3844646540545141970458652031147 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.322 Order of pole = 6.146 TOP MAIN SOLVE Loop x[1] = 3.746 y[1] (analytic) = 0 y[1] (numeric) = 5.3851392693884652001728072781711 absolute error = 5.3851392693884652001728072781711 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.32 Order of pole = 6.126 TOP MAIN SOLVE Loop x[1] = 3.747 y[1] (analytic) = 0 y[1] (numeric) = 5.3858135000662591190537360042288 absolute error = 5.3858135000662591190537360042288 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.318 Order of pole = 6.106 TOP MAIN SOLVE Loop x[1] = 3.748 y[1] (analytic) = 0 y[1] (numeric) = 5.3864873465728402196507534110214 absolute error = 5.3864873465728402196507534110214 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.316 Order of pole = 6.086 TOP MAIN SOLVE Loop x[1] = 3.749 y[1] (analytic) = 0 y[1] (numeric) = 5.3871608093929575124008970182309 absolute error = 5.3871608093929575124008970182309 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.314 Order of pole = 6.066 TOP MAIN SOLVE Loop x[1] = 3.75 y[1] (analytic) = 0 y[1] (numeric) = 5.3878338890111645153584896018067 absolute error = 5.3878338890111645153584896018067 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.312 Order of pole = 6.045 TOP MAIN SOLVE Loop x[1] = 3.751 y[1] (analytic) = 0 y[1] (numeric) = 5.3885065859118190190418228421833 absolute error = 5.3885065859118190190418228421833 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.309 Order of pole = 6.024 TOP MAIN SOLVE Loop memory used=1220.7MB, alloc=4.7MB, time=128.56 x[1] = 3.752 y[1] (analytic) = 0 y[1] (numeric) = 5.3891789005790828529810691027664 absolute error = 5.3891789005790828529810691027664 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.307 Order of pole = 6.003 TOP MAIN SOLVE Loop x[1] = 3.753 y[1] (analytic) = 0 y[1] (numeric) = 5.3898508334969216539643162785068 absolute error = 5.3898508334969216539643162785068 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.305 Order of pole = 5.982 TOP MAIN SOLVE Loop x[1] = 3.754 y[1] (analytic) = 0 y[1] (numeric) = 5.3905223851491046359786213665057 absolute error = 5.3905223851491046359786213665057 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.303 Order of pole = 5.96 TOP MAIN SOLVE Loop x[1] = 3.755 y[1] (analytic) = 0 y[1] (numeric) = 5.3911935560192043618429791433076 absolute error = 5.3911935560192043618429791433076 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.3 Order of pole = 5.938 TOP MAIN SOLVE Loop x[1] = 3.756 y[1] (analytic) = 0 y[1] (numeric) = 5.3918643465905965165301030867598 absolute error = 5.3918643465905965165301030867598 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.298 Order of pole = 5.916 TOP MAIN SOLVE Loop x[1] = 3.757 y[1] (analytic) = 0 y[1] (numeric) = 5.3925347573464596821739164539638 absolute error = 5.3925347573464596821739164539638 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.296 Order of pole = 5.894 TOP MAIN SOLVE Loop x[1] = 3.758 y[1] (analytic) = 0 y[1] (numeric) = 5.3932047887697751147596522208332 absolute error = 5.3932047887697751147596522208332 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.293 Order of pole = 5.872 TOP MAIN SOLVE Loop x[1] = 3.759 y[1] (analytic) = 0 y[1] (numeric) = 5.3938744413433265224934614030184 absolute error = 5.3938744413433265224934614030184 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.291 Order of pole = 5.849 TOP MAIN SOLVE Loop x[1] = 3.76 y[1] (analytic) = 0 y[1] (numeric) = 5.3945437155496998458484301123854 absolute error = 5.3945437155496998458484301123854 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.289 Order of pole = 5.826 TOP MAIN SOLVE Loop x[1] = 3.761 y[1] (analytic) = 0 y[1] (numeric) = 5.3952126118712830392839065577518 absolute error = 5.3952126118712830392839065577518 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.286 Order of pole = 5.803 TOP MAIN SOLVE Loop x[1] = 3.762 y[1] (analytic) = 0 y[1] (numeric) = 5.3958811307902658546350400731133 absolute error = 5.3958811307902658546350400731133 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.284 Order of pole = 5.779 TOP MAIN SOLVE Loop x[1] = 3.763 y[1] (analytic) = 0 y[1] (numeric) = 5.3965492727886396261694351510532 absolute error = 5.3965492727886396261694351510532 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.281 Order of pole = 5.756 memory used=1224.5MB, alloc=4.7MB, time=128.96 TOP MAIN SOLVE Loop x[1] = 3.764 y[1] (analytic) = 0 y[1] (numeric) = 5.3972170383481970573078243733319 absolute error = 5.3972170383481970573078243733319 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.279 Order of pole = 5.732 TOP MAIN SOLVE Loop x[1] = 3.765 y[1] (analytic) = 0 y[1] (numeric) = 5.3978844279505320090056650647229 absolute error = 5.3978844279505320090056650647229 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.276 Order of pole = 5.708 TOP MAIN SOLVE Loop x[1] = 3.766 y[1] (analytic) = 0 y[1] (numeric) = 5.398551442077039289792565449915 absolute error = 5.398551442077039289792565449915 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.273 Order of pole = 5.683 TOP MAIN SOLVE Loop x[1] = 3.767 y[1] (analytic) = 0 y[1] (numeric) = 5.3992180812089144474664470666528 absolute error = 5.3992180812089144474664470666528 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.271 Order of pole = 5.659 TOP MAIN SOLVE Loop x[1] = 3.768 y[1] (analytic) = 0 y[1] (numeric) = 5.3998843458271535624393511811575 absolute error = 5.3998843458271535624393511811575 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.268 Order of pole = 5.634 TOP MAIN SOLVE Loop x[1] = 3.769 y[1] (analytic) = 0 y[1] (numeric) = 5.4005502364125530427317979641802 absolute error = 5.4005502364125530427317979641802 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.265 Order of pole = 5.609 TOP MAIN SOLVE Loop x[1] = 3.77 y[1] (analytic) = 0 y[1] (numeric) = 5.4012157534457094206126082177007 absolute error = 5.4012157534457094206126082177007 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.263 Order of pole = 5.584 TOP MAIN SOLVE Loop x[1] = 3.771 y[1] (analytic) = 0 y[1] (numeric) = 5.4018808974070191508810984932228 absolute error = 5.4018808974070191508810984932228 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.26 Order of pole = 5.558 TOP MAIN SOLVE Loop x[1] = 3.772 y[1] (analytic) = 0 y[1] (numeric) = 5.4025456687766784107885615127437 absolute error = 5.4025456687766784107885615127437 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.257 Order of pole = 5.533 TOP MAIN SOLVE Loop x[1] = 3.773 y[1] (analytic) = 0 y[1] (numeric) = 5.4032100680346829015959448927162 absolute error = 5.4032100680346829015959448927162 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.254 Order of pole = 5.507 TOP MAIN SOLVE Loop x[1] = 3.774 y[1] (analytic) = 0 y[1] (numeric) = 5.4038740956608276517646422795886 absolute error = 5.4038740956608276517646422795886 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.251 Order of pole = 5.48 TOP MAIN SOLVE Loop memory used=1228.3MB, alloc=4.7MB, time=129.36 x[1] = 3.775 y[1] (analytic) = 0 y[1] (numeric) = 5.4045377521347068217773121327234 absolute error = 5.4045377521347068217773121327234 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.248 Order of pole = 5.454 TOP MAIN SOLVE Loop x[1] = 3.776 y[1] (analytic) = 0 y[1] (numeric) = 5.4052010379357135105856405365807 absolute error = 5.4052010379357135105856405365807 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.245 Order of pole = 5.427 TOP MAIN SOLVE Loop x[1] = 3.777 y[1] (analytic) = 0 y[1] (numeric) = 5.405863953543039563681965588919 absolute error = 5.405863953543039563681965588919 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.243 Order of pole = 5.401 TOP MAIN SOLVE Loop x[1] = 3.778 y[1] (analytic) = 0 y[1] (numeric) = 5.4065264994356753827916820953419 absolute error = 5.4065264994356753827916820953419 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.24 Order of pole = 5.374 TOP MAIN SOLVE Loop x[1] = 3.779 y[1] (analytic) = 0 y[1] (numeric) = 5.4071886760924097371833465027162 absolute error = 5.4071886760924097371833465027162 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.237 Order of pole = 5.346 TOP MAIN SOLVE Loop x[1] = 3.78 y[1] (analytic) = 0 y[1] (numeric) = 5.4078504839918295765934032247308 absolute error = 5.4078504839918295765934032247308 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.233 Order of pole = 5.319 TOP MAIN SOLVE Loop x[1] = 3.781 y[1] (analytic) = 0 y[1] (numeric) = 5.4085119236123198457624547520688 absolute error = 5.4085119236123198457624547520688 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.23 Order of pole = 5.291 TOP MAIN SOLVE Loop x[1] = 3.782 y[1] (analytic) = 0 y[1] (numeric) = 5.4091729954320633005799991972542 absolute error = 5.4091729954320633005799991972542 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.227 Order of pole = 5.263 TOP MAIN SOLVE Loop x[1] = 3.783 y[1] (analytic) = 0 y[1] (numeric) = 5.409833699929040325834560200125 absolute error = 5.409833699929040325834560200125 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.224 Order of pole = 5.235 TOP MAIN SOLVE Loop x[1] = 3.784 y[1] (analytic) = 0 y[1] (numeric) = 5.4104940375810287545661354139942 absolute error = 5.4104940375810287545661354139942 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.221 Order of pole = 5.206 TOP MAIN SOLVE Loop x[1] = 3.785 y[1] (analytic) = 0 y[1] (numeric) = 5.4111540088656036890178911048174 absolute error = 5.4111540088656036890178911048174 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.218 Order of pole = 5.178 TOP MAIN SOLVE Loop x[1] = 3.786 y[1] (analytic) = 0 y[1] (numeric) = 5.4118136142601373231840317259987 absolute error = 5.4118136142601373231840317259987 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.215 Order of pole = 5.149 memory used=1232.1MB, alloc=4.7MB, time=129.77 TOP MAIN SOLVE Loop x[1] = 3.787 y[1] (analytic) = 0 y[1] (numeric) = 5.4124728542417987669507746797649 absolute error = 5.4124728542417987669507746797649 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.211 Order of pole = 5.12 TOP MAIN SOLVE Loop x[1] = 3.788 y[1] (analytic) = 0 y[1] (numeric) = 5.4131317292875538718273618422386 absolute error = 5.4131317292875538718273618422386 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.208 Order of pole = 5.09 TOP MAIN SOLVE Loop x[1] = 3.789 y[1] (analytic) = 0 y[1] (numeric) = 5.413790239874165058264040813362 absolute error = 5.413790239874165058264040813362 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.205 Order of pole = 5.061 TOP MAIN SOLVE Loop x[1] = 3.79 y[1] (analytic) = 0 y[1] (numeric) = 5.4144483864781911445539502545886 absolute error = 5.4144483864781911445539502545886 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.201 Order of pole = 5.031 TOP MAIN SOLVE Loop x[1] = 3.791 y[1] (analytic) = 0 y[1] (numeric) = 5.415106169575987177315845096688 absolute error = 5.415106169575987177315845096688 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.198 Order of pole = 5.001 TOP MAIN SOLVE Loop x[1] = 3.792 y[1] (analytic) = 0 y[1] (numeric) = 5.4157635896437042635545988370219 absolute error = 5.4157635896437042635545988370219 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.195 Order of pole = 4.971 TOP MAIN SOLVE Loop x[1] = 3.793 y[1] (analytic) = 0 y[1] (numeric) = 5.4164206471572894042964216001654 absolute error = 5.4164206471572894042964216001654 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.191 Order of pole = 4.941 TOP MAIN SOLVE Loop x[1] = 3.794 y[1] (analytic) = 0 y[1] (numeric) = 5.4170773425924853297957341076918 absolute error = 5.4170773425924853297957341076918 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.188 Order of pole = 4.91 TOP MAIN SOLVE Loop x[1] = 3.795 y[1] (analytic) = 0 y[1] (numeric) = 5.4177336764248303363106391922264 absolute error = 5.4177336764248303363106391922264 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.184 Order of pole = 4.879 TOP MAIN SOLVE Loop x[1] = 3.796 y[1] (analytic) = 0 y[1] (numeric) = 5.4183896491296581244439339974332 absolute error = 5.4183896491296581244439339974332 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.181 Order of pole = 4.848 TOP MAIN SOLVE Loop x[1] = 3.797 y[1] (analytic) = 0 y[1] (numeric) = 5.419045261182097639046607529343 absolute error = 5.419045261182097639046607529343 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.177 Order of pole = 4.817 TOP MAIN SOLVE Loop memory used=1236.0MB, alloc=4.7MB, time=130.17 x[1] = 3.798 y[1] (analytic) = 0 y[1] (numeric) = 5.4197005130570729106807697652878 absolute error = 5.4197005130570729106807697652878 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.173 Order of pole = 4.786 TOP MAIN SOLVE Loop x[1] = 3.799 y[1] (analytic) = 0 y[1] (numeric) = 5.4203554052293028986389600845931 absolute error = 5.4203554052293028986389600845931 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.17 Order of pole = 4.754 TOP MAIN SOLVE Loop x[1] = 3.8 y[1] (analytic) = 0 y[1] (numeric) = 5.4210099381733013355167843600204 absolute error = 5.4210099381733013355167843600204 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.166 Order of pole = 4.722 TOP MAIN SOLVE Loop x[1] = 3.801 y[1] (analytic) = 0 y[1] (numeric) = 5.4216641123633765733358316406677 absolute error = 5.4216641123633765733358316406677 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.162 Order of pole = 4.69 TOP MAIN SOLVE Loop x[1] = 3.802 y[1] (analytic) = 0 y[1] (numeric) = 5.4223179282736314312138229655471 absolute error = 5.4223179282736314312138229655471 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.159 Order of pole = 4.658 TOP MAIN SOLVE Loop x[1] = 3.803 y[1] (analytic) = 0 y[1] (numeric) = 5.4229713863779630445789464722885 absolute error = 5.4229713863779630445789464722885 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.155 Order of pole = 4.626 TOP MAIN SOLVE Loop x[1] = 3.804 y[1] (analytic) = 0 y[1] (numeric) = 5.4236244871500627159253346072901 absolute error = 5.4236244871500627159253346072901 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.151 Order of pole = 4.593 TOP MAIN SOLVE Loop x[1] = 3.805 y[1] (analytic) = 0 y[1] (numeric) = 5.4242772310634157671066409020677 absolute error = 5.4242772310634157671066409020677 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.147 Order of pole = 4.56 TOP MAIN SOLVE Loop x[1] = 3.806 y[1] (analytic) = 0 y[1] (numeric) = 5.4249296185913013931646754554748 absolute error = 5.4249296185913013931646754554748 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.144 Order of pole = 4.527 TOP MAIN SOLVE Loop x[1] = 3.807 y[1] (analytic) = 0 y[1] (numeric) = 5.4255816502067925176900599527888 absolute error = 5.4255816502067925176900599527888 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.14 Order of pole = 4.494 TOP MAIN SOLVE Loop x[1] = 3.808 y[1] (analytic) = 0 y[1] (numeric) = 5.4262333263827556497118647603142 absolute error = 5.4262333263827556497118647603142 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.136 Order of pole = 4.461 TOP MAIN SOLVE Loop x[1] = 3.809 y[1] (analytic) = 0 y[1] (numeric) = 5.4268846475918507421131923580611 absolute error = 5.4268846475918507421131923580611 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.132 Order of pole = 4.427 memory used=1239.8MB, alloc=4.7MB, time=130.57 TOP MAIN SOLVE Loop x[1] = 3.81 y[1] (analytic) = 0 y[1] (numeric) = 5.4275356143065310515696731131372 absolute error = 5.4275356143065310515696731131372 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.128 Order of pole = 4.393 TOP MAIN SOLVE Loop x[1] = 3.811 y[1] (analytic) = 0 y[1] (numeric) = 5.4281862269990430000078411526737 absolute error = 5.4281862269990430000078411526737 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.124 Order of pole = 4.359 TOP MAIN SOLVE Loop x[1] = 3.812 y[1] (analytic) = 0 y[1] (numeric) = 5.4288364861414260375803598673042 absolute error = 5.4288364861414260375803598673042 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.12 Order of pole = 4.325 TOP MAIN SOLVE Loop x[1] = 3.813 y[1] (analytic) = 0 y[1] (numeric) = 5.4294863922055125071550683643598 absolute error = 5.4294863922055125071550683643598 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.116 Order of pole = 4.291 TOP MAIN SOLVE Loop x[1] = 3.814 y[1] (analytic) = 0 y[1] (numeric) = 5.4301359456629275103148219939565 absolute error = 5.4301359456629275103148219939565 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.112 Order of pole = 4.257 TOP MAIN SOLVE Loop x[1] = 3.815 y[1] (analytic) = 0 y[1] (numeric) = 5.4307851469850887748651018909499 absolute error = 5.4307851469850887748651018909499 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.108 Order of pole = 4.222 TOP MAIN SOLVE Loop x[1] = 3.816 y[1] (analytic) = 0 y[1] (numeric) = 5.4314339966432065238463703112502 absolute error = 5.4314339966432065238463703112502 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.104 Order of pole = 4.187 TOP MAIN SOLVE Loop x[1] = 3.817 y[1] (analytic) = 0 y[1] (numeric) = 5.4320824951082833460481503921411 absolute error = 5.4320824951082833460481503921411 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.1 Order of pole = 4.152 TOP MAIN SOLVE Loop x[1] = 3.818 y[1] (analytic) = 0 y[1] (numeric) = 5.4327306428511140680218108329606 absolute error = 5.4327306428511140680218108329606 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.095 Order of pole = 4.117 TOP MAIN SOLVE Loop x[1] = 3.819 y[1] (analytic) = 0 y[1] (numeric) = 5.4333784403422856275890378747007 absolute error = 5.4333784403422856275890378747007 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.091 Order of pole = 4.082 TOP MAIN SOLVE Loop x[1] = 3.82 y[1] (analytic) = 0 y[1] (numeric) = 5.4340258880521769488429788546888 absolute error = 5.4340258880521769488429788546888 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.087 Order of pole = 4.046 TOP MAIN SOLVE Loop memory used=1243.6MB, alloc=4.7MB, time=130.98 x[1] = 3.821 y[1] (analytic) = 0 y[1] (numeric) = 5.4346729864509588186390435254552 absolute error = 5.4346729864509588186390435254552 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.083 Order of pole = 4.01 TOP MAIN SOLVE Loop x[1] = 3.822 y[1] (analytic) = 0 y[1] (numeric) = 5.4353197360085937645723512550869 absolute error = 5.4353197360085937645723512550869 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.078 Order of pole = 3.974 TOP MAIN SOLVE Loop x[1] = 3.823 y[1] (analytic) = 0 y[1] (numeric) = 5.435966137194835934438814169747 absolute error = 5.435966137194835934438814169747 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.074 Order of pole = 3.939 TOP MAIN SOLVE Loop x[1] = 3.824 y[1] (analytic) = 0 y[1] (numeric) = 5.4366121904792309771768482575221 absolute error = 5.4366121904792309771768482575221 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.07 Order of pole = 3.902 TOP MAIN SOLVE Loop x[1] = 3.825 y[1] (analytic) = 0 y[1] (numeric) = 5.4372578963311159252867064262764 absolute error = 5.4372578963311159252867064262764 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.065 Order of pole = 3.866 TOP MAIN SOLVE Loop x[1] = 3.826 y[1] (analytic) = 0 y[1] (numeric) = 5.437903255219619078724429496657 absolute error = 5.437903255219619078724429496657 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.061 Order of pole = 3.83 TOP MAIN SOLVE Loop x[1] = 3.827 y[1] (analytic) = 0 y[1] (numeric) = 5.4385482676136598902674131147481 absolute error = 5.4385482676136598902674131147481 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.057 Order of pole = 3.793 TOP MAIN SOLVE Loop x[1] = 3.828 y[1] (analytic) = 0 y[1] (numeric) = 5.4391929339819488523485905870221 absolute error = 5.4391929339819488523485905870221 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.052 Order of pole = 3.756 TOP MAIN SOLVE Loop x[1] = 3.829 y[1] (analytic) = 0 y[1] (numeric) = 5.4398372547929873853562336731206 absolute error = 5.4398372547929873853562336731206 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.048 Order of pole = 3.719 TOP MAIN SOLVE Loop x[1] = 3.83 y[1] (analytic) = 0 y[1] (numeric) = 5.4404812305150677273963754195373 absolute error = 5.4404812305150677273963754195373 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.043 Order of pole = 3.682 TOP MAIN SOLVE Loop x[1] = 3.831 y[1] (analytic) = 0 y[1] (numeric) = 5.4411248616162728255148611793913 absolute error = 5.4411248616162728255148611793913 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.039 Order of pole = 3.645 TOP MAIN SOLVE Loop memory used=1247.4MB, alloc=4.7MB, time=131.38 x[1] = 3.832 y[1] (analytic) = 0 y[1] (numeric) = 5.4417681485644762283760360401063 absolute error = 5.4417681485644762283760360401063 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.034 Order of pole = 3.608 TOP MAIN SOLVE Loop x[1] = 3.833 y[1] (analytic) = 0 y[1] (numeric) = 5.4424110918273419803950789718651 absolute error = 5.4424110918273419803950789718651 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.03 Order of pole = 3.57 TOP MAIN SOLVE Loop x[1] = 3.834 y[1] (analytic) = 0 y[1] (numeric) = 5.443053691872324517320996115121 absolute error = 5.443053691872324517320996115121 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.025 Order of pole = 3.533 TOP MAIN SOLVE Loop x[1] = 3.835 y[1] (analytic) = 0 y[1] (numeric) = 5.4436959491666685632672877451451 absolute error = 5.4436959491666685632672877451451 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.02 Order of pole = 3.495 TOP MAIN SOLVE Loop x[1] = 3.836 y[1] (analytic) = 0 y[1] (numeric) = 5.4443378641774090291873055854905 absolute error = 5.4443378641774090291873055854905 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.016 Order of pole = 3.457 TOP MAIN SOLVE Loop x[1] = 3.837 y[1] (analytic) = 0 y[1] (numeric) = 5.444979437371370912791319290294 absolute error = 5.444979437371370912791319290294 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.011 Order of pole = 3.419 TOP MAIN SOLVE Loop x[1] = 3.838 y[1] (analytic) = 0 y[1] (numeric) = 5.4456206692151691999023130774361 absolute error = 5.4456206692151691999023130774361 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.007 Order of pole = 3.381 TOP MAIN SOLVE Loop x[1] = 3.839 y[1] (analytic) = 0 y[1] (numeric) = 5.446261560175208767247535670667 absolute error = 5.446261560175208767247535670667 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 4.002 Order of pole = 3.343 TOP MAIN SOLVE Loop x[1] = 3.84 y[1] (analytic) = 0 y[1] (numeric) = 5.4469021107176842866828288988079 absolute error = 5.4469021107176842866828288988079 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.997 Order of pole = 3.304 TOP MAIN SOLVE Loop x[1] = 3.841 y[1] (analytic) = 0 y[1] (numeric) = 5.4475423213085801308467625039773 absolute error = 5.4475423213085801308467625039773 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.992 Order of pole = 3.266 TOP MAIN SOLVE Loop x[1] = 3.842 y[1] (analytic) = 0 y[1] (numeric) = 5.4481821924136702802416049284023 absolute error = 5.4481821924136702802416049284023 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.988 Order of pole = 3.227 TOP MAIN SOLVE Loop x[1] = 3.843 y[1] (analytic) = 0 y[1] (numeric) = 5.4488217244985182317381620806766 absolute error = 5.4488217244985182317381620806766 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.983 Order of pole = 3.189 TOP MAIN SOLVE Loop memory used=1251.2MB, alloc=4.7MB, time=131.79 x[1] = 3.844 y[1] (analytic) = 0 y[1] (numeric) = 5.4494609180284769085015183272507 absolute error = 5.4494609180284769085015183272507 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.978 Order of pole = 3.15 TOP MAIN SOLVE Loop x[1] = 3.845 y[1] (analytic) = 0 y[1] (numeric) = 5.4500997734686885713347162134127 absolute error = 5.4500997734686885713347162134127 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.973 Order of pole = 3.111 TOP MAIN SOLVE Loop x[1] = 3.846 y[1] (analytic) = 0 y[1] (numeric) = 5.4507382912840847314374136899643 absolute error = 5.4507382912840847314374136899643 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.968 Order of pole = 3.072 TOP MAIN SOLVE Loop x[1] = 3.847 y[1] (analytic) = 0 y[1] (numeric) = 5.4513764719393860645765599071474 absolute error = 5.4513764719393860645765599071474 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.964 Order of pole = 3.033 TOP MAIN SOLVE Loop x[1] = 3.848 y[1] (analytic) = 0 y[1] (numeric) = 5.452014315899102326666132936058 absolute error = 5.452014315899102326666132936058 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.959 Order of pole = 2.994 TOP MAIN SOLVE Loop x[1] = 3.849 y[1] (analytic) = 0 y[1] (numeric) = 5.4526518236275322707529850897208 absolute error = 5.4526518236275322707529850897208 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.954 Order of pole = 2.955 TOP MAIN SOLVE Loop x[1] = 3.85 y[1] (analytic) = 0 y[1] (numeric) = 5.4532889955887635654058438411239 absolute error = 5.4532889955887635654058438411239 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.949 Order of pole = 2.915 TOP MAIN SOLVE Loop x[1] = 3.851 y[1] (analytic) = 0 y[1] (numeric) = 5.4539258322466727145045186737503 absolute error = 5.4539258322466727145045186737503 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.944 Order of pole = 2.876 TOP MAIN SOLVE Loop x[1] = 3.852 y[1] (analytic) = 0 y[1] (numeric) = 5.4545623340649249784263665514234 absolute error = 5.4545623340649249784263665514234 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.939 Order of pole = 2.836 TOP MAIN SOLVE Loop x[1] = 3.853 y[1] (analytic) = 0 y[1] (numeric) = 5.4551985015069742966270710585315 absolute error = 5.4551985015069742966270710585315 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.934 Order of pole = 2.797 TOP MAIN SOLVE Loop x[1] = 3.854 y[1] (analytic) = 0 y[1] (numeric) = 5.4558343350360632116127926388477 absolute error = 5.4558343350360632116127926388477 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.929 Order of pole = 2.757 TOP MAIN SOLVE Loop memory used=1255.0MB, alloc=4.7MB, time=132.20 x[1] = 3.855 y[1] (analytic) = 0 y[1] (numeric) = 5.4564698351152227943007497511325 absolute error = 5.4564698351152227943007497511325 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.924 Order of pole = 2.717 TOP MAIN SOLVE Loop x[1] = 3.856 y[1] (analytic) = 0 y[1] (numeric) = 5.4571050022072725707652931624403 absolute error = 5.4571050022072725707652931624403 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.919 Order of pole = 2.677 TOP MAIN SOLVE Loop x[1] = 3.857 y[1] (analytic) = 0 y[1] (numeric) = 5.457739836774820450366538015462 absolute error = 5.457739836774820450366538015462 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.914 Order of pole = 2.638 TOP MAIN SOLVE Loop x[1] = 3.858 y[1] (analytic) = 0 y[1] (numeric) = 5.458374339280262655258620734265 absolute error = 5.458374339280262655258620734265 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.909 Order of pole = 2.598 TOP MAIN SOLVE Loop x[1] = 3.859 y[1] (analytic) = 0 y[1] (numeric) = 5.4590085101857836512746502733601 absolute error = 5.4590085101857836512746502733601 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.904 Order of pole = 2.558 TOP MAIN SOLVE Loop x[1] = 3.86 y[1] (analytic) = 0 y[1] (numeric) = 5.4596423499533560801854256680654 absolute error = 5.4596423499533560801854256680654 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.899 Order of pole = 2.517 TOP MAIN SOLVE Loop x[1] = 3.861 y[1] (analytic) = 0 y[1] (numeric) = 5.4602758590447406933289943095776 absolute error = 5.4602758590447406933289943095776 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.893 Order of pole = 2.477 TOP MAIN SOLVE Loop x[1] = 3.862 y[1] (analytic) = 0 y[1] (numeric) = 5.4609090379214862866081278459301 absolute error = 5.4609090379214862866081278459301 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.888 Order of pole = 2.437 TOP MAIN SOLVE Loop x[1] = 3.863 y[1] (analytic) = 0 y[1] (numeric) = 5.4615418870449296368527951000493 absolute error = 5.4615418870449296368527951000493 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.883 Order of pole = 2.397 TOP MAIN SOLVE Loop x[1] = 3.864 y[1] (analytic) = 0 y[1] (numeric) = 5.4621744068761954395447138983365 absolute error = 5.4621744068761954395447138983365 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.878 Order of pole = 2.356 TOP MAIN SOLVE Loop x[1] = 3.865 y[1] (analytic) = 0 y[1] (numeric) = 5.4628065978761962479010662175409 absolute error = 5.4628065978761962479010662175409 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.873 Order of pole = 2.316 TOP MAIN SOLVE Loop x[1] = 3.866 y[1] (analytic) = 0 y[1] (numeric) = 5.4634384605056324133144635840757 absolute error = 5.4634384605056324133144635840757 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.868 Order of pole = 2.276 TOP MAIN SOLVE Loop memory used=1258.8MB, alloc=4.7MB, time=132.61 x[1] = 3.867 y[1] (analytic) = 0 y[1] (numeric) = 5.4640699952249920271462521982935 absolute error = 5.4640699952249920271462521982935 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.862 Order of pole = 2.235 TOP MAIN SOLVE Loop x[1] = 3.868 y[1] (analytic) = 0 y[1] (numeric) = 5.4647012024945508638702498065102 absolute error = 5.4647012024945508638702498065102 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.857 Order of pole = 2.195 TOP MAIN SOLVE Loop x[1] = 3.869 y[1] (analytic) = 0 y[1] (numeric) = 5.4653320827743723255640089056818 absolute error = 5.4653320827743723255640089056818 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.852 Order of pole = 2.154 TOP MAIN SOLVE Loop x[1] = 3.87 y[1] (analytic) = 0 y[1] (numeric) = 5.4659626365243073877447034395204 absolute error = 5.4659626365243073877447034395204 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.847 Order of pole = 2.114 TOP MAIN SOLVE Loop x[1] = 3.871 y[1] (analytic) = 0 y[1] (numeric) = 5.4665928642039945465467387304184 absolute error = 5.4665928642039945465467387304184 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.842 Order of pole = 2.073 TOP MAIN SOLVE Loop x[1] = 3.872 y[1] (analytic) = 0 y[1] (numeric) = 5.467222766272859767238186988768 absolute error = 5.467222766272859767238186988768 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.836 Order of pole = 2.033 TOP MAIN SOLVE Loop x[1] = 3.873 y[1] (analytic) = 0 y[1] (numeric) = 5.4678523431901164340731533500372 absolute error = 5.4678523431901164340731533500372 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.831 Order of pole = 1.992 TOP MAIN SOLVE Loop x[1] = 3.874 y[1] (analytic) = 0 y[1] (numeric) = 5.4684815954147653014771800102363 absolute error = 5.4684815954147653014771800102363 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.826 Order of pole = 1.951 TOP MAIN SOLVE Loop x[1] = 3.875 y[1] (analytic) = 0 y[1] (numeric) = 5.4691105234055944465627986621028 absolute error = 5.4691105234055944465627986621028 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.82 Order of pole = 1.911 TOP MAIN SOLVE Loop x[1] = 3.876 y[1] (analytic) = 0 y[1] (numeric) = 5.4697391276211792229723440773849 absolute error = 5.4697391276211792229723440773849 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.815 Order of pole = 1.87 TOP MAIN SOLVE Loop x[1] = 3.877 y[1] (analytic) = 0 y[1] (numeric) = 5.4703674085198822160451443349412 absolute error = 5.4703674085198822160451443349412 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.81 Order of pole = 1.829 TOP MAIN SOLVE Loop memory used=1262.7MB, alloc=4.7MB, time=133.01 x[1] = 3.878 y[1] (analytic) = 0 y[1] (numeric) = 5.4709953665598531993062058599313 absolute error = 5.4709953665598531993062058599313 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.804 Order of pole = 1.789 TOP MAIN SOLVE Loop x[1] = 3.879 y[1] (analytic) = 0 y[1] (numeric) = 5.4716230021990290922735141160814 absolute error = 5.4716230021990290922735141160814 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.799 Order of pole = 1.748 TOP MAIN SOLVE Loop x[1] = 3.88 y[1] (analytic) = 0 y[1] (numeric) = 5.4722503158951339195810734807983 absolute error = 5.4722503158951339195810734807983 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.794 Order of pole = 1.707 TOP MAIN SOLVE Loop x[1] = 3.881 y[1] (analytic) = 0 y[1] (numeric) = 5.4728773081056787714148125317108 absolute error = 5.4728773081056787714148125317108 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.788 Order of pole = 1.667 TOP MAIN SOLVE Loop x[1] = 3.882 y[1] (analytic) = 0 y[1] (numeric) = 5.4735039792879617652584836829702 absolute error = 5.4735039792879617652584836829702 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.783 Order of pole = 1.626 TOP MAIN SOLVE Loop x[1] = 3.883 y[1] (analytic) = 0 y[1] (numeric) = 5.4741303298990680089466888302716 absolute error = 5.4741303298990680089466888302716 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.778 Order of pole = 1.585 TOP MAIN SOLVE Loop x[1] = 3.884 y[1] (analytic) = 0 y[1] (numeric) = 5.4747563603958695650221653950018 absolute error = 5.4747563603958695650221653950018 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.772 Order of pole = 1.545 TOP MAIN SOLVE Loop x[1] = 3.885 y[1] (analytic) = 0 y[1] (numeric) = 5.4753820712350254163944699001052 absolute error = 5.4753820712350254163944699001052 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.767 Order of pole = 1.504 TOP MAIN SOLVE Loop x[1] = 3.886 y[1] (analytic) = 0 y[1] (numeric) = 5.4760074628729814332971989631244 absolute error = 5.4760074628729814332971989631244 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.761 Order of pole = 1.463 TOP MAIN SOLVE Loop x[1] = 3.887 y[1] (analytic) = 0 y[1] (numeric) = 5.4766325357659703415408903553439 absolute error = 5.4766325357659703415408903553439 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.756 Order of pole = 1.423 TOP MAIN SOLVE Loop x[1] = 3.888 y[1] (analytic) = 0 y[1] (numeric) = 5.4772572903700116920587495499842 absolute error = 5.4772572903700116920587495499842 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.751 Order of pole = 1.382 TOP MAIN SOLVE Loop x[1] = 3.889 y[1] (analytic) = 0 y[1] (numeric) = 5.477881727140911831742349966884 absolute error = 5.477881727140911831742349966884 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.745 Order of pole = 1.342 TOP MAIN SOLVE Loop memory used=1266.5MB, alloc=4.7MB, time=133.42 x[1] = 3.89 y[1] (analytic) = 0 y[1] (numeric) = 5.4785058465342638755644579160102 absolute error = 5.4785058465342638755644579160102 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.74 Order of pole = 1.301 TOP MAIN SOLVE Loop x[1] = 3.891 y[1] (analytic) = 0 y[1] (numeric) = 5.4791296490054476799861360473813 absolute error = 5.4791296490054476799861360473813 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.734 Order of pole = 1.26 TOP MAIN SOLVE Loop x[1] = 3.892 y[1] (analytic) = 0 y[1] (numeric) = 5.4797531350096298176452819305082 absolute error = 5.4797531350096298176452819305082 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.729 Order of pole = 1.22 TOP MAIN SOLVE Loop x[1] = 3.893 y[1] (analytic) = 0 y[1] (numeric) = 5.4803763050017635533237612121896 absolute error = 5.4803763050017635533237612121896 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.724 Order of pole = 1.18 TOP MAIN SOLVE Loop x[1] = 3.894 y[1] (analytic) = 0 y[1] (numeric) = 5.4809991594365888211902976373717 absolute error = 5.4809991594365888211902976373717 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.718 Order of pole = 1.139 TOP MAIN SOLVE Loop x[1] = 3.895 y[1] (analytic) = 0 y[1] (numeric) = 5.4816216987686322033162850637355 absolute error = 5.4816216987686322033162850637355 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.713 Order of pole = 1.099 TOP MAIN SOLVE Loop x[1] = 3.896 y[1] (analytic) = 0 y[1] (numeric) = 5.4822439234522069094616894566403 absolute error = 5.4822439234522069094616894566403 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.707 Order of pole = 1.058 TOP MAIN SOLVE Loop x[1] = 3.897 y[1] (analytic) = 0 y[1] (numeric) = 5.4828658339414127581282117169616 absolute error = 5.4828658339414127581282117169616 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.702 Order of pole = 1.018 TOP MAIN SOLVE Loop x[1] = 3.898 y[1] (analytic) = 0 y[1] (numeric) = 5.483487430690136158876885070154 absolute error = 5.483487430690136158876885070154 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.696 Order of pole = 0.9779 TOP MAIN SOLVE Loop x[1] = 3.899 y[1] (analytic) = 0 y[1] (numeric) = 5.4841087141520500959072836304778 absolute error = 5.4841087141520500959072836304778 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.691 Order of pole = 0.9378 TOP MAIN SOLVE Loop x[1] = 3.9 y[1] (analytic) = 0 y[1] (numeric) = 5.484729684780614112895521649684 absolute error = 5.484729684780614112895521649684 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.685 Order of pole = 0.8976 TOP MAIN SOLVE Loop memory used=1270.3MB, alloc=4.7MB, time=133.82 x[1] = 3.901 y[1] (analytic) = 0 y[1] (numeric) = 5.4853503430290742990882258644954 absolute error = 5.4853503430290742990882258644954 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.68 Order of pole = 0.8576 TOP MAIN SOLVE Loop x[1] = 3.902 y[1] (analytic) = 0 y[1] (numeric) = 5.4859706893504632766496662718842 absolute error = 5.4859706893504632766496662718842 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.675 Order of pole = 0.8176 TOP MAIN SOLVE Loop x[1] = 3.903 y[1] (analytic) = 0 y[1] (numeric) = 5.4865907241976001892592335853632 absolute error = 5.4865907241976001892592335853632 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.669 Order of pole = 0.7776 TOP MAIN SOLVE Loop x[1] = 3.904 y[1] (analytic) = 0 y[1] (numeric) = 5.4872104480230906919564545592167 absolute error = 5.4872104480230906919564545592167 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.664 Order of pole = 0.7377 TOP MAIN SOLVE Loop x[1] = 3.905 y[1] (analytic) = 0 y[1] (numeric) = 5.4878298612793269422307393107297 absolute error = 5.4878298612793269422307393107297 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.658 Order of pole = 0.6979 TOP MAIN SOLVE Loop x[1] = 3.906 y[1] (analytic) = 0 y[1] (numeric) = 5.4884489644184875923530577229712 absolute error = 5.4884489644184875923530577229712 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.653 Order of pole = 0.6582 TOP MAIN SOLVE Loop x[1] = 3.907 y[1] (analytic) = 0 y[1] (numeric) = 5.4890677578925377829467449724782 absolute error = 5.4890677578925377829467449724782 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.647 Order of pole = 0.6185 TOP MAIN SOLVE Loop x[1] = 3.908 y[1] (analytic) = 0 y[1] (numeric) = 5.4896862421532291377946391972142 absolute error = 5.4896862421532291377946391972142 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.642 Order of pole = 0.5789 TOP MAIN SOLVE Loop x[1] = 3.909 y[1] (analytic) = 0 y[1] (numeric) = 5.4903044176520997598797573003696 absolute error = 5.4903044176520997598797573003696 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.636 Order of pole = 0.5394 TOP MAIN SOLVE Loop x[1] = 3.91 y[1] (analytic) = 0 y[1] (numeric) = 5.490922284840474228656717874873 absolute error = 5.490922284840474228656717874873 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.631 Order of pole = 0.5 TOP MAIN SOLVE Loop x[1] = 3.911 y[1] (analytic) = 0 y[1] (numeric) = 5.4915398441694635985511232318221 absolute error = 5.4915398441694635985511232318221 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.626 Order of pole = 0.4606 TOP MAIN SOLVE Loop x[1] = 3.912 y[1] (analytic) = 0 y[1] (numeric) = 5.4921570960899653986841155233646 absolute error = 5.4921570960899653986841155233646 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.62 Order of pole = 0.4213 memory used=1274.1MB, alloc=4.7MB, time=134.22 TOP MAIN SOLVE Loop x[1] = 3.913 y[1] (analytic) = 0 y[1] (numeric) = 5.4927740410526636338193249667933 absolute error = 5.4927740410526636338193249667933 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.615 Order of pole = 0.3822 TOP MAIN SOLVE Loop x[1] = 3.914 y[1] (analytic) = 0 y[1] (numeric) = 5.493390679508028786529431201704 absolute error = 5.493390679508028786529431201704 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.609 Order of pole = 0.3431 TOP MAIN SOLVE Loop x[1] = 3.915 y[1] (analytic) = 0 y[1] (numeric) = 5.4940070119063178205795618459416 absolute error = 5.4940070119063178205795618459416 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.604 Order of pole = 0.3041 TOP MAIN SOLVE Loop x[1] = 3.916 y[1] (analytic) = 0 y[1] (numeric) = 5.4946230386975741855247553586563 absolute error = 5.4946230386975741855247553586563 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.598 Order of pole = 0.2652 TOP MAIN SOLVE Loop x[1] = 3.917 y[1] (analytic) = 0 y[1] (numeric) = 5.4952387603316278225187183700554 absolute error = 5.4952387603316278225187183700554 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.593 Order of pole = 0.2264 TOP MAIN SOLVE Loop x[1] = 3.918 y[1] (analytic) = 0 y[1] (numeric) = 5.4958541772580951713311106972973 absolute error = 5.4958541772580951713311106972973 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.588 Order of pole = 0.1876 TOP MAIN SOLVE Loop x[1] = 3.919 y[1] (analytic) = 0 y[1] (numeric) = 5.4964692899263791785705943343734 absolute error = 5.4964692899263791785705943343734 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.582 Order of pole = 0.149 TOP MAIN SOLVE Loop x[1] = 3.92 y[1] (analytic) = 0 y[1] (numeric) = 5.4970840987856693071108857806961 absolute error = 5.4970840987856693071108857806961 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.577 Order of pole = 0.1105 TOP MAIN SOLVE Loop x[1] = 3.921 y[1] (analytic) = 0 y[1] (numeric) = 5.4976986042849415467170541583997 absolute error = 5.4976986042849415467170541583997 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.571 Order of pole = 0.07214 TOP MAIN SOLVE Loop x[1] = 3.922 y[1] (analytic) = 0 y[1] (numeric) = 5.4983128068729584258693106619957 absolute error = 5.4983128068729584258693106619957 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used for equation 1 Radius of convergence = 3.566 Order of pole = 0.03385 TOP MAIN SOLVE Loop x[1] = 3.923 y[1] (analytic) = 0 y[1] (numeric) = 5.4989267069982690247815379859506 absolute error = 5.4989267069982690247815379859506 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1277.9MB, alloc=4.7MB, time=134.62 x[1] = 3.924 y[1] (analytic) = 0 y[1] (numeric) = 5.4995403051092089896118114859064 absolute error = 5.4995403051092089896118114859064 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.925 y[1] (analytic) = 0 y[1] (numeric) = 5.5001536016539005478621669475807 absolute error = 5.5001536016539005478621669475807 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.926 y[1] (analytic) = 0 y[1] (numeric) = 5.500766597080252524964872963805 absolute error = 5.500766597080252524964872963805 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.927 y[1] (analytic) = 0 y[1] (numeric) = 5.5013792918359603620524690546219 absolute error = 5.5013792918359603620524690546219 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.928 y[1] (analytic) = 0 y[1] (numeric) = 5.5019916863685061349088338078071 absolute error = 5.5019916863685061349088338078071 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.929 y[1] (analytic) = 0 y[1] (numeric) = 5.5026037811251585740985504675449 absolute error = 5.5026037811251585740985504675449 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.93 y[1] (analytic) = 0 y[1] (numeric) = 5.5032155765529730862718405572091 absolute error = 5.5032155765529730862718405572091 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.931 y[1] (analytic) = 0 y[1] (numeric) = 5.5038270730987917766423392882233 absolute error = 5.5038270730987917766423392882233 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.932 y[1] (analytic) = 0 y[1] (numeric) = 5.5044382712092434726349896807309 absolute error = 5.5044382712092434726349896807309 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.933 y[1] (analytic) = 0 y[1] (numeric) = 5.5050491713307437487013355032435 absolute error = 5.5050491713307437487013355032435 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.934 y[1] (analytic) = 0 y[1] (numeric) = 5.5056597739094949522994963274861 absolute error = 5.5056597739094949522994963274861 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.935 y[1] (analytic) = 0 y[1] (numeric) = 5.506270079391486231036111191268 absolute error = 5.506270079391486231036111191268 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 memory used=1281.7MB, alloc=4.7MB, time=135.02 TOP MAIN SOLVE Loop x[1] = 3.936 y[1] (analytic) = 0 y[1] (numeric) = 5.5068800882224935609675405663122 absolute error = 5.5068800882224935609675405663122 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.937 y[1] (analytic) = 0 y[1] (numeric) = 5.5074898008480797760576195395188 absolute error = 5.5074898008480797760576195395188 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.938 y[1] (analytic) = 0 y[1] (numeric) = 5.5080992177135945987892583350555 absolute error = 5.5080992177135945987892583350555 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.939 y[1] (analytic) = 0 y[1] (numeric) = 5.5087083392641746719271895309034 absolute error = 5.5087083392641746719271895309034 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.94 y[1] (analytic) = 0 y[1] (numeric) = 5.5093171659447435914291645569806 absolute error = 5.5093171659447435914291645569806 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.941 y[1] (analytic) = 0 y[1] (numeric) = 5.5099256982000119405029053026559 absolute error = 5.5099256982000119405029053026559 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.942 y[1] (analytic) = 0 y[1] (numeric) = 5.5105339364744773248061199092967 absolute error = 5.5105339364744773248061199092967 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.943 y[1] (analytic) = 0 y[1] (numeric) = 5.511141881212424408786895078404 absolute error = 5.511141881212424408786895078404 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.944 y[1] (analytic) = 0 y[1] (numeric) = 5.5117495328579249531617804878213 absolute error = 5.5117495328579249531617804878213 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.945 y[1] (analytic) = 0 y[1] (numeric) = 5.5123568918548378535288841773958 absolute error = 5.5123568918548378535288841773958 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.946 y[1] (analytic) = 0 y[1] (numeric) = 5.5129639586468091801133010412701 absolute error = 5.5129639586468091801133010412701 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1285.6MB, alloc=4.7MB, time=135.42 x[1] = 3.947 y[1] (analytic) = 0 y[1] (numeric) = 5.5135707336772722186421998466248 absolute error = 5.5135707336772722186421998466248 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.948 y[1] (analytic) = 0 y[1] (numeric) = 5.5141772173894475123468974881233 absolute error = 5.5141772173894475123468974881233 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.949 y[1] (analytic) = 0 y[1] (numeric) = 5.5147834102263429050892524834683 absolute error = 5.5147834102263429050892524834683 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.95 y[1] (analytic) = 0 y[1] (numeric) = 5.5153893126307535856097130183112 absolute error = 5.5153893126307535856097130183112 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.951 y[1] (analytic) = 0 y[1] (numeric) = 5.5159949250452621328943581581971 absolute error = 5.5159949250452621328943581581971 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.952 y[1] (analytic) = 0 y[1] (numeric) = 5.5166002479122385626582741612276 absolute error = 5.5166002479122385626582741612276 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.953 y[1] (analytic) = 0 y[1] (numeric) = 5.5172052816738403749426111476193 absolute error = 5.5172052816738403749426111476193 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.954 y[1] (analytic) = 0 y[1] (numeric) = 5.5178100267720126028226687112716 absolute error = 5.5178100267720126028226687112716 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.955 y[1] (analytic) = 0 y[1] (numeric) = 5.5184144836484878622243623937783 absolute error = 5.5184144836484878622243623937783 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.956 y[1] (analytic) = 0 y[1] (numeric) = 5.5190186527447864028464262829615 absolute error = 5.5190186527447864028464262829615 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.957 y[1] (analytic) = 0 y[1] (numeric) = 5.5196225345022161601857103459206 absolute error = 5.5196225345022161601857103459206 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.958 y[1] (analytic) = 0 y[1] (numeric) = 5.5202261293618728086629344607164 absolute error = 5.5202261293618728086629344607164 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 memory used=1289.4MB, alloc=4.7MB, time=135.82 TOP MAIN SOLVE Loop x[1] = 3.959 y[1] (analytic) = 0 y[1] (numeric) = 5.5208294377646398158462644710894 absolute error = 5.5208294377646398158462644710894 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.96 y[1] (analytic) = 0 y[1] (numeric) = 5.5214324601511884977700789549949 absolute error = 5.5214324601511884977700789549949 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.961 y[1] (analytic) = 0 y[1] (numeric) = 5.5220351969619780753462987701573 absolute error = 5.5220351969619780753462987701573 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.962 y[1] (analytic) = 0 y[1] (numeric) = 5.5226376486372557318656548182557 absolute error = 5.5226376486372557318656548182557 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.963 y[1] (analytic) = 0 y[1] (numeric) = 5.5232398156170566715862728536924 absolute error = 5.5232398156170566715862728536924 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.964 y[1] (analytic) = 0 y[1] (numeric) = 5.5238416983412041794069575531073 absolute error = 5.5238416983412041794069575531073 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.965 y[1] (analytic) = 0 y[1] (numeric) = 5.5244432972493096816225614578328 absolute error = 5.5244432972493096816225614578328 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.966 y[1] (analytic) = 0 y[1] (numeric) = 5.5250446127807728077588278032778 absolute error = 5.5250446127807728077588278032778 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.967 y[1] (analytic) = 0 y[1] (numeric) = 5.525645645374781453484099656728 absolute error = 5.525645645374781453484099656728 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.968 y[1] (analytic) = 0 y[1] (numeric) = 5.5262463954703118445952911982041 absolute error = 5.5262463954703118445952911982041 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.969 y[1] (analytic) = 0 y[1] (numeric) = 5.5268468635061286020755203977664 absolute error = 5.5268468635061286020755203977664 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1293.2MB, alloc=4.7MB, time=136.23 x[1] = 3.97 y[1] (analytic) = 0 y[1] (numeric) = 5.527447049920784808220805766944 absolute error = 5.527447049920784808220805766944 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.971 y[1] (analytic) = 0 y[1] (numeric) = 5.5280469551526220738332332917443 absolute error = 5.5280469551526220738332332917443 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.972 y[1] (analytic) = 0 y[1] (numeric) = 5.5286465796397706064780030899034 absolute error = 5.5286465796397706064780030899034 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.973 y[1] (analytic) = 0 y[1] (numeric) = 5.5292459238201492798017687756259 absolute error = 5.5292459238201492798017687756259 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.974 y[1] (analytic) = 0 y[1] (numeric) = 5.5298449881314657039096859609661 absolute error = 5.5298449881314657039096859609661 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.975 y[1] (analytic) = 0 y[1] (numeric) = 5.5304437730112162967985897741798 absolute error = 5.5304437730112162967985897741798 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.976 y[1] (analytic) = 0 y[1] (numeric) = 5.5310422788966863568437247317631 absolute error = 5.5310422788966863568437247317631 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.977 y[1] (analytic) = 0 y[1] (numeric) = 5.5316405062249501363364537624443 absolute error = 5.5316405062249501363364537624443 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.978 y[1] (analytic) = 0 y[1] (numeric) = 5.532238455432870916070376648047 absolute error = 5.532238455432870916070376648047 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.979 y[1] (analytic) = 0 y[1] (numeric) = 5.5328361269571010809732916178514 absolute error = 5.5328361269571010809732916178514 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.98 y[1] (analytic) = 0 y[1] (numeric) = 5.5334335212340821967824373097831 absolute error = 5.5334335212340821967824373097831 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.981 y[1] (analytic) = 0 y[1] (numeric) = 5.534030638700045087760455793409 absolute error = 5.534030638700045087760455793409 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1297.0MB, alloc=4.7MB, time=136.64 x[1] = 3.982 y[1] (analytic) = 0 y[1] (numeric) = 5.5346274797910099154495208362608 absolute error = 5.5346274797910099154495208362608 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.983 y[1] (analytic) = 0 y[1] (numeric) = 5.5352240449427862584610790863863 absolute error = 5.5352240449427862584610790863863 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.984 y[1] (analytic) = 0 y[1] (numeric) = 5.535820334590973193298655340192 absolute error = 5.535820334590973193298655340192 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.985 y[1] (analytic) = 0 y[1] (numeric) = 5.5364163491709593762111765655395 absolute error = 5.5364163491709593762111765655395 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.986 y[1] (analytic) = 0 y[1] (numeric) = 5.537012089117923126074272855633 absolute error = 5.537012089117923126074272855633 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.987 y[1] (analytic) = 0 y[1] (numeric) = 5.5376075548668325082970169994393 absolute error = 5.5376075548668325082970169994393 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.988 y[1] (analytic) = 0 y[1] (numeric) = 5.5382027468524454197515678691611 absolute error = 5.5382027468524454197515678691611 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.989 y[1] (analytic) = 0 y[1] (numeric) = 5.538797665509309674723186344582 absolute error = 5.538797665509309674723186344582 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.99 y[1] (analytic) = 0 y[1] (numeric) = 5.539392311271763091878096017876 absolute error = 5.539392311271763091878096017876 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.991 y[1] (analytic) = 0 y[1] (numeric) = 5.5399866845739335822466644506578 absolute error = 5.5399866845739335822466644506578 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.992 y[1] (analytic) = 0 y[1] (numeric) = 5.5405807858497392382193842876095 absolute error = 5.5405807858497392382193842876095 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1300.8MB, alloc=4.7MB, time=137.04 x[1] = 3.993 y[1] (analytic) = 0 y[1] (numeric) = 5.5411746155328884235531370678839 absolute error = 5.5411746155328884235531370678839 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.994 y[1] (analytic) = 0 y[1] (numeric) = 5.5417681740568798643852261166195 absolute error = 5.5417681740568798643852261166195 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.995 y[1] (analytic) = 0 y[1] (numeric) = 5.5423614618550027412526684442424 absolute error = 5.5423614618550027412526684442424 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.996 y[1] (analytic) = 0 y[1] (numeric) = 5.5429544793603367821142391307355 absolute error = 5.5429544793603367821142391307355 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.997 y[1] (analytic) = 0 y[1] (numeric) = 5.5435472270057523563727652256645 absolute error = 5.5435472270057523563727652256645 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.998 y[1] (analytic) = 0 y[1] (numeric) = 5.5441397052239105698951697524215 absolute error = 5.5441397052239105698951697524215 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 3.999 y[1] (analytic) = 0 y[1] (numeric) = 5.5447319144472633610277699668228 absolute error = 5.5447319144472633610277699668228 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4 y[1] (analytic) = 0 y[1] (numeric) = 5.5453238551080535976043375858282 absolute error = 5.5453238551080535976043375858282 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.001 y[1] (analytic) = 0 y[1] (numeric) = 5.5459155276383151749444322716902 absolute error = 5.5459155276383151749444322716902 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.002 y[1] (analytic) = 0 y[1] (numeric) = 5.546506932469873114839523230231 absolute error = 5.546506932469873114839523230231 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.003 y[1] (analytic) = 0 y[1] (numeric) = 5.5470980700343436655244173591455 absolute error = 5.5470980700343436655244173591455 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.004 y[1] (analytic) = 0 y[1] (numeric) = 5.5476889407631344026315159631798 absolute error = 5.5476889407631344026315159631798 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1304.6MB, alloc=4.7MB, time=137.46 x[1] = 4.005 y[1] (analytic) = 0 y[1] (numeric) = 5.5482795450874443311254256376922 absolute error = 5.5482795450874443311254256376922 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.006 y[1] (analytic) = 0 y[1] (numeric) = 5.548869883438263988215452510415 absolute error = 5.548869883438263988215452510415 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.007 y[1] (analytic) = 0 y[1] (numeric) = 5.5494599562463755472435126231529 absolute error = 5.5494599562463755472435126231529 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.008 y[1] (analytic) = 0 y[1] (numeric) = 5.550049763942352922544994830625 absolute error = 5.550049763942352922544994830625 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.009 y[1] (analytic) = 0 y[1] (numeric) = 5.5506393069565618752801161926365 absolute error = 5.5506393069565618752801161926365 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.01 y[1] (analytic) = 0 y[1] (numeric) = 5.5512285857191601202333134382008 absolute error = 5.5512285857191601202333134382008 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.011 y[1] (analytic) = 0 y[1] (numeric) = 5.5518176006600974335782176860743 absolute error = 5.5518176006600974335782176860743 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.012 y[1] (analytic) = 0 y[1] (numeric) = 5.5524063522091157616057632153684 absolute error = 5.5524063522091157616057632153684 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.013 y[1] (analytic) = 0 y[1] (numeric) = 5.5529948407957493304129846924122 absolute error = 5.5529948407957493304129846924122 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.014 y[1] (analytic) = 0 y[1] (numeric) = 5.5535830668493247565500608758117 absolute error = 5.5535830668493247565500608758117 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.015 y[1] (analytic) = 0 y[1] (numeric) = 5.5541710307989611586231664406348 absolute error = 5.5541710307989611586231664406348 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1308.4MB, alloc=4.7MB, time=137.87 x[1] = 4.016 y[1] (analytic) = 0 y[1] (numeric) = 5.5547587330735702698506971847982 absolute error = 5.5547587330735702698506971847982 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.017 y[1] (analytic) = 0 y[1] (numeric) = 5.5553461741018565515704375059961 absolute error = 5.5553461741018565515704375059961 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.018 y[1] (analytic) = 0 y[1] (numeric) = 5.5559333543123173076952426658412 absolute error = 5.5559333543123173076952426658412 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.019 y[1] (analytic) = 0 y[1] (numeric) = 5.5565202741332428001148119892367 absolute error = 5.5565202741332428001148119892367 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.02 y[1] (analytic) = 0 y[1] (numeric) = 5.5571069339927163650411327813213 absolute error = 5.5571069339927163650411327813213 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.021 y[1] (analytic) = 0 y[1] (numeric) = 5.557693334318614530295178381573 absolute error = 5.557693334318614530295178381573 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.022 y[1] (analytic) = 0 y[1] (numeric) = 5.5582794755386071335324474147787 absolute error = 5.5582794755386071335324474147787 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.023 y[1] (analytic) = 0 y[1] (numeric) = 5.558865358080157441404934941527 absolute error = 5.558865358080157441404934941527 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.024 y[1] (analytic) = 0 y[1] (numeric) = 5.5594509823705222696571298566123 absolute error = 5.5594509823705222696571298566123 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.025 y[1] (analytic) = 0 y[1] (numeric) = 5.5600363488367521041536365322044 absolute error = 5.5600363488367521041536365322044 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.026 y[1] (analytic) = 0 y[1] (numeric) = 5.5606214579056912228360223537899 absolute error = 5.5606214579056912228360223537899 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.027 y[1] (analytic) = 0 y[1] (numeric) = 5.561206310003977818606496450685 absolute error = 5.561206310003977818606496450685 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1312.3MB, alloc=4.7MB, time=138.27 x[1] = 4.028 y[1] (analytic) = 0 y[1] (numeric) = 5.5617909055580441231360285793059 absolute error = 5.5617909055580441231360285793059 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.029 y[1] (analytic) = 0 y[1] (numeric) = 5.5623752449941165315945207763163 absolute error = 5.5623752449941165315945207763163 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.03 y[1] (analytic) = 0 y[1] (numeric) = 5.5629593287382157283006480602059 absolute error = 5.5629593287382157283006480602059 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.031 y[1] (analytic) = 0 y[1] (numeric) = 5.5635431572161568132889881237416 absolute error = 5.5635431572161568132889881237416 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.032 y[1] (analytic) = 0 y[1] (numeric) = 5.5641267308535494297920636260294 absolute error = 5.5641267308535494297920636260294 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.033 y[1] (analytic) = 0 y[1] (numeric) = 5.5647100500757978926349243615829 absolute error = 5.5647100500757978926349243615829 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.034 y[1] (analytic) = 0 y[1] (numeric) = 5.5652931153081013175399002547694 absolute error = 5.5652931153081013175399002547694 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.035 y[1] (analytic) = 0 y[1] (numeric) = 5.5658759269754537513391598012475 absolute error = 5.5658759269754537513391598012475 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.036 y[1] (analytic) = 0 y[1] (numeric) = 5.5664584855026443030927122534805 absolute error = 5.5664584855026443030927122534805 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.037 y[1] (analytic) = 0 y[1] (numeric) = 5.5670407913142572761094955250576 absolute error = 5.5670407913142572761094955250576 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.038 y[1] (analytic) = 0 y[1] (numeric) = 5.5676228448346723008691954683368 absolute error = 5.5676228448346723008691954683368 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.039 y[1] (analytic) = 0 y[1] (numeric) = 5.5682046464880644688424458617944 absolute error = 5.5682046464880644688424458617944 relative error = -1 % memory used=1316.1MB, alloc=4.7MB, time=138.67 Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.04 y[1] (analytic) = 0 y[1] (numeric) = 5.5687861966984044672070621273807 absolute error = 5.5687861966984044672070621273807 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.041 y[1] (analytic) = 0 y[1] (numeric) = 5.5693674958894587144579654840931 absolute error = 5.5693674958894587144579654840931 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.042 y[1] (analytic) = 0 y[1] (numeric) = 5.5699485444847894969084579318459 absolute error = 5.5699485444847894969084579318459 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.043 y[1] (analytic) = 0 y[1] (numeric) = 5.570529342907755106080512149491 absolute error = 5.570529342907755106080512149491 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.044 y[1] (analytic) = 0 y[1] (numeric) = 5.5711098915815099769817440824853 absolute error = 5.5711098915815099769817440824853 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.045 y[1] (analytic) = 0 y[1] (numeric) = 5.5716901909290048272667396891605 absolute error = 5.5716901909290048272667396891605 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.046 y[1] (analytic) = 0 y[1] (numeric) = 5.5722702413729867972804110097887 absolute error = 5.5722702413729867972804110097887 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.047 y[1] (analytic) = 0 y[1] (numeric) = 5.5728500433359995909810604196058 absolute error = 5.5728500433359995909810604196058 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.048 y[1] (analytic) = 0 y[1] (numeric) = 5.5734295972403836177408356256124 absolute error = 5.5734295972403836177408356256124 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.049 y[1] (analytic) = 0 y[1] (numeric) = 5.574008903508276135021261667272 absolute error = 5.574008903508276135021261667272 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.05 y[1] (analytic) = 0 y[1] (numeric) = 5.5745879625616113919215398831291 absolute error = 5.5745879625616113919215398831291 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1319.9MB, alloc=4.7MB, time=139.07 x[1] = 4.051 y[1] (analytic) = 0 y[1] (numeric) = 5.5751667748221207735973075088282 absolute error = 5.5751667748221207735973075088282 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.052 y[1] (analytic) = 0 y[1] (numeric) = 5.5757453407113329465475552769869 absolute error = 5.5757453407113329465475552769869 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.053 y[1] (analytic) = 0 y[1] (numeric) = 5.5763236606505740047674040958189 absolute error = 5.5763236606505740047674040958189 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.054 y[1] (analytic) = 0 y[1] (numeric) = 5.5769017350609676167644455912735 absolute error = 5.5769017350609676167644455912735 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.055 y[1] (analytic) = 0 y[1] (numeric) = 5.5774795643634351734363550067103 absolute error = 5.5774795643634351734363550067103 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.056 y[1] (analytic) = 0 y[1] (numeric) = 5.5780571489786959368074886647252 absolute error = 5.5780571489786959368074886647252 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.057 y[1] (analytic) = 0 y[1] (numeric) = 5.5786344893272671896221819076366 absolute error = 5.5786344893272671896221819076366 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.058 y[1] (analytic) = 0 y[1] (numeric) = 5.5792115858294643857924671462911 absolute error = 5.5792115858294643857924671462911 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.059 y[1] (analytic) = 0 y[1] (numeric) = 5.5797884389054013016979353612111 absolute error = 5.5797884389054013016979353612111 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.06 y[1] (analytic) = 0 y[1] (numeric) = 5.5803650489749901883354681156425 absolute error = 5.5803650489749901883354681156425 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.061 y[1] (analytic) = 0 y[1] (numeric) = 5.5809414164579419243165708567233 absolute error = 5.5809414164579419243165708567233 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.062 y[1] (analytic) = 0 y[1] (numeric) = 5.5815175417737661697100419987468 absolute error = 5.5815175417737661697100419987468 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 memory used=1323.7MB, alloc=4.7MB, time=139.48 TOP MAIN SOLVE Loop x[1] = 4.063 y[1] (analytic) = 0 y[1] (numeric) = 5.5820934253417715207277160012862 absolute error = 5.5820934253417715207277160012862 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.064 y[1] (analytic) = 0 y[1] (numeric) = 5.5826690675810656652510223747508 absolute error = 5.5826690675810656652510223747508 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.065 y[1] (analytic) = 0 y[1] (numeric) = 5.5832444689105555391961062667017 absolute error = 5.5832444689105555391961062667017 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.066 y[1] (analytic) = 0 y[1] (numeric) = 5.5838196297489474837152600039385 absolute error = 5.5838196297489474837152600039385 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.067 y[1] (analytic) = 0 y[1] (numeric) = 5.5843945505147474032324186879276 absolute error = 5.5843945505147474032324186879276 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.068 y[1] (analytic) = 0 y[1] (numeric) = 5.5849692316262609243104766645423 absolute error = 5.5849692316262609243104766645423 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.069 y[1] (analytic) = 0 y[1] (numeric) = 5.5855436735015935553481854132775 absolute error = 5.5855436735015935553481854132775 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.07 y[1] (analytic) = 0 y[1] (numeric) = 5.5861178765586508471043971260532 absolute error = 5.5861178765586508471043971260532 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.071 y[1] (analytic) = 0 y[1] (numeric) = 5.5866918412151385540474219713853 absolute error = 5.5866918412151385540474219713853 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.072 y[1] (analytic) = 0 y[1] (numeric) = 5.5872655678885627965272707660421 absolute error = 5.5872655678885627965272707660421 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.073 y[1] (analytic) = 0 y[1] (numeric) = 5.5878390569962302237685585032756 absolute error = 5.5878390569962302237685585032756 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1327.5MB, alloc=4.7MB, time=139.88 x[1] = 4.074 y[1] (analytic) = 0 y[1] (numeric) = 5.5884123089552481776818479142843 absolute error = 5.5884123089552481776818479142843 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.075 y[1] (analytic) = 0 y[1] (numeric) = 5.5889853241825248574912159676808 absolute error = 5.5889853241825248574912159676808 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.076 y[1] (analytic) = 0 y[1] (numeric) = 5.5895581030947694851758299403698 absolute error = 5.5895581030947694851758299403698 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.077 y[1] (analytic) = 0 y[1] (numeric) = 5.5901306461084924717233234223446 absolute error = 5.5901306461084924717233234223446 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.078 y[1] (analytic) = 0 y[1] (numeric) = 5.5907029536400055841927663474472 absolute error = 5.5907029536400055841927663474472 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.079 y[1] (analytic) = 0 y[1] (numeric) = 5.5912750261054221135850268720662 absolute error = 5.5912750261054221135850268720662 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.08 y[1] (analytic) = 0 y[1] (numeric) = 5.5918468639206570435183266540286 absolute error = 5.5918468639206570435183266540286 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.081 y[1] (analytic) = 0 y[1] (numeric) = 5.5924184675014272197067948145396 absolute error = 5.5924184675014272197067948145396 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.082 y[1] (analytic) = 0 y[1] (numeric) = 5.5929898372632515202398295968928 absolute error = 5.5929898372632515202398295968928 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.083 y[1] (analytic) = 0 y[1] (numeric) = 5.5935609736214510266600804667818 absolute error = 5.5935609736214510266600804667818 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.084 y[1] (analytic) = 0 y[1] (numeric) = 5.5941318769911491958378671303453 absolute error = 5.5941318769911491958378671303453 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.085 y[1] (analytic) = 0 y[1] (numeric) = 5.5947025477872720326398556775361 absolute error = 5.5947025477872720326398556775361 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 memory used=1331.3MB, alloc=4.7MB, time=140.29 TOP MAIN SOLVE Loop x[1] = 4.086 y[1] (analytic) = 0 y[1] (numeric) = 5.5952729864245482633898157899842 absolute error = 5.5952729864245482633898157899842 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.087 y[1] (analytic) = 0 y[1] (numeric) = 5.5958431933175095101192866841802 absolute error = 5.5958431933175095101192866841802 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.088 y[1] (analytic) = 0 y[1] (numeric) = 5.5964131688804904656059831925028 absolute error = 5.5964131688804904656059831925028 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.089 y[1] (analytic) = 0 y[1] (numeric) = 5.5969829135276290691977771163173 absolute error = 5.5969829135276290691977771163173 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.09 y[1] (analytic) = 0 y[1] (numeric) = 5.5975524276728666834200927170347 absolute error = 5.5975524276728666834200927170347 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.091 y[1] (analytic) = 0 y[1] (numeric) = 5.5981217117299482713645589426144 absolute error = 5.5981217117299482713645589426144 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.092 y[1] (analytic) = 0 y[1] (numeric) = 5.5986907661124225748567647184706 absolute error = 5.5986907661124225748567647184706 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.093 y[1] (analytic) = 0 y[1] (numeric) = 5.5992595912336422934009673630746 absolute error = 5.5992595912336422934009673630746 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.094 y[1] (analytic) = 0 y[1] (numeric) = 5.599828187506764263899607919684 absolute error = 5.599828187506764263899607919684 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.095 y[1] (analytic) = 0 y[1] (numeric) = 5.6003965553447496411454909265486 absolute error = 5.6003965553447496411454909265486 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.096 y[1] (analytic) = 0 y[1] (numeric) = 5.6009646951603640790844898785948 absolute error = 5.6009646951603640790844898785948 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1335.1MB, alloc=4.7MB, time=140.69 x[1] = 4.097 y[1] (analytic) = 0 y[1] (numeric) = 5.6015326073661779128466433639436 absolute error = 5.6015326073661779128466433639436 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.098 y[1] (analytic) = 0 y[1] (numeric) = 5.6021002923745663415435105886342 absolute error = 5.6021002923745663415435105886342 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.099 y[1] (analytic) = 0 y[1] (numeric) = 5.602667750597709611829658732564 absolute error = 5.602667750597709611829658732564 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.1 y[1] (analytic) = 0 y[1] (numeric) = 5.6032349824475932022261583088865 absolute error = 5.6032349824475932022261583088865 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.101 y[1] (analytic) = 0 y[1] (numeric) = 5.6038019883360080082039664278885 absolute error = 5.6038019883360080082039664278885 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.102 y[1] (analytic) = 0 y[1] (numeric) = 5.6043687686745505280250815946632 absolute error = 5.6043687686745505280250815946632 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.103 y[1] (analytic) = 0 y[1] (numeric) = 5.6049353238746230493393573976683 absolute error = 5.6049353238746230493393573976683 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.104 y[1] (analytic) = 0 y[1] (numeric) = 5.6055016543474338365348661724733 absolute error = 5.6055016543474338365348661724733 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.105 y[1] (analytic) = 0 y[1] (numeric) = 5.6060677605039973188397074516196 absolute error = 5.6060677605039973188397074516196 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.106 y[1] (analytic) = 0 y[1] (numeric) = 5.6066336427551342791731597375044 absolute error = 5.6066336427551342791731597375044 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.107 y[1] (analytic) = 0 y[1] (numeric) = 5.6071993015114720437440778605219 absolute error = 5.6071993015114720437440778605219 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.108 y[1] (analytic) = 0 y[1] (numeric) = 5.6077647371834446723944419093116 absolute error = 5.6077647371834446723944419093116 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1339.0MB, alloc=4.7MB, time=141.09 x[1] = 4.109 y[1] (analytic) = 0 y[1] (numeric) = 5.6083299501812931496859674438422 absolute error = 5.6083299501812931496859674438422 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.11 y[1] (analytic) = 0 y[1] (numeric) = 5.6088949409150655767276904251635 absolute error = 5.6088949409150655767276904251635 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.111 y[1] (analytic) = 0 y[1] (numeric) = 5.6094597097946173637424440179513 absolute error = 5.6094597097946173637424440179513 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.112 y[1] (analytic) = 0 y[1] (numeric) = 5.6100242572296114233701481434167 absolute error = 5.6100242572296114233701481434167 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.113 y[1] (analytic) = 0 y[1] (numeric) = 5.6105885836295183647058363807168 absolute error = 5.6105885836295183647058363807168 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.114 y[1] (analytic) = 0 y[1] (numeric) = 5.6111526894036166880703485346526 absolute error = 5.6111526894036166880703485346526 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.115 y[1] (analytic) = 0 y[1] (numeric) = 5.6117165749609929805116209061363 absolute error = 5.6117165749609929805116209061363 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.116 y[1] (analytic) = 0 y[1] (numeric) = 5.6122802407105421120345100196204 absolute error = 5.6122802407105421120345100196204 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.117 y[1] (analytic) = 0 y[1] (numeric) = 5.6128436870609674325570892783684 absolute error = 5.6128436870609674325570892783684 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.118 y[1] (analytic) = 0 y[1] (numeric) = 5.6134069144207809695913617340804 absolute error = 5.6134069144207809695913617340804 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.119 y[1] (analytic) = 0 y[1] (numeric) = 5.6139699231983036266463358719252 absolute error = 5.6139699231983036266463358719252 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1342.8MB, alloc=4.7MB, time=141.50 x[1] = 4.12 y[1] (analytic) = 0 y[1] (numeric) = 5.614532713801665382351415025448 absolute error = 5.614532713801665382351415025448 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.121 y[1] (analytic) = 0 y[1] (numeric) = 5.6150952866388054902980547480763 absolute error = 5.6150952866388054902980547480763 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.122 y[1] (analytic) = 0 y[1] (numeric) = 5.6156576421174726795976461790076 absolute error = 5.6156576421174726795976461790076 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.123 y[1] (analytic) = 0 y[1] (numeric) = 5.6162197806452253561535871510964 absolute error = 5.6162197806452253561535871510964 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.124 y[1] (analytic) = 0 y[1] (numeric) = 5.6167817026294318046455064969268 absolute error = 5.6167817026294318046455064969268 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.125 y[1] (analytic) = 0 y[1] (numeric) = 5.6173434084772703912236107165315 absolute error = 5.6173434084772703912236107165315 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.126 y[1] (analytic) = 0 y[1] (numeric) = 5.6179048985957297669111258761621 absolute error = 5.6179048985957297669111258761621 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.127 y[1] (analytic) = 0 y[1] (numeric) = 5.618466173391609071712811312096 absolute error = 5.618466173391609071712811312096 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.128 y[1] (analytic) = 0 y[1] (numeric) = 5.6190272332715181394275254166484 absolute error = 5.6190272332715181394275254166484 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.129 y[1] (analytic) = 0 y[1] (numeric) = 5.6195880786418777031628274853096 absolute error = 5.6195880786418777031628274853096 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.13 y[1] (analytic) = 0 y[1] (numeric) = 5.620148709908919601549603304219 absolute error = 5.620148709908919601549603304219 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.131 y[1] (analytic) = 0 y[1] (numeric) = 5.6207091274786869856547058559756 absolute error = 5.6207091274786869856547058559756 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1346.6MB, alloc=4.7MB, time=141.90 x[1] = 4.132 y[1] (analytic) = 0 y[1] (numeric) = 5.6212693317570345265896062190504 absolute error = 5.6212693317570345265896062190504 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.133 y[1] (analytic) = 0 y[1] (numeric) = 5.6218293231496286238130534317618 absolute error = 5.6218293231496286238130534317618 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.134 y[1] (analytic) = 0 y[1] (numeric) = 5.6223891020619476141257457858803 absolute error = 5.6223891020619476141257457858803 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.135 y[1] (analytic) = 0 y[1] (numeric) = 5.6229486688992819813550197074031 absolute error = 5.6229486688992819813550197074031 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.136 y[1] (analytic) = 0 y[1] (numeric) = 5.6235080240667345667275660728525 absolute error = 5.6235080240667345667275660728525 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.137 y[1] (analytic) = 0 y[1] (numeric) = 5.6240671679692207799281874985739 absolute error = 5.6240671679692207799281874985739 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.138 y[1] (analytic) = 0 y[1] (numeric) = 5.6246261010114688108426138279019 absolute error = 5.6246261010114688108426138279019 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.139 y[1] (analytic) = 0 y[1] (numeric) = 5.625184823598019841982396726703 absolute error = 5.625184823598019841982396726703 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.14 y[1] (analytic) = 0 y[1] (numeric) = 5.6257433361332282615899079816477 absolute error = 5.6257433361332282615899079816477 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.141 y[1] (analytic) = 0 y[1] (numeric) = 5.6263016390212618774214697775916 absolute error = 5.6263016390212618774214697775916 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.142 y[1] (analytic) = 0 y[1] (numeric) = 5.626859732666102131206648910616 absolute error = 5.626859732666102131206648910616 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1350.4MB, alloc=4.7MB, time=142.31 x[1] = 4.143 y[1] (analytic) = 0 y[1] (numeric) = 5.6274176174715443137817505715652 absolute error = 5.6274176174715443137817505715652 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.144 y[1] (analytic) = 0 y[1] (numeric) = 5.6279752938411977808955510112858 absolute error = 5.6279752938411977808955510112858 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.145 y[1] (analytic) = 0 y[1] (numeric) = 5.6285327621784861696853120731949 absolute error = 5.6285327621784861696853120731949 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.146 y[1] (analytic) = 0 y[1] (numeric) = 5.629090022886647615821124251244 absolute error = 5.629090022886647615821124251244 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.147 y[1] (analytic) = 0 y[1] (numeric) = 5.6296470763687349713166286017755 absolute error = 5.6296470763687349713166286017755 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.148 y[1] (analytic) = 0 y[1] (numeric) = 5.6302039230276160230041715061558 absolute error = 5.6302039230276160230041715061558 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.149 y[1] (analytic) = 0 y[1] (numeric) = 5.6307605632659737116724499473837 absolute error = 5.6307605632659737116724499473837 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.15 y[1] (analytic) = 0 y[1] (numeric) = 5.6313169974863063518647086280815 absolute error = 5.6313169974863063518647086280815 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.151 y[1] (analytic) = 0 y[1] (numeric) = 5.6318732260909278523355539193535 absolute error = 5.6318732260909278523355539193535 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.152 y[1] (analytic) = 0 y[1] (numeric) = 5.6324292494819679371644532899042 absolute error = 5.6324292494819679371644532899042 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.153 y[1] (analytic) = 0 y[1] (numeric) = 5.6329850680613723675239925225224 absolute error = 5.6329850680613723675239925225224 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.154 y[1] (analytic) = 0 y[1] (numeric) = 5.6335406822309031641009666805258 absolute error = 5.6335406822309031641009666805258 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1354.2MB, alloc=4.7MB, time=142.72 x[1] = 4.155 y[1] (analytic) = 0 y[1] (numeric) = 5.6340960923921388301683844399887 absolute error = 5.6340960923921388301683844399887 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.156 y[1] (analytic) = 0 y[1] (numeric) = 5.6346512989464745753064690545203 absolute error = 5.6346512989464745753064690545203 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.157 y[1] (analytic) = 0 y[1] (numeric) = 5.6352063022951225397707428679861 absolute error = 5.6352063022951225397707428679861 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.158 y[1] (analytic) = 0 y[1] (numeric) = 5.635761102839112019505285936844 absolute error = 5.635761102839112019505285936844 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.159 y[1] (analytic) = 0 y[1] (numeric) = 5.6363157009792896917992629676689 absolute error = 5.6363157009792896917992629676689 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.16 y[1] (analytic) = 0 y[1] (numeric) = 5.6368700971163198415848164169355 absolute error = 5.6368700971163198415848164169355 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.161 y[1] (analytic) = 0 y[1] (numeric) = 5.6374242916506845883744272391867 absolute error = 5.6374242916506845883744272391867 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.162 y[1] (analytic) = 0 y[1] (numeric) = 5.6379782849826841138358484063096 absolute error = 5.6379782849826841138358484063096 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.163 y[1] (analytic) = 0 y[1] (numeric) = 5.6385320775124368900027199547389 absolute error = 5.6385320775124368900027199547389 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.164 y[1] (analytic) = 0 y[1] (numeric) = 5.6390856696398799081189779489806 absolute error = 5.6390856696398799081189779489806 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.165 y[1] (analytic) = 0 y[1] (numeric) = 5.6396390617647689081151733788703 absolute error = 5.6396390617647689081151733788703 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1358.0MB, alloc=4.7MB, time=143.12 x[1] = 4.166 y[1] (analytic) = 0 y[1] (numeric) = 5.6401922542866786087148206344159 absolute error = 5.6401922542866786087148206344159 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.167 y[1] (analytic) = 0 y[1] (numeric) = 5.6407452476050029381688988259022 absolute error = 5.6407452476050029381688988259022 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.168 y[1] (analytic) = 0 y[1] (numeric) = 5.6412980421189552656166328381188 absolute error = 5.6412980421189552656166328381188 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.169 y[1] (analytic) = 0 y[1] (numeric) = 5.6418506382275686330706846260901 absolute error = 5.6418506382275686330706846260901 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.17 y[1] (analytic) = 0 y[1] (numeric) = 5.6424030363296959880248888755027 absolute error = 5.6424030363296959880248888755027 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.171 y[1] (analytic) = 0 y[1] (numeric) = 5.6429552368240104166826707641204 absolute error = 5.6429552368240104166826707641204 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.172 y[1] (analytic) = 0 y[1] (numeric) = 5.6435072401090053778042871708119 absolute error = 5.6435072401090053778042871708119 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.173 y[1] (analytic) = 0 y[1] (numeric) = 5.6440590465829949371710362863721 absolute error = 5.6440590465829949371710362863721 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.174 y[1] (analytic) = 0 y[1] (numeric) = 5.6446106566441140026645841850619 absolute error = 5.6446106566441140026645841850619 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.175 y[1] (analytic) = 0 y[1] (numeric) = 5.6451620706903185599595605176945 absolute error = 5.6451620706903185599595605176945 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.176 y[1] (analytic) = 0 y[1] (numeric) = 5.6457132891193859088275790861344 absolute error = 5.6457132891193859088275790861344 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.177 y[1] (analytic) = 0 y[1] (numeric) = 5.6462643123289149000508426552181 absolute error = 5.6462643123289149000508426552181 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1361.8MB, alloc=4.7MB, time=143.53 x[1] = 4.178 y[1] (analytic) = 0 y[1] (numeric) = 5.6468151407163261729434949513238 absolute error = 5.6468151407163261729434949513238 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.179 y[1] (analytic) = 0 y[1] (numeric) = 5.6473657746788623934788863870892 absolute error = 5.6473657746788623934788863870892 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.18 y[1] (analytic) = 0 y[1] (numeric) = 5.6479162146135884930209236390665 absolute error = 5.6479162146135884930209236390665 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.181 y[1] (analytic) = 0 y[1] (numeric) = 5.6484664609173919076576767893915 absolute error = 5.6484664609173919076576767893915 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.182 y[1] (analytic) = 0 y[1] (numeric) = 5.6490165139869828181354213237985 absolute error = 5.6490165139869828181354213237985 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.183 y[1] (analytic) = 0 y[1] (numeric) = 5.6495663742188943903912958565059 absolute error = 5.6495663742188943903912958565059 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.184 y[1] (analytic) = 0 y[1] (numeric) = 5.6501160420094830166827600276083 absolute error = 5.6501160420094830166827600276083 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.185 y[1] (analytic) = 0 y[1] (numeric) = 5.6506655177549285573120405906023 absolute error = 5.6506655177549285573120405906023 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.186 y[1] (analytic) = 0 y[1] (numeric) = 5.6512148018512345829437572765312 absolute error = 5.6512148018512345829437572765312 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.187 y[1] (analytic) = 0 y[1] (numeric) = 5.6517638946942286175139235869172 absolute error = 5.6517638946942286175139235869172 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.188 y[1] (analytic) = 0 y[1] (numeric) = 5.6523127966795623817285212301457 absolute error = 5.6523127966795623817285212301457 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1365.7MB, alloc=4.7MB, time=143.93 x[1] = 4.189 y[1] (analytic) = 0 y[1] (numeric) = 5.6528615082027120371498504752379 absolute error = 5.6528615082027120371498504752379 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.19 y[1] (analytic) = 0 y[1] (numeric) = 5.6534100296589784308688622529751 absolute error = 5.6534100296589784308688622529751 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.191 y[1] (analytic) = 0 y[1] (numeric) = 5.6539583614434873407616813870896 absolute error = 5.6539583614434873407616813870896 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.192 y[1] (analytic) = 0 y[1] (numeric) = 5.654506503951189721328533887693 absolute error = 5.654506503951189721328533887693 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.193 y[1] (analytic) = 0 y[1] (numeric) = 5.65505445757686195011329478524 absolute error = 5.65505445757686195011329478524 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.194 y[1] (analytic) = 0 y[1] (numeric) = 5.6556022227151060747018765261031 absolute error = 5.6556022227151060747018765261031 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.195 y[1] (analytic) = 0 y[1] (numeric) = 5.6561497997603500602976814902338 absolute error = 5.6561497997603500602976814902338 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.196 y[1] (analytic) = 0 y[1] (numeric) = 5.656697189106848037872345727383 absolute error = 5.656697189106848037872345727383 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.197 y[1] (analytic) = 0 y[1] (numeric) = 5.6572443911486805528900045409208 absolute error = 5.6572443911486805528900045409208 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.198 y[1] (analytic) = 0 y[1] (numeric) = 5.6577914062797548146033140774097 absolute error = 5.6577914062797548146033140774097 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.199 y[1] (analytic) = 0 y[1] (numeric) = 5.6583382348938049459194666057213 absolute error = 5.6583382348938049459194666057213 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.2 y[1] (analytic) = 0 y[1] (numeric) = 5.6588848773843922338344406916121 absolute error = 5.6588848773843922338344406916121 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1369.5MB, alloc=4.7MB, time=144.34 x[1] = 4.201 y[1] (analytic) = 0 y[1] (numeric) = 5.6594313341449053804337309922765 absolute error = 5.6594313341449053804337309922765 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.202 y[1] (analytic) = 0 y[1] (numeric) = 5.6599776055685607544578059104347 absolute error = 5.6599776055685607544578059104347 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.203 y[1] (analytic) = 0 y[1] (numeric) = 5.6605236920484026434305448589788 absolute error = 5.6605236920484026434305448589788 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.204 y[1] (analytic) = 0 y[1] (numeric) = 5.6610695939773035063489103950546 absolute error = 5.6610695939773035063489103950546 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.205 y[1] (analytic) = 0 y[1] (numeric) = 5.6616153117479642269321139866854 absolute error = 5.6616153117479642269321139866854 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.206 y[1] (analytic) = 0 y[1] (numeric) = 5.6621608457529143674285376756138 absolute error = 5.6621608457529143674285376756138 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.207 y[1] (analytic) = 0 y[1] (numeric) = 5.6627061963845124229786773969302 absolute error = 5.6627061963845124229786773969302 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.208 y[1] (analytic) = 0 y[1] (numeric) = 5.663251364034946076532377209244 absolute error = 5.663251364034946076532377209244 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.209 y[1] (analytic) = 0 y[1] (numeric) = 5.663796349096232454318627178611 absolute error = 5.663796349096232454318627178611 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.21 y[1] (analytic) = 0 y[1] (numeric) = 5.6643411519602183818662011451373 absolute error = 5.6643411519602183818662011451373 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.211 y[1] (analytic) = 0 y[1] (numeric) = 5.6648857730185806405734140831073 absolute error = 5.6648857730185806405734140831073 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.212 y[1] (analytic) = 0 y[1] (numeric) = 5.6654302126628262248252822436101 absolute error = 5.6654302126628262248252822436101 relative error = -1 % Correct digits = -1 memory used=1373.3MB, alloc=4.7MB, time=144.74 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.213 y[1] (analytic) = 0 y[1] (numeric) = 5.66597447128429259965637274294 absolute error = 5.66597447128429259965637274294 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.214 y[1] (analytic) = 0 y[1] (numeric) = 5.6665185492741479589576327304986 absolute error = 5.6665185492741479589576327304986 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.215 y[1] (analytic) = 0 y[1] (numeric) = 5.6670624470233914842254917365035 absolute error = 5.6670624470233914842254917365035 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.216 y[1] (analytic) = 0 y[1] (numeric) = 5.6676061649228536038515342624917 absolute error = 5.6676061649228536038515342624917 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.217 y[1] (analytic) = 0 y[1] (numeric) = 5.6681497033631962529510431363647 absolute error = 5.6681497033631962529510431363647 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.218 y[1] (analytic) = 0 y[1] (numeric) = 5.6686930627349131337287176085404 absolute error = 5.6686930627349131337287176085404 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.219 y[1] (analytic) = 0 y[1] (numeric) = 5.6692362434283299763798736166253 absolute error = 5.6692362434283299763798736166253 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.22 y[1] (analytic) = 0 y[1] (numeric) = 5.6697792458336048005254370928781 absolute error = 5.6697792458336048005254370928781 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.221 y[1] (analytic) = 0 y[1] (numeric) = 5.6703220703407281771790446315809 absolute error = 5.6703220703407281771790446315809 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.222 y[1] (analytic) = 0 y[1] (numeric) = 5.6708647173395234912445692722396 absolute error = 5.6708647173395234912445692722396 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.223 y[1] (analytic) = 0 y[1] (numeric) = 5.6714071872196472045423925892818 absolute error = 5.6714071872196472045423925892818 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1377.1MB, alloc=4.7MB, time=145.15 x[1] = 4.224 y[1] (analytic) = 0 y[1] (numeric) = 5.6719494803705891193627477095838 absolute error = 5.6719494803705891193627477095838 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.225 y[1] (analytic) = 0 y[1] (numeric) = 5.6724915971816726425444613057139 absolute error = 5.6724915971816726425444613057139 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.226 y[1] (analytic) = 0 y[1] (numeric) = 5.6730335380420550500774260352089 absolute error = 5.6730335380420550500774260352089 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.227 y[1] (analytic) = 0 y[1] (numeric) = 5.6735753033407277522271383144751 absolute error = 5.6735753033407277522271383144751 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.228 y[1] (analytic) = 0 y[1] (numeric) = 5.6741168934665165591796397300089 absolute error = 5.6741168934665165591796397300089 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.229 y[1] (analytic) = 0 y[1] (numeric) = 5.6746583088080819472052037995366 absolute error = 5.6746583088080819472052037995366 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.23 y[1] (analytic) = 0 y[1] (numeric) = 5.6751995497539193253391132013608 absolute error = 5.6751995497539193253391132013608 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.231 y[1] (analytic) = 0 y[1] (numeric) = 5.6757406166923593025778759916461 absolute error = 5.6757406166923593025778759916461 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.232 y[1] (analytic) = 0 y[1] (numeric) = 5.6762815100115679555892327265583 absolute error = 5.6762815100115679555892327265583 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.233 y[1] (analytic) = 0 y[1] (numeric) = 5.67682223009954709693430979907 absolute error = 5.67682223009954709693430979907 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.234 y[1] (analytic) = 0 y[1] (numeric) = 5.6773627773441345438002776888323 absolute error = 5.6773627773441345438002776888323 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.235 y[1] (analytic) = 0 y[1] (numeric) = 5.6779031521330043872418762077756 absolute error = 5.6779031521330043872418762077756 relative error = -1 % Correct digits = -1 h = 0.001 memory used=1380.9MB, alloc=4.7MB, time=145.55 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.236 y[1] (analytic) = 0 y[1] (numeric) = 5.6784433548536672619301722040094 absolute error = 5.6784433548536672619301722040094 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.237 y[1] (analytic) = 0 y[1] (numeric) = 5.6789833858934706164069185621277 absolute error = 5.6789833858934706164069185621277 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.238 y[1] (analytic) = 0 y[1] (numeric) = 5.6795232456395989838428867091701 absolute error = 5.6795232456395989838428867091701 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.239 y[1] (analytic) = 0 y[1] (numeric) = 5.680062934479074253298548202213 absolute error = 5.680062934479074253298548202213 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.24 y[1] (analytic) = 0 y[1] (numeric) = 5.6806024527987559414854843358557 absolute error = 5.6806024527987559414854843358557 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.241 y[1] (analytic) = 0 y[1] (numeric) = 5.6811418009853414650269060656955 absolute error = 5.6811418009853414650269060656955 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.242 y[1] (analytic) = 0 y[1] (numeric) = 5.6816809794253664132156698972376 absolute error = 5.6816809794253664132156698972376 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.243 y[1] (analytic) = 0 y[1] (numeric) = 5.6822199885052048212681787385338 absolute error = 5.6822199885052048212681787385338 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.244 y[1] (analytic) = 0 y[1] (numeric) = 5.6827588286110694440725600591731 absolute error = 5.6827588286110694440725600591731 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.245 y[1] (analytic) = 0 y[1] (numeric) = 5.6832975001290120304295170380312 absolute error = 5.6832975001290120304295170380312 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.246 y[1] (analytic) = 0 y[1] (numeric) = 5.6838360034449235977842517174065 absolute error = 5.6838360034449235977842517174065 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1384.7MB, alloc=4.7MB, time=145.95 x[1] = 4.247 y[1] (analytic) = 0 y[1] (numeric) = 5.6843743389445347074478625118078 absolute error = 5.6843743389445347074478625118078 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.248 y[1] (analytic) = 0 y[1] (numeric) = 5.6849125070134157403066217456893 absolute error = 5.6849125070134157403066217456893 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.249 y[1] (analytic) = 0 y[1] (numeric) = 5.685450508036977173017542215834 absolute error = 5.685450508036977173017542215834 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.25 y[1] (analytic) = 0 y[1] (numeric) = 5.6859883424004698546886450908457 absolute error = 5.6859883424004698546886450908457 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.251 y[1] (analytic) = 0 y[1] (numeric) = 5.6865260104889852840423447723031 absolute error = 5.6865260104889852840423447723031 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.252 y[1] (analytic) = 0 y[1] (numeric) = 5.6870635126874558870603696495335 absolute error = 5.6870635126874558870603696495335 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.253 y[1] (analytic) = 0 y[1] (numeric) = 5.6876008493806552951086409826639 absolute error = 5.6876008493806552951086409826639 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.254 y[1] (analytic) = 0 y[1] (numeric) = 5.6881380209531986235405354465767 absolute error = 5.6881380209531986235405354465767 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.255 y[1] (analytic) = 0 y[1] (numeric) = 5.6886750277895427507769601616212 absolute error = 5.6886750277895427507769601616212 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.256 y[1] (analytic) = 0 y[1] (numeric) = 5.6892118702739865978616723253897 absolute error = 5.6892118702739865978616723253897 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.257 y[1] (analytic) = 0 y[1] (numeric) = 5.6897485487906714084902788435341 absolute error = 5.6897485487906714084902788435341 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.258 y[1] (analytic) = 0 y[1] (numeric) = 5.690285063723581029511354636464 absolute error = 5.690285063723581029511354636464 relative error = -1 % Correct digits = -1 h = 0.001 memory used=1388.6MB, alloc=4.7MB, time=146.35 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.259 y[1] (analytic) = 0 y[1] (numeric) = 5.6908214154565421918981215727994 absolute error = 5.6908214154565421918981215727994 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.26 y[1] (analytic) = 0 y[1] (numeric) = 5.6913576043732247921891332496448 absolute error = 5.6913576043732247921891332496448 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.261 y[1] (analytic) = 0 y[1] (numeric) = 5.6918936308571421743964141040716 absolute error = 5.6918936308571421743964141040716 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.262 y[1] (analytic) = 0 y[1] (numeric) = 5.6924294952916514123795045996368 absolute error = 5.6924294952916514123795045996368 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.263 y[1] (analytic) = 0 y[1] (numeric) = 5.6929651980599535926838674862993 absolute error = 5.6929651980599535926838674862993 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.264 y[1] (analytic) = 0 y[1] (numeric) = 5.6935007395450940978421133817061 absolute error = 5.6935007395450940978421133817061 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.265 y[1] (analytic) = 0 y[1] (numeric) = 5.6940361201299628901365071664879 absolute error = 5.6940361201299628901365071664879 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.266 y[1] (analytic) = 0 y[1] (numeric) = 5.6945713401972947958212199259108 absolute error = 5.6945713401972947958212199259108 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.267 y[1] (analytic) = 0 y[1] (numeric) = 5.6951064001296697898027944049541 absolute error = 5.6951064001296697898027944049541 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.268 y[1] (analytic) = 0 y[1] (numeric) = 5.6956413003095132807772951736106 absolute error = 5.6956413003095132807772951736106 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.269 y[1] (analytic) = 0 y[1] (numeric) = 5.6961760411190963968226179239127 absolute error = 5.6961760411190963968226179239127 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1392.4MB, alloc=4.7MB, time=146.75 x[1] = 4.27 y[1] (analytic) = 0 y[1] (numeric) = 5.6967106229405362714444355398562 absolute error = 5.6967106229405362714444355398562 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.271 y[1] (analytic) = 0 y[1] (numeric) = 5.6972450461557963300742617960075 absolute error = 5.6972450461557963300742617960075 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.272 y[1] (analytic) = 0 y[1] (numeric) = 5.6977793111466865770181167501195 absolute error = 5.6977793111466865770181167501195 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.273 y[1] (analytic) = 0 y[1] (numeric) = 5.6983134182948638828542810995263 absolute error = 5.6983134182948638828542810995263 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.274 y[1] (analytic) = 0 y[1] (numeric) = 5.6988473679818322722786299704236 absolute error = 5.6988473679818322722786299704236 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.275 y[1] (analytic) = 0 y[1] (numeric) = 5.6993811605889432123960398033444 absolute error = 5.6993811605889432123960398033444 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.276 y[1] (analytic) = 0 y[1] (numeric) = 5.6999147964973959014563651871993 absolute error = 5.6999147964973959014563651871993 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.277 y[1] (analytic) = 0 y[1] (numeric) = 5.7004482760882375580334856781401 absolute error = 5.7004482760882375580334856781401 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.278 y[1] (analytic) = 0 y[1] (numeric) = 5.7009815997423637106459258182147 absolute error = 5.7009815997423637106459258182147 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.279 y[1] (analytic) = 0 y[1] (numeric) = 5.7015147678405184878175547422852 absolute error = 5.7015147678405184878175547422852 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.28 y[1] (analytic) = 0 y[1] (numeric) = 5.7020477807632949085768749299675 absolute error = 5.7020477807632949085768749299675 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.281 y[1] (analytic) = 0 y[1] (numeric) = 5.7025806388911351733934128223988 absolute error = 5.7025806388911351733934128223988 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 memory used=1396.2MB, alloc=4.7MB, time=147.15 TOP MAIN SOLVE Loop x[1] = 4.282 y[1] (analytic) = 0 y[1] (numeric) = 5.7031133426043309555497271814321 absolute error = 5.7031133426043309555497271814321 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.283 y[1] (analytic) = 0 y[1] (numeric) = 5.703645892283023692947554221376 absolute error = 5.703645892283023692947554221376 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.284 y[1] (analytic) = 0 y[1] (numeric) = 5.7041782883072048803466116906281 absolute error = 5.7041782883072048803466116906281 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.285 y[1] (analytic) = 0 y[1] (numeric) = 5.7047105310567163620345872224714 absolute error = 5.7047105310567163620345872224714 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.286 y[1] (analytic) = 0 y[1] (numeric) = 5.7052426209112506249268394108986 absolute error = 5.7052426209112506249268394108986 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.287 y[1] (analytic) = 0 y[1] (numeric) = 5.7057745582503510920943431985834 absolute error = 5.7057745582503510920943431985834 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.288 y[1] (analytic) = 0 y[1] (numeric) = 5.7063063434534124167184142900103 absolute error = 5.7063063434534124167184142900103 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.289 y[1] (analytic) = 0 y[1] (numeric) = 5.7068379768996807764707504232922 absolute error = 5.7068379768996807764707504232922 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.29 y[1] (analytic) = 0 y[1] (numeric) = 5.707369458968254168317330449326 absolute error = 5.707369458968254168317330449326 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.291 y[1] (analytic) = 0 y[1] (numeric) = 5.7079007900380827037447152766492 absolute error = 5.7079007900380827037447152766492 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.292 y[1] (analytic) = 0 y[1] (numeric) = 5.708431970487968904407297844643 absolute error = 5.708431970487968904407297844643 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1400.0MB, alloc=4.7MB, time=147.56 x[1] = 4.293 y[1] (analytic) = 0 y[1] (numeric) = 5.7089630006965679981940523865662 absolute error = 5.7089630006965679981940523865662 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.294 y[1] (analytic) = 0 y[1] (numeric) = 5.7094938810423882157133363372826 absolute error = 5.7094938810423882157133363372826 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.295 y[1] (analytic) = 0 y[1] (numeric) = 5.7100246119037910871943013284416 absolute error = 5.7100246119037910871943013284416 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.296 y[1] (analytic) = 0 y[1] (numeric) = 5.710555193658991739803472796278 absolute error = 5.710555193658991739803472796278 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.297 y[1] (analytic) = 0 y[1] (numeric) = 5.7110856266860591953750608040896 absolute error = 5.7110856266860591953750608040896 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.298 y[1] (analytic) = 0 y[1] (numeric) = 5.7116159113629166685535677528159 absolute error = 5.7116159113629166685535677528159 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.299 y[1] (analytic) = 0 y[1] (numeric) = 5.7121460480673418653472617189639 absolute error = 5.7121460480673418653472617189639 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.3 y[1] (analytic) = 0 y[1] (numeric) = 5.7126760371769672820910872193879 absolute error = 5.7126760371769672820910872193879 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.301 y[1] (analytic) = 0 y[1] (numeric) = 5.7132058790692805048175882571144 absolute error = 5.7132058790692805048175882571144 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.302 y[1] (analytic) = 0 y[1] (numeric) = 5.7137355741216245090344215514975 absolute error = 5.7137355741216245090344215514975 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.303 y[1] (analytic) = 0 y[1] (numeric) = 5.7142651227111979599070408994709 absolute error = 5.7142651227111979599070408994709 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.304 y[1] (analytic) = 0 y[1] (numeric) = 5.7147945252150555128451366525254 absolute error = 5.7147945252150555128451366525254 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 memory used=1403.8MB, alloc=4.7MB, time=147.96 TOP MAIN SOLVE Loop x[1] = 4.305 y[1] (analytic) = 0 y[1] (numeric) = 5.7153237820101081144914173262563 absolute error = 5.7153237820101081144914173262563 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.306 y[1] (analytic) = 0 y[1] (numeric) = 5.7158528934731233041113233858906 absolute error = 5.7158528934731233041113233858906 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.307 y[1] (analytic) = 0 y[1] (numeric) = 5.7163818599807255153822662720926 absolute error = 5.7163818599807255153822662720926 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.308 y[1] (analytic) = 0 y[1] (numeric) = 5.716910681909396378580988746551 absolute error = 5.716910681909396378580988746551 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.309 y[1] (analytic) = 0 y[1] (numeric) = 5.7174393596354750231676456463493 absolute error = 5.7174393596354750231676456463493 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.31 y[1] (analytic) = 0 y[1] (numeric) = 5.7179678935351583807652071399043 absolute error = 5.7179678935351583807652071399043 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.311 y[1] (analytic) = 0 y[1] (numeric) = 5.7184962839845014885327895753035 absolute error = 5.7184962839845014885327895753035 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.312 y[1] (analytic) = 0 y[1] (numeric) = 5.7190245313594177929315220041707 absolute error = 5.7190245313594177929315220041707 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.313 y[1] (analytic) = 0 y[1] (numeric) = 5.7195526360356794538815594507215 absolute error = 5.7195526360356794538815594507215 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.314 y[1] (analytic) = 0 y[1] (numeric) = 5.7200805983889176493088569764261 absolute error = 5.7200805983889176493088569764261 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.315 y[1] (analytic) = 0 y[1] (numeric) = 5.7206084187946228800803215656514 absolute error = 5.7206084187946228800803215656514 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1407.6MB, alloc=4.7MB, time=148.37 x[1] = 4.316 y[1] (analytic) = 0 y[1] (numeric) = 5.7211360976281452753259618268063 absolute error = 5.7211360976281452753259618268063 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.317 y[1] (analytic) = 0 y[1] (numeric) = 5.7216636352646948981466584668353 absolute error = 5.7216636352646948981466584668353 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.318 y[1] (analytic) = 0 y[1] (numeric) = 5.722191032079342051706181454389 absolute error = 5.722191032079342051706181454389 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.319 y[1] (analytic) = 0 y[1] (numeric) = 5.7227182884470175857060827386304 absolute error = 5.7227182884470175857060827386304 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.32 y[1] (analytic) = 0 y[1] (numeric) = 5.7232454047425132032420963363917 absolute error = 5.7232454047425132032420963363917 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.321 y[1] (analytic) = 0 y[1] (numeric) = 5.7237723813404817680406805402752 absolute error = 5.7237723813404817680406805402752 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.322 y[1] (analytic) = 0 y[1] (numeric) = 5.7242992186154376120743399342648 absolute error = 5.7242992186154376120743399342648 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.323 y[1] (analytic) = 0 y[1] (numeric) = 5.7248259169417568435543678314788 absolute error = 5.7248259169417568435543678314788 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.324 y[1] (analytic) = 0 y[1] (numeric) = 5.7253524766936776552996526708298 absolute error = 5.7253524766936776552996526708298 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.325 y[1] (analytic) = 0 y[1] (numeric) = 5.7258788982453006334801948255496 absolute error = 5.7258788982453006334801948255496 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.326 y[1] (analytic) = 0 y[1] (numeric) = 5.7264051819705890667339831867737 absolute error = 5.7264051819705890667339831867737 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.327 y[1] (analytic) = 0 y[1] (numeric) = 5.7269313282433692556558837896458 absolute error = 5.7269313282433692556558837896458 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1411.4MB, alloc=4.7MB, time=148.78 x[1] = 4.328 y[1] (analytic) = 0 y[1] (numeric) = 5.7274573374373308226571956476823 absolute error = 5.7274573374373308226571956476823 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.329 y[1] (analytic) = 0 y[1] (numeric) = 5.7279832099260270221945318534192 absolute error = 5.7279832099260270221945318534192 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.33 y[1] (analytic) = 0 y[1] (numeric) = 5.7285089460828750513666868896325 absolute error = 5.7285089460828750513666868896325 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.331 y[1] (analytic) = 0 y[1] (numeric) = 5.7290345462811563608781539756631 absolute error = 5.7290345462811563608781539756631 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.332 y[1] (analytic) = 0 y[1] (numeric) = 5.7295600108940169663679591475795 absolute error = 5.7295600108940169663679591475795 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.333 y[1] (analytic) = 0 y[1] (numeric) = 5.7300853402944677601024816390555 absolute error = 5.7300853402944677601024816390555 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.334 y[1] (analytic) = 0 y[1] (numeric) = 5.7306105348553848230309329919192 absolute error = 5.7306105348553848230309329919192 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.335 y[1] (analytic) = 0 y[1] (numeric) = 5.7311355949495097372021701813221 absolute error = 5.7311355949495097372021701813221 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.336 y[1] (analytic) = 0 y[1] (numeric) = 5.7316605209494498985415208903785 absolute error = 5.7316605209494498985415208903785 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.337 y[1] (analytic) = 0 y[1] (numeric) = 5.7321853132276788299863019129137 absolute error = 5.7321853132276788299863019129137 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.338 y[1] (analytic) = 0 y[1] (numeric) = 5.7327099721565364949787145006264 absolute error = 5.7327099721565364949787145006264 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1415.3MB, alloc=4.7MB, time=149.18 x[1] = 4.339 y[1] (analytic) = 0 y[1] (numeric) = 5.7332344981082296113148033025018 absolute error = 5.7332344981082296113148033025018 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.34 y[1] (analytic) = 0 y[1] (numeric) = 5.7337588914548319653481683696924 absolute error = 5.7337588914548319653481683696924 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.341 y[1] (analytic) = 0 y[1] (numeric) = 5.7342831525682847265471225183016 absolute error = 5.7342831525682847265471225183016 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.342 y[1] (analytic) = 0 y[1] (numeric) = 5.7348072818203967624039891555464 absolute error = 5.7348072818203967624039891555464 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.343 y[1] (analytic) = 0 y[1] (numeric) = 5.7353312795828449536952384816302 absolute error = 5.7353312795828449536952384816302 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.344 y[1] (analytic) = 0 y[1] (numeric) = 5.7358551462271745100911627803038 absolute error = 5.7358551462271745100911627803038 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.345 y[1] (analytic) = 0 y[1] (numeric) = 5.7363788821247992861137943055309 absolute error = 5.7363788821247992861137943055309 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.346 y[1] (analytic) = 0 y[1] (numeric) = 5.7369024876470020974417720598784 absolute error = 5.7369024876470020974417720598784 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.347 y[1] (analytic) = 0 y[1] (numeric) = 5.7374259631649350375608665422196 absolute error = 5.7374259631649350375608665422196 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.348 y[1] (analytic) = 0 y[1] (numeric) = 5.7379493090496197947588743180479 absolute error = 5.7379493090496197947588743180479 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.349 y[1] (analytic) = 0 y[1] (numeric) = 5.738472525671947969463597035145 absolute error = 5.738472525671947969463597035145 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.35 y[1] (analytic) = 0 y[1] (numeric) = 5.7389956134026813919226222705126 absolute error = 5.7389956134026813919226222705126 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1419.1MB, alloc=4.7MB, time=149.58 x[1] = 4.351 y[1] (analytic) = 0 y[1] (numeric) = 5.7395185726124524402236263513498 absolute error = 5.7395185726124524402236263513498 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.352 y[1] (analytic) = 0 y[1] (numeric) = 5.7400414036717643586539220434275 absolute error = 5.7400414036717643586539220434275 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.353 y[1] (analytic) = 0 y[1] (numeric) = 5.7405641069509915763979767444635 absolute error = 5.7405641069509915763979767444635 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.354 y[1] (analytic) = 0 y[1] (numeric) = 5.7410866828203800265716295580244 absolute error = 5.7410866828203800265716295580244 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.355 y[1] (analytic) = 0 y[1] (numeric) = 5.74160913165004746559173835506 absolute error = 5.74160913165004746559173835506 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.356 y[1] (analytic) = 0 y[1] (numeric) = 5.7421314538099837928799906554047 absolute error = 5.7421314538099837928799906554047 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.357 y[1] (analytic) = 0 y[1] (numeric) = 5.742653649670051370899614880439 absolute error = 5.742653649670051370899614880439 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.358 y[1] (analytic) = 0 y[1] (numeric) = 5.7431757195999853455237312405869 absolute error = 5.7431757195999853455237312405869 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.359 y[1] (analytic) = 0 y[1] (numeric) = 5.7436976639693939667340842274163 absolute error = 5.7436976639693939667340842274163 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.36 y[1] (analytic) = 0 y[1] (numeric) = 5.7442194831477589096489013797985 absolute error = 5.7442194831477589096489013797985 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.361 y[1] (analytic) = 0 y[1] (numeric) = 5.744741177504435595878625686857 absolute error = 5.744741177504435595878625686857 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1422.9MB, alloc=4.7MB, time=149.98 x[1] = 4.362 y[1] (analytic) = 0 y[1] (numeric) = 5.7452627474086535152082716772836 absolute error = 5.7452627474086535152082716772836 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.363 y[1] (analytic) = 0 y[1] (numeric) = 5.7457841932295165476051579250095 absolute error = 5.7457841932295165476051579250095 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.364 y[1] (analytic) = 0 y[1] (numeric) = 5.7463055153360032855507713751788 absolute error = 5.7463055153360032855507713751788 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.365 y[1] (analytic) = 0 y[1] (numeric) = 5.7468267140969673566955215618689 absolute error = 5.7468267140969673566955215618689 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.366 y[1] (analytic) = 0 y[1] (numeric) = 5.7473477898811377468351454500273 absolute error = 5.7473477898811377468351454500273 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.367 y[1] (analytic) = 0 y[1] (numeric) = 5.7478687430571191232075262886329 absolute error = 5.7478687430571191232075262886329 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.368 y[1] (analytic) = 0 y[1] (numeric) = 5.7483895739933921581086925101335 absolute error = 5.7483895739933921581086925101335 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.369 y[1] (analytic) = 0 y[1] (numeric) = 5.7489102830583138528267653527438 absolute error = 5.7489102830583138528267653527438 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.37 y[1] (analytic) = 0 y[1] (numeric) = 5.7494308706201178618926265172066 absolute error = 5.7494308706201178618926265172066 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.371 y[1] (analytic) = 0 y[1] (numeric) = 5.7499513370469148176460797981008 absolute error = 5.7499513370469148176460797981008 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.372 y[1] (analytic) = 0 y[1] (numeric) = 5.7504716827066926551162832517247 absolute error = 5.7504716827066926551162832517247 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.373 y[1] (analytic) = 0 y[1] (numeric) = 5.7509919079673169372152310779707 absolute error = 5.7509919079673169372152310779707 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1426.7MB, alloc=4.7MB, time=150.39 x[1] = 4.374 y[1] (analytic) = 0 y[1] (numeric) = 5.7515120131965311802430670024323 absolute error = 5.7515120131965311802430670024323 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.375 y[1] (analytic) = 0 y[1] (numeric) = 5.7520319987619571797040135472337 absolute error = 5.7520319987619571797040135472337 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.376 y[1] (analytic) = 0 y[1] (numeric) = 5.7525518650310953364317041747336 absolute error = 5.7525518650310953364317041747336 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.377 y[1] (analytic) = 0 y[1] (numeric) = 5.7530716123713249830227078773202 absolute error = 5.7530716123713249830227078773202 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.378 y[1] (analytic) = 0 y[1] (numeric) = 5.7535912411499047105770383689704 absolute error = 5.7535912411499047105770383689704 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.379 y[1] (analytic) = 0 y[1] (numeric) = 5.7541107517339726957444426100818 absolute error = 5.7541107517339726957444426100818 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.38 y[1] (analytic) = 0 y[1] (numeric) = 5.7546301444905470280752659662947 absolute error = 5.7546301444905470280752659662947 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.381 y[1] (analytic) = 0 y[1] (numeric) = 5.755149419786526037674693864584 absolute error = 5.755149419786526037674693864584 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.382 y[1] (analytic) = 0 y[1] (numeric) = 5.7556685779886886231591723658163 absolute error = 5.7556685779886886231591723658163 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.383 y[1] (analytic) = 0 y[1] (numeric) = 5.7561876194636945799138126222194 absolute error = 5.7561876194636945799138126222194 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.384 y[1] (analytic) = 0 y[1] (numeric) = 5.7567065445780849286495867307872 absolute error = 5.7567065445780849286495867307872 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1430.5MB, alloc=4.7MB, time=150.79 x[1] = 4.385 y[1] (analytic) = 0 y[1] (numeric) = 5.7572253536982822442591250295416 absolute error = 5.7572253536982822442591250295416 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.386 y[1] (analytic) = 0 y[1] (numeric) = 5.7577440471905909849699274127709 absolute error = 5.7577440471905909849699274127709 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.387 y[1] (analytic) = 0 y[1] (numeric) = 5.7582626254211978217938037638635 absolute error = 5.7582626254211978217938037638635 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.388 y[1] (analytic) = 0 y[1] (numeric) = 5.7587810887561719682713611201361 absolute error = 5.7587810887561719682713611201361 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.389 y[1] (analytic) = 0 y[1] (numeric) = 5.7592994375614655105103576931147 absolute error = 5.7592994375614655105103576931147 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.39 y[1] (analytic) = 0 y[1] (numeric) = 5.7598176722029137375167463700461 absolute error = 5.7598176722029137375167463700461 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.391 y[1] (analytic) = 0 y[1] (numeric) = 5.7603357930462354718172328179978 absolute error = 5.7603357930462354718172328179978 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.392 y[1] (analytic) = 0 y[1] (numeric) = 5.7608538004570334003721758007222 absolute error = 5.7608538004570334003721758007222 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.393 y[1] (analytic) = 0 y[1] (numeric) = 5.7613716948007944057776598005189 absolute error = 5.7613716948007944057776598005189 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.394 y[1] (analytic) = 0 y[1] (numeric) = 5.7618894764428898977555725126077 absolute error = 5.7618894764428898977555725126077 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.395 y[1] (analytic) = 0 y[1] (numeric) = 5.7624071457485761449305222480205 absolute error = 5.7624071457485761449305222480205 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.396 y[1] (analytic) = 0 y[1] (numeric) = 5.7629247030829946068924327427189 absolute error = 5.7629247030829946068924327427189 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1434.3MB, alloc=4.7MB, time=151.20 x[1] = 4.397 y[1] (analytic) = 0 y[1] (numeric) = 5.7634421488111722665436553255383 absolute error = 5.7634421488111722665436553255383 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.398 y[1] (analytic) = 0 y[1] (numeric) = 5.7639594832980219627294408456384 absolute error = 5.7639594832980219627294408456384 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.399 y[1] (analytic) = 0 y[1] (numeric) = 5.7644767069083427231506162013937 absolute error = 5.7644767069083427231506162013937 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.4 y[1] (analytic) = 0 y[1] (numeric) = 5.7649938200068200975573127470782 absolute error = 5.7649938200068200975573127470782 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.401 y[1] (analytic) = 0 y[1] (numeric) = 5.7655108229580264912225962812724 absolute error = 5.7655108229580264912225962812724 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.402 y[1] (analytic) = 0 y[1] (numeric) = 5.7660277161264214986948507416437 absolute error = 5.7660277161264214986948507416437 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.403 y[1] (analytic) = 0 y[1] (numeric) = 5.7665444998763522378277701446103 absolute error = 5.7665444998763522378277701446103 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.404 y[1] (analytic) = 0 y[1] (numeric) = 5.7670611745720536840868157153831 absolute error = 5.7670611745720536840868157153831 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.405 y[1] (analytic) = 0 y[1] (numeric) = 5.7675777405776490051309975539851 absolute error = 5.7675777405776490051309975539851 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.406 y[1] (analytic) = 0 y[1] (numeric) = 5.768094198257149895668842576061 absolute error = 5.768094198257149895668842576061 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.407 y[1] (analytic) = 0 y[1] (numeric) = 5.7686105479744569125874128535989 absolute error = 5.7686105479744569125874128535989 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1438.1MB, alloc=4.7MB, time=151.60 x[1] = 4.408 y[1] (analytic) = 0 y[1] (numeric) = 5.7691267900933598103532408600903 absolute error = 5.7691267900933598103532408600903 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.409 y[1] (analytic) = 0 y[1] (numeric) = 5.7696429249775378766840504971362 absolute error = 5.7696429249775378766840504971362 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.41 y[1] (analytic) = 0 y[1] (numeric) = 5.7701589529905602684901351450601 absolute error = 5.7701589529905602684901351450601 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.411 y[1] (analytic) = 0 y[1] (numeric) = 5.7706748744958863480842663387071 absolute error = 5.7706748744958863480842663387071 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.412 y[1] (analytic) = 0 y[1] (numeric) = 5.7711906898568660196590090212777 absolute error = 5.7711906898568660196590090212777 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.413 y[1] (analytic) = 0 y[1] (numeric) = 5.771706399436740066030321673759 absolute error = 5.771706399436740066030321673759 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.414 y[1] (analytic) = 0 y[1] (numeric) = 5.7722220035986404856463219552677 absolute error = 5.7722220035986404856463219552677 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.415 y[1] (analytic) = 0 y[1] (numeric) = 5.7727375027055908298601008203951 absolute error = 5.7727375027055908298601008203951 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.416 y[1] (analytic) = 0 y[1] (numeric) = 5.7732528971205065404654704034384 absolute error = 5.7732528971205065404654704034384 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.417 y[1] (analytic) = 0 y[1] (numeric) = 5.7737681872061952874945332762088 absolute error = 5.7737681872061952874945332762088 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.418 y[1] (analytic) = 0 y[1] (numeric) = 5.7742833733253573072759629959084 absolute error = 5.7742833733253573072759629959084 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.419 y[1] (analytic) = 0 y[1] (numeric) = 5.7747984558405857407528881623648 absolute error = 5.7747984558405857407528881623648 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1442.0MB, alloc=4.7MB, time=152.01 x[1] = 4.42 y[1] (analytic) = 0 y[1] (numeric) = 5.7753134351143669720592744996912 absolute error = 5.7753134351143669720592744996912 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.421 y[1] (analytic) = 0 y[1] (numeric) = 5.7758283115090809673537017661919 absolute error = 5.7758283115090809673537017661919 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.422 y[1] (analytic) = 0 y[1] (numeric) = 5.7763430853870016139094345780527 absolute error = 5.7763430853870016139094345780527 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.423 y[1] (analytic) = 0 y[1] (numeric) = 5.7768577571102970594596885070322 absolute error = 5.7768577571102970594596885070322 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.424 y[1] (analytic) = 0 y[1] (numeric) = 5.7773723270410300517969950799934 absolute error = 5.7773723270410300517969950799934 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.425 y[1] (analytic) = 0 y[1] (numeric) = 5.7778867955411582786255715686835 absolute error = 5.7778867955411582786255715686835 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.426 y[1] (analytic) = 0 y[1] (numeric) = 5.7784011629725347076656037116644 absolute error = 5.7784011629725347076656037116644 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.427 y[1] (analytic) = 0 y[1] (numeric) = 5.7789154296969079270083517567212 absolute error = 5.7789154296969079270083517567212 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.428 y[1] (analytic) = 0 y[1] (numeric) = 5.7794295960759224857209924514107 absolute error = 5.7794295960759224857209924514107 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.429 y[1] (analytic) = 0 y[1] (numeric) = 5.7799436624711192347001118416585 absolute error = 5.7799436624711192347001118416585 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.43 y[1] (analytic) = 0 y[1] (numeric) = 5.7804576292439356677727659634565 absolute error = 5.7804576292439356677727659634565 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.431 y[1] (analytic) = 0 y[1] (numeric) = 5.7809714967557062630440287307484 absolute error = 5.7809714967557062630440287307484 relative error = -1 % Correct digits = -1 h = 0.001 memory used=1445.8MB, alloc=4.7MB, time=152.41 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.432 y[1] (analytic) = 0 y[1] (numeric) = 5.7814852653676628244899485335081 absolute error = 5.7814852653676628244899485335081 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.433 y[1] (analytic) = 0 y[1] (numeric) = 5.7819989354409348237948372638114 absolute error = 5.7819989354409348237948372638114 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.434 y[1] (analytic) = 0 y[1] (numeric) = 5.78251250733654974243181768436 absolute error = 5.78251250733654974243181768436 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.435 y[1] (analytic) = 0 y[1] (numeric) = 5.7830259814154334139855572434383 absolute error = 5.7830259814154334139855572434383 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.436 y[1] (analytic) = 0 y[1] (numeric) = 5.7835393580384103667161186226539 absolute error = 5.7835393580384103667161186226539 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.437 y[1] (analytic) = 0 y[1] (numeric) = 5.7840526375662041663628594790287 absolute error = 5.7840526375662041663628594790287 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.438 y[1] (analytic) = 0 y[1] (numeric) = 5.7845658203594377591873160110568 absolute error = 5.7845658203594377591873160110568 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.439 y[1] (analytic) = 0 y[1] (numeric) = 5.785078906778633815254007139226 absolute error = 5.785078906778633815254007139226 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.44 y[1] (analytic) = 0 y[1] (numeric) = 5.7855918971842150719480982451977 absolute error = 5.7855918971842150719480982451977 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.441 y[1] (analytic) = 0 y[1] (numeric) = 5.7861047919365046777288655603522 absolute error = 5.7861047919365046777288655603522 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.442 y[1] (analytic) = 0 y[1] (numeric) = 5.7866175913957265361179044337249 absolute error = 5.7866175913957265361179044337249 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1449.6MB, alloc=4.7MB, time=152.82 x[1] = 4.443 y[1] (analytic) = 0 y[1] (numeric) = 5.7871302959220056499210268414715 absolute error = 5.7871302959220056499210268414715 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.444 y[1] (analytic) = 0 y[1] (numeric) = 5.7876429058753684656827956249078 absolute error = 5.7876429058753684656827956249078 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.445 y[1] (analytic) = 0 y[1] (numeric) = 5.7881554216157432183726450618562 absolute error = 5.7881554216157432183726450618562 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.446 y[1] (analytic) = 0 y[1] (numeric) = 5.7886678435029602763015394864936 absolute error = 5.7886678435029602763015394864936 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.447 y[1] (analytic) = 0 y[1] (numeric) = 5.789180171896752486268123776128 absolute error = 5.789180171896752486268123776128 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.448 y[1] (analytic) = 0 y[1] (numeric) = 5.7896924071567555189333216193211 absolute error = 5.7896924071567555189333216193211 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.449 y[1] (analytic) = 0 y[1] (numeric) = 5.7902045496425082144223395685206 absolute error = 5.7902045496425082144223395685206 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.45 y[1] (analytic) = 0 y[1] (numeric) = 5.790716599713452928153036961856 absolute error = 5.790716599713452928153036961856 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.451 y[1] (analytic) = 0 y[1] (numeric) = 5.7912285577289358768896238729824 absolute error = 5.7912285577289358768896238729824 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.452 y[1] (analytic) = 0 y[1] (numeric) = 5.7917404240482074850206513148181 absolute error = 5.7917404240482074850206513148181 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.453 y[1] (analytic) = 0 y[1] (numeric) = 5.7922521990304227310602599827097 absolute error = 5.7922521990304227310602599827097 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.454 y[1] (analytic) = 0 y[1] (numeric) = 5.7927638830346414943716558749612 absolute error = 5.7927638830346414943716558749612 relative error = -1 % Correct digits = -1 h = 0.001 memory used=1453.4MB, alloc=4.7MB, time=153.22 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.455 y[1] (analytic) = 0 y[1] (numeric) = 5.793275476419828902111783173779 absolute error = 5.793275476419828902111783173779 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.456 y[1] (analytic) = 0 y[1] (numeric) = 5.7937869795448556763961668075043 absolute error = 5.7937869795448556763961668075043 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.457 y[1] (analytic) = 0 y[1] (numeric) = 5.7942983927684984816828991455183 absolute error = 5.7942983927684984816828991455183 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.458 y[1] (analytic) = 0 y[1] (numeric) = 5.7948097164494402723747473004123 absolute error = 5.7948097164494402723747473004123 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.459 y[1] (analytic) = 0 y[1] (numeric) = 5.7953209509462706406383595279017 absolute error = 5.7953209509462706406383595279017 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.46 y[1] (analytic) = 0 y[1] (numeric) = 5.7958320966174861644395512235293 absolute error = 5.7958320966174861644395512235293 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.461 y[1] (analytic) = 0 y[1] (numeric) = 5.796343153821490755793653016436 absolute error = 5.796343153821490755793653016436 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.462 y[1] (analytic) = 0 y[1] (numeric) = 5.7968541229165960092299054543741 absolute error = 5.7968541229165960092299054543741 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.463 y[1] (analytic) = 0 y[1] (numeric) = 5.7973650042610215504688867606929 absolute error = 5.7973650042610215504688867606929 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.464 y[1] (analytic) = 0 y[1] (numeric) = 5.7978757982128953853119621232266 absolute error = 5.7978757982128953853119621232266 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.465 y[1] (analytic) = 0 y[1] (numeric) = 5.7983865051302542487417449468617 absolute error = 5.7983865051302542487417449468617 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1457.2MB, alloc=4.7MB, time=153.62 x[1] = 4.466 y[1] (analytic) = 0 y[1] (numeric) = 5.7988971253710439542325624660432 absolute error = 5.7988971253710439542325624660432 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.467 y[1] (analytic) = 0 y[1] (numeric) = 5.7994076592931197432699200705888 absolute error = 5.7994076592931197432699200705888 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.468 y[1] (analytic) = 0 y[1] (numeric) = 5.7999181072542466350779606479175 absolute error = 5.7999181072542466350779606479175 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.469 y[1] (analytic) = 0 y[1] (numeric) = 5.8004284696120997765539171871505 absolute error = 5.8004284696120997765539171871505 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.47 y[1] (analytic) = 0 y[1] (numeric) = 5.8009387467242647924085588255042 absolute error = 5.8009387467242647924085588255042 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.471 y[1] (analytic) = 0 y[1] (numeric) = 5.8014489389482381355116324449638 absolute error = 5.8014489389482381355116324449638 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.472 y[1] (analytic) = 0 y[1] (numeric) = 5.8019590466414274374413038473901 absolute error = 5.8019590466414274374413038473901 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.473 y[1] (analytic) = 0 y[1] (numeric) = 5.802469070161151859236604448969 absolute error = 5.802469070161151859236604448969 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.474 y[1] (analytic) = 0 y[1] (numeric) = 5.8029790098646424423518913402557 absolute error = 5.8029790098646424423518913402557 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.475 y[1] (analytic) = 0 y[1] (numeric) = 5.8034888661090424598123304559871 absolute error = 5.8034888661090424598123304559871 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.476 y[1] (analytic) = 0 y[1] (numeric) = 5.8039986392514077675694144893309 absolute error = 5.8039986392514077675694144893309 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1461.0MB, alloc=4.7MB, time=154.04 x[1] = 4.477 y[1] (analytic) = 0 y[1] (numeric) = 5.8045083296487071560555290683018 absolute error = 5.8045083296487071560555290683018 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.478 y[1] (analytic) = 0 y[1] (numeric) = 5.8050179376578227019365825876979 absolute error = 5.8050179376578227019365825876979 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.479 y[1] (analytic) = 0 y[1] (numeric) = 5.8055274636355501200617169580888 absolute error = 5.8055274636355501200617169580888 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.48 y[1] (analytic) = 0 y[1] (numeric) = 5.8060369079385991156091183941132 absolute error = 5.8060369079385991156091183941132 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.481 y[1] (analytic) = 0 y[1] (numeric) = 5.8065462709235937364269492176152 absolute error = 5.8065462709235937364269492176152 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.482 y[1] (analytic) = 0 y[1] (numeric) = 5.8070555529470727255684234969536 absolute error = 5.8070555529470727255684234969536 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.483 y[1] (analytic) = 0 y[1] (numeric) = 5.8075647543654898740200511821595 absolute error = 5.8075647543654898740200511821595 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.484 y[1] (analytic) = 0 y[1] (numeric) = 5.8080738755352143736220772264799 absolute error = 5.8080738755352143736220772264799 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.485 y[1] (analytic) = 0 y[1] (numeric) = 5.8085829168125311701801440082289 absolute error = 5.8085829168125311701801440082289 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.486 y[1] (analytic) = 0 y[1] (numeric) = 5.8090918785536413167672071827668 absolute error = 5.8090918785536413167672071827668 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.487 y[1] (analytic) = 0 y[1] (numeric) = 5.8096007611146623272147369028319 absolute error = 5.8096007611146623272147369028319 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.488 y[1] (analytic) = 0 y[1] (numeric) = 5.8101095648516285297922381463598 absolute error = 5.8101095648516285297922381463598 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1464.8MB, alloc=4.7MB, time=154.44 x[1] = 4.489 y[1] (analytic) = 0 y[1] (numeric) = 5.8106182901204914210741256843284 absolute error = 5.8106182901204914210741256843284 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.49 y[1] (analytic) = 0 y[1] (numeric) = 5.8111269372771200199929910070657 absolute error = 5.8111269372771200199929910070657 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.491 y[1] (analytic) = 0 y[1] (numeric) = 5.8116355066773012220783003058383 absolute error = 5.8116355066773012220783003058383 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.492 y[1] (analytic) = 0 y[1] (numeric) = 5.8121439986767401538795643774016 absolute error = 5.8121439986767401538795643774016 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.493 y[1] (analytic) = 0 y[1] (numeric) = 5.8126524136310605275730230825305 absolute error = 5.8126524136310605275730230825305 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.494 y[1] (analytic) = 0 y[1] (numeric) = 5.8131607518958049957508887453552 absolute error = 5.8131607518958049957508887453552 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.495 y[1] (analytic) = 0 y[1] (numeric) = 5.813669013826435506392194628598 absolute error = 5.813669013826435506392194628598 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.496 y[1] (analytic) = 0 y[1] (numeric) = 5.8141771997783336580142963605355 absolute error = 5.8141771997783336580142963605355 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.497 y[1] (analytic) = 0 y[1] (numeric) = 5.8146853101068010550040759226924 absolute error = 5.8146853101068010550040759226924 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.498 y[1] (analytic) = 0 y[1] (numeric) = 5.8151933451670596631278995329042 absolute error = 5.8151933451670596631278995329042 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.499 y[1] (analytic) = 0 y[1] (numeric) = 5.8157013053142521652193824764564 absolute error = 5.8157013053142521652193824764564 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1468.7MB, alloc=4.7MB, time=154.84 x[1] = 4.5 y[1] (analytic) = 0 y[1] (numeric) = 5.8162091909034423170440156485202 absolute error = 5.8162091909034423170440156485202 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.501 y[1] (analytic) = 0 y[1] (numeric) = 5.816717002289615303339710274044 absolute error = 5.816717002289615303339710274044 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.502 y[1] (analytic) = 0 y[1] (numeric) = 5.8172247398276780940323189666304 absolute error = 5.8172247398276780940323189666304 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.503 y[1] (analytic) = 0 y[1] (numeric) = 5.8177324038724598006251929757183 absolute error = 5.8177324038724598006251929757183 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.504 y[1] (analytic) = 0 y[1] (numeric) = 5.8182399947787120327618371515972 absolute error = 5.8182399947787120327618371515972 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.505 y[1] (analytic) = 0 y[1] (numeric) = 5.8187475129011092549607258303994 absolute error = 5.8187475129011092549607258303994 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.506 y[1] (analytic) = 0 y[1] (numeric) = 5.8192549585942491435213445062419 absolute error = 5.8192549585942491435213445062419 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.507 y[1] (analytic) = 0 y[1] (numeric) = 5.8197623322126529436005238151157 absolute error = 5.8197623322126529436005238151157 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.508 y[1] (analytic) = 0 y[1] (numeric) = 5.8202696341107658264581340049456 absolute error = 5.8202696341107658264581340049456 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.509 y[1] (analytic) = 0 y[1] (numeric) = 5.8207768646429572468712097084581 absolute error = 5.8207768646429572468712097084581 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.51 y[1] (analytic) = 0 y[1] (numeric) = 5.8212840241635213007155764700974 absolute error = 5.8212840241635213007155764700974 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.511 y[1] (analytic) = 0 y[1] (numeric) = 5.8217911130266770827140521052141 absolute error = 5.8217911130266770827140521052141 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1472.5MB, alloc=4.7MB, time=155.24 x[1] = 4.512 y[1] (analytic) = 0 y[1] (numeric) = 5.8222981315865690443502975891132 absolute error = 5.8222981315865690443502975891132 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.513 y[1] (analytic) = 0 y[1] (numeric) = 5.8228050801972673519473937852802 absolute error = 5.8228050801972673519473937852802 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.514 y[1] (analytic) = 0 y[1] (numeric) = 5.8233119592127682449102219262083 absolute error = 5.8233119592127682449102219262083 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.515 y[1] (analytic) = 0 y[1] (numeric) = 5.8238187689869943941307273567115 absolute error = 5.8238187689869943941307273567115 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.516 y[1] (analytic) = 0 y[1] (numeric) = 5.8243255098737952605551476384327 absolute error = 5.8243255098737952605551476384327 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.517 y[1] (analytic) = 0 y[1] (numeric) = 5.8248321822269474539122876954314 absolute error = 5.8248321822269474539122876954314 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.518 y[1] (analytic) = 0 y[1] (numeric) = 5.8253387864001550916019262542612 absolute error = 5.8253387864001550916019262542612 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.519 y[1] (analytic) = 0 y[1] (numeric) = 5.8258453227470501577424393978162 absolute error = 5.8258453227470501577424393978162 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.52 y[1] (analytic) = 0 y[1] (numeric) = 5.826351791621192862376728610435 absolute error = 5.826351791621192862376728610435 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.521 y[1] (analytic) = 0 y[1] (numeric) = 5.8268581933760720008355422422962 absolute error = 5.8268581933760720008355422422962 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.522 y[1] (analytic) = 0 y[1] (numeric) = 5.8273645283651053132572808640127 absolute error = 5.8273645283651053132572808640127 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1476.3MB, alloc=4.7MB, time=155.64 x[1] = 4.523 y[1] (analytic) = 0 y[1] (numeric) = 5.8278707969416398442633785175364 absolute error = 5.8278707969416398442633785175364 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.524 y[1] (analytic) = 0 y[1] (numeric) = 5.8283769994589523027883533970059 absolute error = 5.8283769994589523027883533970059 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.525 y[1] (analytic) = 0 y[1] (numeric) = 5.8288831362702494220636230130123 absolute error = 5.8288831362702494220636230130123 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.526 y[1] (analytic) = 0 y[1] (numeric) = 5.8293892077286683197541804059125 absolute error = 5.8293892077286683197541804059125 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.527 y[1] (analytic) = 0 y[1] (numeric) = 5.8298952141872768582472294782807 absolute error = 5.8298952141872768582472294782807 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.528 y[1] (analytic) = 0 y[1] (numeric) = 5.8304011559990740050918790133581 absolute error = 5.8304011559990740050918790133581 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.529 y[1] (analytic) = 0 y[1] (numeric) = 5.8309070335169901935889964354275 absolute error = 5.8309070335169901935889964354275 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.53 y[1] (analytic) = 0 y[1] (numeric) = 5.8314128470938876835303238494028 absolute error = 5.8314128470938876835303238494028 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.531 y[1] (analytic) = 0 y[1] (numeric) = 5.8319185970825609220859603705804 absolute error = 5.8319185970825609220859603705804 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.532 y[1] (analytic) = 0 y[1] (numeric) = 5.8324242838357369048393162214403 absolute error = 5.8324242838357369048393162214403 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.533 y[1] (analytic) = 0 y[1] (numeric) = 5.8329299077060755369686455306125 absolute error = 5.8329299077060755369686455306125 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.534 y[1] (analytic) = 0 y[1] (numeric) = 5.8334354690461699945742662196311 absolute error = 5.8334354690461699945742662196311 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 memory used=1480.1MB, alloc=4.7MB, time=156.04 TOP MAIN SOLVE Loop x[1] = 4.535 y[1] (analytic) = 0 y[1] (numeric) = 5.8339409682085470861505768058766 absolute error = 5.8339409682085470861505768058766 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.536 y[1] (analytic) = 0 y[1] (numeric) = 5.8344464055456676142019813851627 absolute error = 5.8344464055456676142019813851627 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.537 y[1] (analytic) = 0 y[1] (numeric) = 5.8349517814099267370018354847406 absolute error = 5.8349517814099267370018354847406 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.538 y[1] (analytic) = 0 y[1] (numeric) = 5.8354570961536543304935268970784 absolute error = 5.8354570961536543304935268970784 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.539 y[1] (analytic) = 0 y[1] (numeric) = 5.8359623501291153503328070166136 absolute error = 5.8359623501291153503328070166136 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.54 y[1] (analytic) = 0 y[1] (numeric) = 5.8364675436885101940704896057756 absolute error = 5.8364675436885101940704896057756 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.541 y[1] (analytic) = 0 y[1] (numeric) = 5.8369726771839750634746353129216 absolute error = 5.8369726771839750634746353129216 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.542 y[1] (analytic) = 0 y[1] (numeric) = 5.8374777509675823269913416534278 absolute error = 5.8374777509675823269913416534278 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.543 y[1] (analytic) = 0 y[1] (numeric) = 5.8379827653913408823432595460153 absolute error = 5.8379827653913408823432595460153 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.544 y[1] (analytic) = 0 y[1] (numeric) = 5.8384877208071965192649588694721 absolute error = 5.8384877208071965192649588694721 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.545 y[1] (analytic) = 0 y[1] (numeric) = 5.838992617567032282374266870246 absolute error = 5.838992617567032282374266870246 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1483.9MB, alloc=4.7MB, time=156.45 x[1] = 4.546 y[1] (analytic) = 0 y[1] (numeric) = 5.8394974560226688341787046089329 absolute error = 5.8394974560226688341787046089329 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.547 y[1] (analytic) = 0 y[1] (numeric) = 5.8400022365258648182161479834622 absolute error = 5.8400022365258648182161479834622 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.548 y[1] (analytic) = 0 y[1] (numeric) = 5.8405069594283172223288412087798 absolute error = 5.8405069594283172223288412087798 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.549 y[1] (analytic) = 0 y[1] (numeric) = 5.8410116250816617420698919670558 absolute error = 5.8410116250816617420698919670558 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.55 y[1] (analytic) = 0 y[1] (numeric) = 5.8415162338374731442413787688808 absolute error = 5.8415162338374731442413787688808 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.551 y[1] (analytic) = 0 y[1] (numeric) = 5.8420207860472656305632023845724 absolute error = 5.8420207860472656305632023845724 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.552 y[1] (analytic) = 0 y[1] (numeric) = 5.8425252820624932014718145155758 absolute error = 5.8425252820624932014718145155758 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.553 y[1] (analytic) = 0 y[1] (numeric) = 5.8430297222345500200479581790148 absolute error = 5.8430297222345500200479581790148 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.554 y[1] (analytic) = 0 y[1] (numeric) = 5.8435341069147707760725555737254 absolute error = 5.8435341069147707760725555737254 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.555 y[1] (analytic) = 0 y[1] (numeric) = 5.8440384364544310502098804835781 absolute error = 5.8440384364544310502098804835781 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.556 y[1] (analytic) = 0 y[1] (numeric) = 5.8445427112047476783171535535653 absolute error = 5.8445427112047476783171535535653 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1487.7MB, alloc=4.7MB, time=156.85 x[1] = 4.557 y[1] (analytic) = 0 y[1] (numeric) = 5.8450469315168791158797000459969 absolute error = 5.8450469315168791158797000459969 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.558 y[1] (analytic) = 0 y[1] (numeric) = 5.8455510977419258025708109481975 absolute error = 5.8455510977419258025708109481975 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.559 y[1] (analytic) = 0 y[1] (numeric) = 5.8460552102309305269354495593409 absolute error = 5.8460552102309305269354495593409 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.56 y[1] (analytic) = 0 y[1] (numeric) = 5.8465592693348787911969469324784 absolute error = 5.8465592693348787911969469324784 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.561 y[1] (analytic) = 0 y[1] (numeric) = 5.8470632754046991761858307884198 absolute error = 5.8470632754046991761858307884198 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.562 y[1] (analytic) = 0 y[1] (numeric) = 5.8475672287912637063899337509039 absolute error = 5.8475672287912637063899337509039 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.563 y[1] (analytic) = 0 y[1] (numeric) = 5.8480711298453882151249279774458 absolute error = 5.8480711298453882151249279774458 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.564 y[1] (analytic) = 0 y[1] (numeric) = 5.8485749789178327098244344773692 absolute error = 5.8485749789178327098244344773692 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.565 y[1] (analytic) = 0 y[1] (numeric) = 5.8490787763593017374488566178174 absolute error = 5.8490787763593017374488566178174 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.566 y[1] (analytic) = 0 y[1] (numeric) = 5.8495825225204447500120885199885 absolute error = 5.8495825225204447500120885199885 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.567 y[1] (analytic) = 0 y[1] (numeric) = 5.8500862177518564702252502414474 absolute error = 5.8500862177518564702252502414474 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.568 y[1] (analytic) = 0 y[1] (numeric) = 5.8505898624040772572566028261367 absolute error = 5.8505898624040772572566028261367 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1491.6MB, alloc=4.7MB, time=157.25 x[1] = 4.569 y[1] (analytic) = 0 y[1] (numeric) = 5.8510934568275934726067974816271 absolute error = 5.8510934568275934726067974816271 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.57 y[1] (analytic) = 0 y[1] (numeric) = 5.8515970013728378460986143132192 absolute error = 5.8515970013728378460986143132192 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.571 y[1] (analytic) = 0 y[1] (numeric) = 5.8521004963901898419803472067285 absolute error = 5.8521004963901898419803472067285 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.572 y[1] (analytic) = 0 y[1] (numeric) = 5.8526039422299760251419926061462 absolute error = 5.8526039422299760251419926061462 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.573 y[1] (analytic) = 0 y[1] (numeric) = 5.8531073392424704274434010788754 absolute error = 5.8531073392424704274434010788754 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.574 y[1] (analytic) = 0 y[1] (numeric) = 5.8536106877778949141535516998841 absolute error = 5.8536106877778949141535516998841 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.575 y[1] (analytic) = 0 y[1] (numeric) = 5.8541139881864195505001104168955 absolute error = 5.8541139881864195505001104168955 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.576 y[1] (analytic) = 0 y[1] (numeric) = 5.8546172408181629683284346816475 absolute error = 5.8546172408181629683284346816475 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.577 y[1] (analytic) = 0 y[1] (numeric) = 5.8551204460231927328691877472942 absolute error = 5.8551204460231927328691877472942 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.578 y[1] (analytic) = 0 y[1] (numeric) = 5.8556236041515257096137271391909 absolute error = 5.8556236041515257096137271391909 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.579 y[1] (analytic) = 0 y[1] (numeric) = 5.8561267155531284312964329055952 absolute error = 5.8561267155531284312964329055952 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1495.4MB, alloc=4.7MB, time=157.65 x[1] = 4.58 y[1] (analytic) = 0 y[1] (numeric) = 5.8566297805779174649831423462299 absolute error = 5.8566297805779174649831423462299 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.581 y[1] (analytic) = 0 y[1] (numeric) = 5.8571327995757597792648590001859 absolute error = 5.8571327995757597792648590001859 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.582 y[1] (analytic) = 0 y[1] (numeric) = 5.8576357728964731115559047502888 absolute error = 5.8576357728964731115559047502888 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.583 y[1] (analytic) = 0 y[1] (numeric) = 5.858138700889826335495684968814 absolute error = 5.858138700889826335495684968814 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.584 y[1] (analytic) = 0 y[1] (numeric) = 5.8586415839055398284532376893045 absolute error = 5.8586415839055398284532376893045 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.585 y[1] (analytic) = 0 y[1] (numeric) = 5.8591444222932858391337388412219 absolute error = 5.8591444222932858391337388412219 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.586 y[1] (analytic) = 0 y[1] (numeric) = 5.8596472164026888552861366282453 absolute error = 5.8596472164026888552861366282453 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.587 y[1] (analytic) = 0 y[1] (numeric) = 5.8601499665833259715110891672143 absolute error = 5.8601499665833259715110891672143 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.588 y[1] (analytic) = 0 y[1] (numeric) = 5.8606526731847272571683805329972 absolute error = 5.8606526731847272571683805329972 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.589 y[1] (analytic) = 0 y[1] (numeric) = 5.8611553365563761243829913749447 absolute error = 5.8611553365563761243829913749447 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.59 y[1] (analytic) = 0 y[1] (numeric) = 5.8616579570477096961490012830645 absolute error = 5.8616579570477096961490012830645 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.591 y[1] (analytic) = 0 y[1] (numeric) = 5.8621605350081191745305010866176 absolute error = 5.8621605350081191745305010866176 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 memory used=1499.2MB, alloc=4.7MB, time=158.04 TOP MAIN SOLVE Loop x[1] = 4.592 y[1] (analytic) = 0 y[1] (numeric) = 5.8626630707869502089586942644922 absolute error = 5.8626630707869502089586942644922 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.593 y[1] (analytic) = 0 y[1] (numeric) = 5.8631655647335032646243676354527 absolute error = 5.8631655647335032646243676354527 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.594 y[1] (analytic) = 0 y[1] (numeric) = 5.8636680171970339909649124771876 absolute error = 5.8636680171970339909649124771876 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.595 y[1] (analytic) = 0 y[1] (numeric) = 5.8641704285267535902450781959856 absolute error = 5.8641704285267535902450781959856 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.596 y[1] (analytic) = 0 y[1] (numeric) = 5.8646727990718291862306416338589 absolute error = 5.8646727990718291862306416338589 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.597 y[1] (analytic) = 0 y[1] (numeric) = 5.8651751291813841929541760569922 absolute error = 5.8651751291813841929541760569922 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.598 y[1] (analytic) = 0 y[1] (numeric) = 5.8656774192044986835721048185371 absolute error = 5.8656774192044986835721048185371 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.599 y[1] (analytic) = 0 y[1] (numeric) = 5.8661796694902097593122256299782 absolute error = 5.8661796694902097593122256299782 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.6 y[1] (analytic) = 0 y[1] (numeric) = 5.8666818803875119185108923085791 absolute error = 5.8666818803875119185108923085791 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.601 y[1] (analytic) = 0 y[1] (numeric) = 5.8671840522453574257390417937609 absolute error = 5.8671840522453574257390417937609 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.602 y[1] (analytic) = 0 y[1] (numeric) = 5.8676861854126566810162551426801 absolute error = 5.8676861854126566810162551426801 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1503.0MB, alloc=4.7MB, time=158.44 x[1] = 4.603 y[1] (analytic) = 0 y[1] (numeric) = 5.8681882802382785891120421247439 absolute error = 5.8681882802382785891120421247439 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.604 y[1] (analytic) = 0 y[1] (numeric) = 5.8686903370710509289335399363393 absolute error = 5.8686903370710509289335399363393 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.605 y[1] (analytic) = 0 y[1] (numeric) = 5.8691923562597607229988174506431 absolute error = 5.8691923562597607229988174506431 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.606 y[1] (analytic) = 0 y[1] (numeric) = 5.8696943381531546069949773030303 absolute error = 5.8696943381531546069949773030303 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.607 y[1] (analytic) = 0 y[1] (numeric) = 5.8701962830999391994202489903017 absolute error = 5.8701962830999391994202489903017 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.608 y[1] (analytic) = 0 y[1] (numeric) = 5.8706981914487814713092670317058 absolute error = 5.8706981914487814713092670317058 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.609 y[1] (analytic) = 0 y[1] (numeric) = 5.8712000635483091160407291015345 absolute error = 5.8712000635483091160407291015345 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.61 y[1] (analytic) = 0 y[1] (numeric) = 5.8717018997471109192266298969254 absolute error = 5.8717018997471109192266298969254 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.611 y[1] (analytic) = 0 y[1] (numeric) = 5.8722037003937371286822673503983 absolute error = 5.8722037003937371286822673503983 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.612 y[1] (analytic) = 0 y[1] (numeric) = 5.872705465836699824476218634597 absolute error = 5.872705465836699824476218634597 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.613 y[1] (analytic) = 0 y[1] (numeric) = 5.8732071964244732890594842366867 absolute error = 5.8732071964244732890594842366867 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1506.8MB, alloc=4.7MB, time=158.84 x[1] = 4.614 y[1] (analytic) = 0 y[1] (numeric) = 5.8737088925054943774729992018802 absolute error = 5.8737088925054943774729992018802 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.615 y[1] (analytic) = 0 y[1] (numeric) = 5.8742105544281628876327114596235 absolute error = 5.8742105544281628876327114596235 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.616 y[1] (analytic) = 0 y[1] (numeric) = 5.8747121825408419306914279520646 absolute error = 5.8747121825408419306914279520646 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.617 y[1] (analytic) = 0 y[1] (numeric) = 5.875213777191858301476630082557 absolute error = 5.875213777191858301476630082557 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.618 y[1] (analytic) = 0 y[1] (numeric) = 5.8757153387295028490034607921071 absolute error = 5.8757153387295028490034607921071 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.619 y[1] (analytic) = 0 y[1] (numeric) = 5.8762168675020308470620863538613 absolute error = 5.8762168675020308470620863538613 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.62 y[1] (analytic) = 0 y[1] (numeric) = 5.876718363857662364878636749945 absolute error = 5.876718363857662364878636749945 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.621 y[1] (analytic) = 0 y[1] (numeric) = 5.8772198281445826378489292612056 absolute error = 5.8772198281445826378489292612056 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.622 y[1] (analytic) = 0 y[1] (numeric) = 5.8777212607109424383441806586757 absolute error = 5.8777212607109424383441806586757 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.623 y[1] (analytic) = 0 y[1] (numeric) = 5.8782226619048584465879141358601 absolute error = 5.8782226619048584465879141358601 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.624 y[1] (analytic) = 0 y[1] (numeric) = 5.8787240320744136216032678632559 absolute error = 5.8787240320744136216032678632559 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.625 y[1] (analytic) = 0 y[1] (numeric) = 5.8792253715676575722299127808398 absolute error = 5.8792253715676575722299127808398 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 memory used=1510.6MB, alloc=4.7MB, time=159.24 TOP MAIN SOLVE Loop x[1] = 4.626 y[1] (analytic) = 0 y[1] (numeric) = 5.8797266807326069282097879705994 absolute error = 5.8797266807326069282097879705994 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.627 y[1] (analytic) = 0 y[1] (numeric) = 5.8802279599172457113408626695402 absolute error = 5.8802279599172457113408626695402 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.628 y[1] (analytic) = 0 y[1] (numeric) = 5.8807292094695257066981346939701 absolute error = 5.8807292094695257066981346939701 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.629 y[1] (analytic) = 0 y[1] (numeric) = 5.881230429737366833921075748245 absolute error = 5.881230429737366833921075748245 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.63 y[1] (analytic) = 0 y[1] (numeric) = 5.8817316210686575185667347855474 absolute error = 5.8817316210686575185667347855474 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.631 y[1] (analytic) = 0 y[1] (numeric) = 5.8822327838112550635277112746719 absolute error = 5.8822327838112550635277112746719 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.632 y[1] (analytic) = 0 y[1] (numeric) = 5.8827339183129860205142109051937 absolute error = 5.8827339183129860205142109051937 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.633 y[1] (analytic) = 0 y[1] (numeric) = 5.883235024921646561599396933808 absolute error = 5.883235024921646561599396933808 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.634 y[1] (analytic) = 0 y[1] (numeric) = 5.8837361039850028508272510370413 absolute error = 5.8837361039850028508272510370413 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.635 y[1] (analytic) = 0 y[1] (numeric) = 5.8842371558507914158821581899497 absolute error = 5.8842371558507914158821581899497 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.636 y[1] (analytic) = 0 y[1] (numeric) = 5.8847381808667195198194307368352 absolute error = 5.8847381808667195198194307368352 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1514.4MB, alloc=4.7MB, time=159.65 x[1] = 4.637 y[1] (analytic) = 0 y[1] (numeric) = 5.8852391793804655328559874584242 absolute error = 5.8852391793804655328559874584242 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.638 y[1] (analytic) = 0 y[1] (numeric) = 5.8857401517396793042204040703634 absolute error = 5.8857401517396793042204040703634 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.639 y[1] (analytic) = 0 y[1] (numeric) = 5.8862410982919825340615522102938 absolute error = 5.8862410982919825340615522102938 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.64 y[1] (analytic) = 0 y[1] (numeric) = 5.8867420193849691454150445851649 absolute error = 5.8867420193849691454150445851649 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.641 y[1] (analytic) = 0 y[1] (numeric) = 5.8872429153662056562267045568431 absolute error = 5.8872429153662056562267045568431 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.642 y[1] (analytic) = 0 y[1] (numeric) = 5.8877437865832315514322790424534 absolute error = 5.8877437865832315514322790424534 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.643 y[1] (analytic) = 0 y[1] (numeric) = 5.8882446333835596550926141962669 absolute error = 5.8882446333835596550926141962669 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.644 y[1] (analytic) = 0 y[1] (numeric) = 5.8887454561146765025835139223086 absolute error = 5.8887454561146765025835139223086 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.645 y[1] (analytic) = 0 y[1] (numeric) = 5.8892462551240427128395018412106 absolute error = 5.8892462551240427128395018412106 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.646 y[1] (analytic) = 0 y[1] (numeric) = 5.8897470307590933606507079011703 absolute error = 5.8897470307590933606507079011703 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.647 y[1] (analytic) = 0 y[1] (numeric) = 5.8902477833672383490121013811914 absolute error = 5.8902477833672383490121013811914 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1518.3MB, alloc=4.7MB, time=160.05 x[1] = 4.648 y[1] (analytic) = 0 y[1] (numeric) = 5.8907485132958627815242925850906 absolute error = 5.8907485132958627815242925850906 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.649 y[1] (analytic) = 0 y[1] (numeric) = 5.8912492208923273348451260670347 absolute error = 5.8912492208923273348451260670347 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.65 y[1] (analytic) = 0 y[1] (numeric) = 5.8917499065039686311912887636389 absolute error = 5.8917499065039686311912887636389 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.651 y[1] (analytic) = 0 y[1] (numeric) = 5.8922505704780996108891569339006 absolute error = 5.8922505704780996108891569339006 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.652 y[1] (analytic) = 0 y[1] (numeric) = 5.8927512131620099049741063264649 absolute error = 5.8927512131620099049741063264649 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.653 y[1] (analytic) = 0 y[1] (numeric) = 5.8932518349029662078375105039169 absolute error = 5.8932518349029662078375105039169 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.654 y[1] (analytic) = 0 y[1] (numeric) = 5.8937524360482126499206527559707 absolute error = 5.8937524360482126499206527559707 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.655 y[1] (analytic) = 0 y[1] (numeric) = 5.8942530169449711704547775275724 absolute error = 5.8942530169449711704547775275724 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.656 y[1] (analytic) = 0 y[1] (numeric) = 5.8947535779404418902465077740584 absolute error = 5.8947535779404418902465077740584 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.657 y[1] (analytic) = 0 y[1] (numeric) = 5.8952541193818034845078551336024 absolute error = 5.8952541193818034845078551336024 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.658 y[1] (analytic) = 0 y[1] (numeric) = 5.8957546416162135557300502772523 absolute error = 5.8957546416162135557300502772523 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.659 y[1] (analytic) = 0 y[1] (numeric) = 5.8962551449908090066004212588901 absolute error = 5.8962551449908090066004212588901 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1522.1MB, alloc=4.7MB, time=160.45 x[1] = 4.66 y[1] (analytic) = 0 y[1] (numeric) = 5.8967556298527064129615481414555 absolute error = 5.8967556298527064129615481414555 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.661 y[1] (analytic) = 0 y[1] (numeric) = 5.8972560965490023968119226217428 absolute error = 5.8972560965490023968119226217428 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.662 y[1] (analytic) = 0 y[1] (numeric) = 5.8977565454267739993473418140218 absolute error = 5.8977565454267739993473418140218 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.663 y[1] (analytic) = 0 y[1] (numeric) = 5.8982569768330790540422657826354 absolute error = 5.8982569768330790540422657826354 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.664 y[1] (analytic) = 0 y[1] (numeric) = 5.8987573911149565597703688355979 absolute error = 5.8987573911149565597703688355979 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.665 y[1] (analytic) = 0 y[1] (numeric) = 5.8992577886194270539635150050503 absolute error = 5.8992577886194270539635150050503 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.666 y[1] (analytic) = 0 y[1] (numeric) = 5.8997581696934929858083885462239 absolute error = 5.8997581696934929858083885462239 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.667 y[1] (analytic) = 0 y[1] (numeric) = 5.9002585346841390894800106843226 absolute error = 5.9002585346841390894800106843226 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.668 y[1] (analytic) = 0 y[1] (numeric) = 5.9007588839383327574113742284521 absolute error = 5.9007588839383327574113742284521 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.669 y[1] (analytic) = 0 y[1] (numeric) = 5.9012592178030244135984280534034 absolute error = 5.9012592178030244135984280534034 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.67 y[1] (analytic) = 0 y[1] (numeric) = 5.901759536625147886939643823736 absolute error = 5.901759536625147886939643823736 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1525.9MB, alloc=4.7MB, time=160.85 x[1] = 4.671 y[1] (analytic) = 0 y[1] (numeric) = 5.9022598407516207846093977002025 absolute error = 5.9022598407516207846093977002025 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.672 y[1] (analytic) = 0 y[1] (numeric) = 5.9027601305293448654644001261105 absolute error = 5.9027601305293448654644001261105 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.673 y[1] (analytic) = 0 y[1] (numeric) = 5.903260406305206413482407140727 absolute error = 5.903260406305206413482407140727 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.674 y[1] (analytic) = 0 y[1] (numeric) = 5.9037606684260766112324470082996 absolute error = 5.9037606684260766112324470082996 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.675 y[1] (analytic) = 0 y[1] (numeric) = 5.904260917238811913375796284687 absolute error = 5.904260917238811913375796284687 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.676 y[1] (analytic) = 0 y[1] (numeric) = 5.90476115309025442019693976897 absolute error = 5.90476115309025442019693976897 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.677 y[1] (analytic) = 0 y[1] (numeric) = 5.9052613763272322511637491047418 absolute error = 5.9052613763272322511637491047418 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.678 y[1] (analytic) = 0 y[1] (numeric) = 5.90576158729655991851611510506 absolute error = 5.90576158729655991851611510506 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.679 y[1] (analytic) = 0 y[1] (numeric) = 5.9062617863450387008822691762762 absolute error = 5.9062617863450387008822691762762 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.68 y[1] (analytic) = 0 y[1] (numeric) = 5.9067619738194570169220295091452 absolute error = 5.9067619738194570169220295091452 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.681 y[1] (analytic) = 0 y[1] (numeric) = 5.9072621500665907989962079907532 absolute error = 5.9072621500665907989962079907532 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.682 y[1] (analytic) = 0 y[1] (numeric) = 5.9077623154332038668614140678903 absolute error = 5.9077623154332038668614140678903 relative error = -1 % Correct digits = -1 h = 0.001 memory used=1529.7MB, alloc=4.7MB, time=161.25 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.683 y[1] (analytic) = 0 y[1] (numeric) = 5.9082624702660483013894920615295 absolute error = 5.9082624702660483013894920615295 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.684 y[1] (analytic) = 0 y[1] (numeric) = 5.9087626149118648183108286930594 absolute error = 5.9087626149118648183108286930594 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.685 y[1] (analytic) = 0 y[1] (numeric) = 5.9092627497173831419807678358511 absolute error = 5.9092627497173831419807678358511 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.686 y[1] (analytic) = 0 y[1] (numeric) = 5.9097628750293223791683697506218 absolute error = 5.9097628750293223791683697506218 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.687 y[1] (analytic) = 0 y[1] (numeric) = 5.9102629911943913928667522998848 absolute error = 5.9102629911943913928667522998848 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.688 y[1] (analytic) = 0 y[1] (numeric) = 5.9107630985592891761242518655512 absolute error = 5.9107630985592891761242518655512 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.689 y[1] (analytic) = 0 y[1] (numeric) = 5.9112631974707052258956419144702 absolute error = 5.9112631974707052258956419144702 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.69 y[1] (analytic) = 0 y[1] (numeric) = 5.9117632882753199169126473693602 absolute error = 5.9117632882753199169126473693602 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.691 y[1] (analytic) = 0 y[1] (numeric) = 5.9122633713198048755729931471955 absolute error = 5.9122633713198048755729931471955 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.692 y[1] (analytic) = 0 y[1] (numeric) = 5.9127634469508233538472254236704 absolute error = 5.9127634469508233538472254236704 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.693 y[1] (analytic) = 0 y[1] (numeric) = 5.9132635155150306032025443708608 absolute error = 5.9132635155150306032025443708608 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1533.5MB, alloc=4.8MB, time=161.65 x[1] = 4.694 y[1] (analytic) = 0 y[1] (numeric) = 5.9137635773590742485428872956509 absolute error = 5.9137635773590742485428872956509 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.695 y[1] (analytic) = 0 y[1] (numeric) = 5.9142636328295946621645012788768 absolute error = 5.9142636328295946621645012788768 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.696 y[1] (analytic) = 0 y[1] (numeric) = 5.9147636822732253377262445794729 absolute error = 5.9147636822732253377262445794729 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.697 y[1] (analytic) = 0 y[1] (numeric) = 5.9152637260365932642338562241767 absolute error = 5.9152637260365932642338562241767 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.698 y[1] (analytic) = 0 y[1] (numeric) = 5.915763764466319300037433351566 absolute error = 5.915763764466319300037433351566 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.699 y[1] (analytic) = 0 y[1] (numeric) = 5.9162637979090185468413560193579 absolute error = 5.9162637979090185468413560193579 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.7 y[1] (analytic) = 0 y[1] (numeric) = 5.9167638267113007237258993159985 absolute error = 5.9167638267113007237258993159985 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.701 y[1] (analytic) = 0 y[1] (numeric) = 5.9172638512197705411797727416126 absolute error = 5.9172638512197705411797727416126 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.702 y[1] (analytic) = 0 y[1] (numeric) = 5.9177638717810280751428269393633 absolute error = 5.9177638717810280751428269393633 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.703 y[1] (analytic) = 0 y[1] (numeric) = 5.9182638887416691410581679661931 absolute error = 5.9182638887416691410581679661931 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.704 y[1] (analytic) = 0 y[1] (numeric) = 5.9187639024482856679329193917815 absolute error = 5.9187639024482856679329193917815 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1537.3MB, alloc=4.8MB, time=162.04 x[1] = 4.705 y[1] (analytic) = 0 y[1] (numeric) = 5.9192639132474660724068726063553 absolute error = 5.9192639132474660724068726063553 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.706 y[1] (analytic) = 0 y[1] (numeric) = 5.9197639214857956328282658017314 absolute error = 5.9197639214857956328282658017314 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.707 y[1] (analytic) = 0 y[1] (numeric) = 5.9202639275098568633359321656534 absolute error = 5.9202639275098568633359321656534 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.708 y[1] (analytic) = 0 y[1] (numeric) = 5.920763931666229887947057897107 absolute error = 5.920763931666229887947057897107 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.709 y[1] (analytic) = 0 y[1] (numeric) = 5.9212639343014928146497907098585 absolute error = 5.9212639343014928146497907098585 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.71 y[1] (analytic) = 0 y[1] (numeric) = 5.9217639357622221094999395429648 absolute error = 5.9217639357622221094999395429648 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.711 y[1] (analytic) = 0 y[1] (numeric) = 5.9222639363949929707210062404403 absolute error = 5.9222639363949929707210062404403 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.712 y[1] (analytic) = 0 y[1] (numeric) = 5.9227639365463797028067899976482 absolute error = 5.9227639365463797028067899976482 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.713 y[1] (analytic) = 0 y[1] (numeric) = 5.9232639365629560906258053993013 absolute error = 5.9232639365629560906258053993013 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.714 y[1] (analytic) = 0 y[1] (numeric) = 5.9237639367912957735267548932148 absolute error = 5.9237639367912957735267548932148 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.715 y[1] (analytic) = 0 y[1] (numeric) = 5.9242639375779726194442965551506 absolute error = 5.9242639375779726194442965551506 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.716 y[1] (analytic) = 0 y[1] (numeric) = 5.9247639392695610990043480032282 absolute error = 5.9247639392695610990043480032282 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 memory used=1541.1MB, alloc=4.8MB, time=162.44 TOP MAIN SOLVE Loop x[1] = 4.717 y[1] (analytic) = 0 y[1] (numeric) = 5.9252639422126366596281673154516 absolute error = 5.9252639422126366596281673154516 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.718 y[1] (analytic) = 0 y[1] (numeric) = 5.9257639467537760996344517909154 absolute error = 5.9257639467537760996344517909154 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.719 y[1] (analytic) = 0 y[1] (numeric) = 5.9262639532395579423386953742055 absolute error = 5.9262639532395579423386953742055 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.72 y[1] (analytic) = 0 y[1] (numeric) = 5.9267639620165628101490455334015 absolute error = 5.9267639620165628101490455334015 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.721 y[1] (analytic) = 0 y[1] (numeric) = 5.927263973431373798657900344919 absolute error = 5.927263973431373798657900344919 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.722 y[1] (analytic) = 0 y[1] (numeric) = 5.9277639878305768507284864931989 absolute error = 5.9277639878305768507284864931989 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.723 y[1] (analytic) = 0 y[1] (numeric) = 5.9282640055607611305756588399609 absolute error = 5.9282640055607611305756588399609 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.724 y[1] (analytic) = 0 y[1] (numeric) = 5.9287640269685193978401621563865 absolute error = 5.9287640269685193978401621563865 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.725 y[1] (analytic) = 0 y[1] (numeric) = 5.9292640524004483816555955421848 absolute error = 5.9292640524004483816555955421848 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.726 y[1] (analytic) = 0 y[1] (numeric) = 5.9297640822031491547073199780231 absolute error = 5.9297640822031491547073199780231 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.727 y[1] (analytic) = 0 y[1] (numeric) = 5.930264116723227507282549372271 absolute error = 5.930264116723227507282549372271 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1545.0MB, alloc=4.8MB, time=162.84 x[1] = 4.728 y[1] (analytic) = 0 y[1] (numeric) = 5.9307641563072943213108653694148 absolute error = 5.9307641563072943213108653694148 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.729 y[1] (analytic) = 0 y[1] (numeric) = 5.9312642013019659443943960858484 absolute error = 5.9312642013019659443943960858484 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.73 y[1] (analytic) = 0 y[1] (numeric) = 5.9317642520538645638268988290328 absolute error = 5.9317642520538645638268988290328 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.731 y[1] (analytic) = 0 y[1] (numeric) = 5.9322643089096185806009867382495 absolute error = 5.9322643089096185806009867382495 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.732 y[1] (analytic) = 0 y[1] (numeric) = 5.9327643722158629834027391593394 absolute error = 5.9327643722158629834027391593394 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.733 y[1] (analytic) = 0 y[1] (numeric) = 5.9332644423192397225929354319349 absolute error = 5.9332644423192397225929354319349 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.734 y[1] (analytic) = 0 y[1] (numeric) = 5.9337645195663980841741516257424 absolute error = 5.9337645195663980841741516257424 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.735 y[1] (analytic) = 0 y[1] (numeric) = 5.934264604303995063742959612431 absolute error = 5.934264604303995063742959612431 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.736 y[1] (analytic) = 0 y[1] (numeric) = 5.9347646968786957404264677016188 absolute error = 5.9347646968786957404264677016188 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.737 y[1] (analytic) = 0 y[1] (numeric) = 5.9352647976371736508024419033295 absolute error = 5.9352647976371736508024419033295 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.738 y[1] (analytic) = 0 y[1] (numeric) = 5.935764906926111162802246705116 absolute error = 5.935764906926111162802246705116 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1548.8MB, alloc=4.8MB, time=163.23 x[1] = 4.739 y[1] (analytic) = 0 y[1] (numeric) = 5.9362650250921998495958440698127 absolute error = 5.9362650250921998495958440698127 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.74 y[1] (analytic) = 0 y[1] (numeric) = 5.9367651524821408634580891695909 absolute error = 5.9367651524821408634580891695909 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.741 y[1] (analytic) = 0 y[1] (numeric) = 5.9372652894426453096155611736455 absolute error = 5.9372652894426453096155611736455 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.742 y[1] (analytic) = 0 y[1] (numeric) = 5.9377654363204346200731672004414 absolute error = 5.9377654363204346200731672004414 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.743 y[1] (analytic) = 0 y[1] (numeric) = 5.938265593462240927419757330993 absolute error = 5.938265593462240927419757330993 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.744 y[1] (analytic) = 0 y[1] (numeric) = 5.9387657612148074386119883571397 absolute error = 5.9387657612148074386119883571397 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.745 y[1] (analytic) = 0 y[1] (numeric) = 5.9392659399248888087356737082195 absolute error = 5.9392659399248888087356737082195 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.746 y[1] (analytic) = 0 y[1] (numeric) = 5.9397661299392515147438567609237 absolute error = 5.9397661299392515147438567609237 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.747 y[1] (analytic) = 0 y[1] (numeric) = 5.9402663316046742291708444904479 absolute error = 5.9402663316046742291708444904479 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.748 y[1] (analytic) = 0 y[1] (numeric) = 5.9407665452679481938214381663339 absolute error = 5.9407665452679481938214381663339 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.749 y[1] (analytic) = 0 y[1] (numeric) = 5.9412667712758775934345975336218 absolute error = 5.9412667712758775934345975336218 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.75 y[1] (analytic) = 0 y[1] (numeric) = 5.9417670099752799293207746491104 absolute error = 5.9417670099752799293207746491104 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 memory used=1552.6MB, alloc=4.8MB, time=163.64 TOP MAIN SOLVE Loop x[1] = 4.751 y[1] (analytic) = 0 y[1] (numeric) = 5.9422672617129863929721532636477 absolute error = 5.9422672617129863929721532636477 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.752 y[1] (analytic) = 0 y[1] (numeric) = 5.9427675268358422396450293544505 absolute error = 5.9427675268358422396450293544505 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.753 y[1] (analytic) = 0 y[1] (numeric) = 5.9432678056907071619135681164786 absolute error = 5.9432678056907071619135681164786 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.754 y[1] (analytic) = 0 y[1] (numeric) = 5.9437680986244556631941724188672 absolute error = 5.9437680986244556631941724188672 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.755 y[1] (analytic) = 0 y[1] (numeric) = 5.9442684059839774312396974213528 absolute error = 5.9442684059839774312396974213528 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.756 y[1] (analytic) = 0 y[1] (numeric) = 5.9447687281161777116027457265119 absolute error = 5.9447687281161777116027457265119 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.757 y[1] (analytic) = 0 y[1] (numeric) = 5.9452690653679776810672771164674 absolute error = 5.9452690653679776810672771164674 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.758 y[1] (analytic) = 0 y[1] (numeric) = 5.945769418086314821047766587513 absolute error = 5.945769418086314821047766587513 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.759 y[1] (analytic) = 0 y[1] (numeric) = 5.9462697866181432909551440528499 absolute error = 5.9462697866181432909551440528499 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.76 y[1] (analytic) = 0 y[1] (numeric) = 5.9467701713104343015287487323362 absolute error = 5.9467701713104343015287487323362 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.761 y[1] (analytic) = 0 y[1] (numeric) = 5.9472705725101764881335308888079 absolute error = 5.9472705725101764881335308888079 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1556.4MB, alloc=4.8MB, time=164.04 x[1] = 4.762 y[1] (analytic) = 0 y[1] (numeric) = 5.9477709905643762840217332031494 absolute error = 5.9477709905643762840217332031494 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.763 y[1] (analytic) = 0 y[1] (numeric) = 5.9482714258200582935582837048677 absolute error = 5.9482714258200582935582837048677 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.764 y[1] (analytic) = 0 y[1] (numeric) = 5.9487718786242656654091317914602 absolute error = 5.9487718786242656654091317914602 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.765 y[1] (analytic) = 0 y[1] (numeric) = 5.9492723493240604656917584783618 absolute error = 5.9492723493240604656917584783618 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.766 y[1] (analytic) = 0 y[1] (numeric) = 5.9497728382665240510870916217162 absolute error = 5.9497728382665240510870916217162 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.767 y[1] (analytic) = 0 y[1] (numeric) = 5.950273345798757441912056448633 absolute error = 5.950273345798757441912056448633 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.768 y[1] (analytic) = 0 y[1] (numeric) = 5.9507738722678816951519913139777 absolute error = 5.9507738722678816951519913139777 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.769 y[1] (analytic) = 0 y[1] (numeric) = 5.9512744180210382774521581790861 absolute error = 5.9512744180210382774521581790861 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.77 y[1] (analytic) = 0 y[1] (numeric) = 5.9517749834053894380675768761069 absolute error = 5.9517749834053894380675768761069 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.771 y[1] (analytic) = 0 y[1] (numeric) = 5.9522755687681185817704117819541 absolute error = 5.9522755687681185817704117819541 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.772 y[1] (analytic) = 0 y[1] (numeric) = 5.9527761744564306417141390780955 absolute error = 5.9527761744564306417141390780955 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1560.2MB, alloc=4.8MB, time=164.44 x[1] = 4.773 y[1] (analytic) = 0 y[1] (numeric) = 5.9532768008175524522537223166154 absolute error = 5.9532768008175524522537223166154 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.774 y[1] (analytic) = 0 y[1] (numeric) = 5.9537774481987331217210235491718 absolute error = 5.9537774481987331217210235491718 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.775 y[1] (analytic) = 0 y[1] (numeric) = 5.9542781169472444051546768036209 absolute error = 5.9542781169472444051546768036209 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.776 y[1] (analytic) = 0 y[1] (numeric) = 5.9547788074103810769836502132037 absolute error = 5.9547788074103810769836502132037 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.777 y[1] (analytic) = 0 y[1] (numeric) = 5.955279519935461303663722615286 absolute error = 5.955279519935461303663722615286 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.778 y[1] (analytic) = 0 y[1] (numeric) = 5.9557802548698270162660999407122 absolute error = 5.9557802548698270162660999407122 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.779 y[1] (analytic) = 0 y[1] (numeric) = 5.9562810125608442830173962108762 absolute error = 5.9562810125608442830173962108762 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.78 y[1] (analytic) = 0 y[1] (numeric) = 5.9567817933559036817902034476335 absolute error = 5.9567817933559036817902034476335 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.781 y[1] (analytic) = 0 y[1] (numeric) = 5.9572825976024206725434742811751 absolute error = 5.9572825976024206725434742811751 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.782 y[1] (analytic) = 0 y[1] (numeric) = 5.9577834256478359697119405129579 absolute error = 5.9577834256478359697119405129579 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.783 y[1] (analytic) = 0 y[1] (numeric) = 5.9582842778396159145437903547418 absolute error = 5.9582842778396159145437903547418 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.784 y[1] (analytic) = 0 y[1] (numeric) = 5.9587851545252528473858265207193 absolute error = 5.9587851545252528473858265207193 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1564.0MB, alloc=4.8MB, time=164.84 x[1] = 4.785 y[1] (analytic) = 0 y[1] (numeric) = 5.9592860560522654799153267976388 absolute error = 5.9592860560522654799153267976388 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.786 y[1] (analytic) = 0 y[1] (numeric) = 5.959786982768199267317828157726 absolute error = 5.959786982768199267317828157726 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.787 y[1] (analytic) = 0 y[1] (numeric) = 5.9602879350206267804100549110911 absolute error = 5.9602879350206267804100549110911 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.788 y[1] (analytic) = 0 y[1] (numeric) = 5.9607889131571480777072108181818 absolute error = 5.9607889131571480777072108181818 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.789 y[1] (analytic) = 0 y[1] (numeric) = 5.9612899175253910774338544987005 absolute error = 5.9612899175253910774338544987005 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.79 y[1] (analytic) = 0 y[1] (numeric) = 5.9617909484730119294775768812511 absolute error = 5.9617909484730119294775768812511 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.791 y[1] (analytic) = 0 y[1] (numeric) = 5.9622920063476953872846988378191 absolute error = 5.9622920063476953872846988378191 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.792 y[1] (analytic) = 0 y[1] (numeric) = 5.9627930914971551796972065390164 absolute error = 5.9627930914971551796972065390164 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.793 y[1] (analytic) = 0 y[1] (numeric) = 5.9632942042691343827301414498452 absolute error = 5.9632942042691343827301414498452 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.794 y[1] (analytic) = 0 y[1] (numeric) = 5.9637953450114057912886612615513 absolute error = 5.9637953450114057912886612615513 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.795 y[1] (analytic) = 0 y[1] (numeric) = 5.9642965140717722908239874229493 absolute error = 5.9642965140717722908239874229493 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1567.8MB, alloc=4.8MB, time=165.24 x[1] = 4.796 y[1] (analytic) = 0 y[1] (numeric) = 5.9647977117980672289274542944124 absolute error = 5.9647977117980672289274542944124 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.797 y[1] (analytic) = 0 y[1] (numeric) = 5.9652989385381547868618742995264 absolute error = 5.9652989385381547868618742995264 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.798 y[1] (analytic) = 0 y[1] (numeric) = 5.9658001946399303510294327932189 absolute error = 5.9658001946399303510294327932189 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.799 y[1] (analytic) = 0 y[1] (numeric) = 5.9663014804513208843753257009836 absolute error = 5.9663014804513208843753257009836 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.8 y[1] (analytic) = 0 y[1] (numeric) = 5.9668027963202852977263523116355 absolute error = 5.9668027963202852977263523116355 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.801 y[1] (analytic) = 0 y[1] (numeric) = 5.9673041425948148210636749258515 absolute error = 5.9673041425948148210636749258515 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.802 y[1] (analytic) = 0 y[1] (numeric) = 5.9678055196229333747289563745787 absolute error = 5.9678055196229333747289563745787 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.803 y[1] (analytic) = 0 y[1] (numeric) = 5.9683069277526979405630857252265 absolute error = 5.9683069277526979405630857252265 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.804 y[1] (analytic) = 0 y[1] (numeric) = 5.9688083673321989329767017894048 absolute error = 5.9688083673321989329767017894048 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.805 y[1] (analytic) = 0 y[1] (numeric) = 5.9693098387095605699517233338267 absolute error = 5.9693098387095605699517233338267 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.806 y[1] (analytic) = 0 y[1] (numeric) = 5.9698113422329412439730941758654 absolute error = 5.9698113422329412439730941758654 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1571.7MB, alloc=4.8MB, time=165.63 x[1] = 4.807 y[1] (analytic) = 0 y[1] (numeric) = 5.97031287825053389288995061714 absolute error = 5.97031287825053389288995061714 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.808 y[1] (analytic) = 0 y[1] (numeric) = 5.9708144471105663707054179324078 absolute error = 5.9708144471105663707054179324078 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.809 y[1] (analytic) = 0 y[1] (numeric) = 5.9713160491613018182942418869627 absolute error = 5.9713160491613018182942418869627 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.81 y[1] (analytic) = 0 y[1] (numeric) = 5.9718176847510390340474605036804 absolute error = 5.9718176847510390340474605036804 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.811 y[1] (analytic) = 0 y[1] (numeric) = 5.9723193542281128444433205408161 absolute error = 5.9723193542281128444433205408161 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.812 y[1] (analytic) = 0 y[1] (numeric) = 5.972821057940894474543642373649 absolute error = 5.972821057940894474543642373649 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.813 y[1] (analytic) = 0 y[1] (numeric) = 5.973322796237791918414836197082 absolute error = 5.973322796237791918414836197082 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.814 y[1] (analytic) = 0 y[1] (numeric) = 5.9738245694672503094727716823482 absolute error = 5.9738245694672503094727716823482 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.815 y[1] (analytic) = 0 y[1] (numeric) = 5.9743263779777522907507024290478 absolute error = 5.9743263779777522907507024290478 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.816 y[1] (analytic) = 0 y[1] (numeric) = 5.9748282221178183850894457538434 absolute error = 5.9748282221178183850894457538434 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.817 y[1] (analytic) = 0 y[1] (numeric) = 5.975330102236007365249017549279 absolute error = 5.975330102236007365249017549279 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.818 y[1] (analytic) = 0 y[1] (numeric) = 5.9758320186809166239409211303625 absolute error = 5.9758320186809166239409211303625 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1575.5MB, alloc=4.8MB, time=166.03 x[1] = 4.819 y[1] (analytic) = 0 y[1] (numeric) = 5.9763339718011825437802881627619 absolute error = 5.9763339718011825437802881627619 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.82 y[1] (analytic) = 0 y[1] (numeric) = 5.9768359619454808671570689347162 absolute error = 5.9768359619454808671570689347162 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.821 y[1] (analytic) = 0 y[1] (numeric) = 5.9773379894625270660254683950553 absolute error = 5.9773379894625270660254683950553 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.822 y[1] (analytic) = 0 y[1] (numeric) = 5.9778400547010767116108235320585 absolute error = 5.9778400547010767116108235320585 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.823 y[1] (analytic) = 0 y[1] (numeric) = 5.9783421580099258440331168122644 absolute error = 5.9783421580099258440331168122644 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.824 y[1] (analytic) = 0 y[1] (numeric) = 5.9788442997379113418463195347737 absolute error = 5.9788442997379113418463195347737 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.825 y[1] (analytic) = 0 y[1] (numeric) = 5.9793464802339112914927580850679 absolute error = 5.9793464802339112914927580850679 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.826 y[1] (analytic) = 0 y[1] (numeric) = 5.9798486998468453566716951928984 absolute error = 5.9798486998468453566716951928984 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.827 y[1] (analytic) = 0 y[1] (numeric) = 5.980350958925675147621317411387 absolute error = 5.980350958925675147621317411387 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.828 y[1] (analytic) = 0 y[1] (numeric) = 5.9808532578194045903133191391227 absolute error = 5.9808532578194045903133191391227 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.829 y[1] (analytic) = 0 y[1] (numeric) = 5.9813555968770802955592726037408 absolute error = 5.9813555968770802955592726037408 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1579.3MB, alloc=4.8MB, time=166.44 x[1] = 4.83 y[1] (analytic) = 0 y[1] (numeric) = 5.9818579764477919280279723142347 absolute error = 5.9818579764477919280279723142347 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.831 y[1] (analytic) = 0 y[1] (numeric) = 5.9823603968806725751729415700749 absolute error = 5.9823603968806725751729415700749 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.832 y[1] (analytic) = 0 y[1] (numeric) = 5.9828628585248991160692876881034 absolute error = 5.9828628585248991160692876881034 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.833 y[1] (analytic) = 0 y[1] (numeric) = 5.9833653617296925901590916731306 absolute error = 5.9833653617296925901590916731306 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.834 y[1] (analytic) = 0 y[1] (numeric) = 5.9838679068443185659045171151913 absolute error = 5.9838679068443185659045171151913 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.835 y[1] (analytic) = 0 y[1] (numeric) = 5.9843704942180875093478221455194 absolute error = 5.9843704942180875093478221455194 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.836 y[1] (analytic) = 0 y[1] (numeric) = 5.9848731242003551525774573244772 absolute error = 5.9848731242003551525774573244772 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.837 y[1] (analytic) = 0 y[1] (numeric) = 5.9853757971405228620994313679314 absolute error = 5.9853757971405228620994313679314 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.838 y[1] (analytic) = 0 y[1] (numeric) = 5.9858785133880380071131256438995 absolute error = 5.9858785133880380071131256438995 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.839 y[1] (analytic) = 0 y[1] (numeric) = 5.9863812732923943276907373887103 absolute error = 5.9863812732923943276907373887103 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.84 y[1] (analytic) = 0 y[1] (numeric) = 5.9868840772031323028595306014194 absolute error = 5.9868840772031323028595306014194 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.841 y[1] (analytic) = 0 y[1] (numeric) = 5.9873869254698395185860725768123 absolute error = 5.9873869254698395185860725768123 relative error = -1 % Correct digits = -1 h = 0.001 memory used=1583.1MB, alloc=4.8MB, time=166.83 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.842 y[1] (analytic) = 0 y[1] (numeric) = 5.9878898184421510356616330310029 absolute error = 5.9878898184421510356616330310029 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.843 y[1] (analytic) = 0 y[1] (numeric) = 5.9883927564697497574879217594071 absolute error = 5.9883927564697497574879217594071 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.844 y[1] (analytic) = 0 y[1] (numeric) = 5.9888957399023667977623397447353 absolute error = 5.9888957399023667977623397447353 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.845 y[1] (analytic) = 0 y[1] (numeric) = 5.9893987690897818480619176026095 absolute error = 5.9893987690897818480619176026095 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.846 y[1] (analytic) = 0 y[1] (numeric) = 5.9899018443818235453251142144734 absolute error = 5.9899018443818235453251142144734 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.847 y[1] (analytic) = 0 y[1] (numeric) = 5.9904049661283698392306473516286 absolute error = 5.9904049661283698392306473516286 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.848 y[1] (analytic) = 0 y[1] (numeric) = 5.9909081346793483594725270404998 absolute error = 5.9909081346793483594725270404998 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.849 y[1] (analytic) = 0 y[1] (numeric) = 5.9914113503847367829304613576102 absolute error = 5.9914113503847367829304613576102 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.85 y[1] (analytic) = 0 y[1] (numeric) = 5.9919146135945632007348032732365 absolute error = 5.9919146135945632007348032732365 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.851 y[1] (analytic) = 0 y[1] (numeric) = 5.9924179246589064852252060853161 absolute error = 5.9924179246589064852252060853161 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.852 y[1] (analytic) = 0 y[1] (numeric) = 5.9929212839278966568021538998953 absolute error = 5.9929212839278966568021538998953 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1586.9MB, alloc=4.8MB, time=167.23 x[1] = 4.853 y[1] (analytic) = 0 y[1] (numeric) = 5.9934246917517152506705325212477 absolute error = 5.9934246917517152506705325212477 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.854 y[1] (analytic) = 0 y[1] (numeric) = 5.9939281484805956834744050137472 absolute error = 5.9939281484805956834744050137472 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.855 y[1] (analytic) = 0 y[1] (numeric) = 5.9944316544648236198221550886674 absolute error = 5.9944316544648236198221550886674 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.856 y[1] (analytic) = 0 y[1] (numeric) = 5.9949352100547373387011603522871 absolute error = 5.9949352100547373387011603522871 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.857 y[1] (analytic) = 0 y[1] (numeric) = 5.995438815600728099781156327026 absolute error = 5.995438815600728099781156327026 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.858 y[1] (analytic) = 0 y[1] (numeric) = 5.9959424714532405096054510248065 absolute error = 5.9959424714532405096054510248065 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.859 y[1] (analytic) = 0 y[1] (numeric) = 5.9964461779627728876691487114513 absolute error = 5.9964461779627728876691487114513 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.86 y[1] (analytic) = 0 y[1] (numeric) = 5.9969499354798776323835403526747 absolute error = 5.9969499354798776323835403526747 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.861 y[1] (analytic) = 0 y[1] (numeric) = 5.9974537443551615869258170761191 absolute error = 5.9974537443551615869258170761191 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.862 y[1] (analytic) = 0 y[1] (numeric) = 5.9979576049392864049732618199248 absolute error = 5.9979576049392864049732618199248 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.863 y[1] (analytic) = 0 y[1] (numeric) = 5.9984615175829689163210731665085 absolute error = 5.9984615175829689163210731665085 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1590.7MB, alloc=4.8MB, time=167.64 x[1] = 4.864 y[1] (analytic) = 0 y[1] (numeric) = 5.9989654826369814923829741805608 absolute error = 5.9989654826369814923829741805608 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.865 y[1] (analytic) = 0 y[1] (numeric) = 5.9994695004521524115737578827671 absolute error = 5.9994695004521524115737578827671 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.866 y[1] (analytic) = 0 y[1] (numeric) = 5.9999735713793662245729197954034 absolute error = 5.9999735713793662245729197954034 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.867 y[1] (analytic) = 0 y[1] (numeric) = 6.00047769576956411946852679277 absolute error = 6.00047769576956411946852679277 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.868 y[1] (analytic) = 0 y[1] (numeric) = 6.000981873973744286780470278398 absolute error = 6.000981873973744286780470278398 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.869 y[1] (analytic) = 0 y[1] (numeric) = 6.0014861063429622843622504921053 absolute error = 6.0014861063429622843622504921053 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.87 y[1] (analytic) = 0 y[1] (numeric) = 6.0019903932283314021804375232907 absolute error = 6.0019903932283314021804375232907 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.871 y[1] (analytic) = 0 y[1] (numeric) = 6.0024947349810230269709533723364 absolute error = 6.0024947349810230269709533723364 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.872 y[1] (analytic) = 0 y[1] (numeric) = 6.0029991319522670067713181596547 absolute error = 6.0029991319522670067713181596547 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.873 y[1] (analytic) = 0 y[1] (numeric) = 6.0035035844933520153280023317519 absolute error = 6.0035035844933520153280023317519 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.874 y[1] (analytic) = 0 y[1] (numeric) = 6.0040080929556259163780254557114 absolute error = 6.0040080929556259163780254557114 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.875 y[1] (analytic) = 0 y[1] (numeric) = 6.0045126576904961278039409277076 absolute error = 6.0045126576904961278039409277076 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1594.6MB, alloc=4.8MB, time=168.04 x[1] = 4.876 y[1] (analytic) = 0 y[1] (numeric) = 6.005017279049429985661344647564 absolute error = 6.005017279049429985661344647564 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.877 y[1] (analytic) = 0 y[1] (numeric) = 6.0055219573839551080780444299677 absolute error = 6.0055219573839551080780444299677 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.878 y[1] (analytic) = 0 y[1] (numeric) = 6.0060266930456597590240256337413 absolute error = 6.0060266930456597590240256337413 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.879 y[1] (analytic) = 0 y[1] (numeric) = 6.006531486386193211951347193571 absolute error = 6.006531486386193211951347193571 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.88 y[1] (analytic) = 0 y[1] (numeric) = 6.0070363377572661133031009337831 absolute error = 6.0070363377572661133031009337831 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.881 y[1] (analytic) = 0 y[1] (numeric) = 6.0075412475106508458905657311708 absolute error = 6.0075412475106508458905657311708 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.882 y[1] (analytic) = 0 y[1] (numeric) = 6.0080462159981818921376867734855 absolute error = 6.0080462159981818921376867734855 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.883 y[1] (analytic) = 0 y[1] (numeric) = 6.0085512435717561971920088320415 absolute error = 6.0085512435717561971920088320415 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.884 y[1] (analytic) = 0 y[1] (numeric) = 6.0090563305833335319011911309301 absolute error = 6.0090563305833335319011911309301 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.885 y[1] (analytic) = 0 y[1] (numeric) = 6.0095614773849368556542300516127 absolute error = 6.0095614773849368556542300516127 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.886 y[1] (analytic) = 0 y[1] (numeric) = 6.0100666843286526790865145601584 absolute error = 6.0100666843286526790865145601584 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1598.4MB, alloc=4.8MB, time=168.44 x[1] = 4.887 y[1] (analytic) = 0 y[1] (numeric) = 6.0105719517666314266478378851198 absolute error = 6.0105719517666314266478378851198 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.888 y[1] (analytic) = 0 y[1] (numeric) = 6.0110772800510877990324876069994 absolute error = 6.0110772800510877990324876069994 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.889 y[1] (analytic) = 0 y[1] (numeric) = 6.0115826695343011354705349454577 absolute error = 6.0115826695343011354705349454577 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.89 y[1] (analytic) = 0 y[1] (numeric) = 6.0120881205686157758794426478491 absolute error = 6.0120881205686157758794426478491 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.891 y[1] (analytic) = 0 y[1] (numeric) = 6.0125936335064414228751094923571 absolute error = 6.0125936335064414228751094923571 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.892 y[1] (analytic) = 0 y[1] (numeric) = 6.0130992087002535036414680209276 absolute error = 6.0130992087002535036414680209276 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.893 y[1] (analytic) = 0 y[1] (numeric) = 6.013604846502593531657750711385 absolute error = 6.013604846502593531657750711385 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.894 y[1] (analytic) = 0 y[1] (numeric) = 6.0141105472660694682825383845522 absolute error = 6.0141105472660694682825383845522 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.895 y[1] (analytic) = 0 y[1] (numeric) = 6.0146163113433560841937032208961 absolute error = 6.0146163113433560841937032208961 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.896 y[1] (analytic) = 0 y[1] (numeric) = 6.0151221390871953206833573321837 absolute error = 6.0151221390871953206833573321837 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.897 y[1] (analytic) = 0 y[1] (numeric) = 6.0156280308503966508069163968631 absolute error = 6.0156280308503966508069163968631 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.898 y[1] (analytic) = 0 y[1] (numeric) = 6.0161339869858374403853864233902 absolute error = 6.0161339869858374403853864233902 relative error = -1 % Correct digits = -1 h = 0.001 memory used=1602.2MB, alloc=4.8MB, time=168.83 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.899 y[1] (analytic) = 0 y[1] (numeric) = 6.0166400078464633088599802534983 absolute error = 6.0166400078464633088599802534983 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.9 y[1] (analytic) = 0 y[1] (numeric) = 6.0171460937852884899981689574699 absolute error = 6.0171460937852884899981689574699 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.901 y[1] (analytic) = 0 y[1] (numeric) = 6.0176522451553961924502718058127 absolute error = 6.0176522451553961924502718058127 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.902 y[1] (analytic) = 0 y[1] (numeric) = 6.0181584623099389601556870263755 absolute error = 6.0181584623099389601556870263755 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.903 y[1] (analytic) = 0 y[1] (numeric) = 6.0186647456021390325978640728641 absolute error = 6.0186647456021390325978640728641 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.904 y[1] (analytic) = 0 y[1] (numeric) = 6.0191710953852887049071166399408 absolute error = 6.0191710953852887049071166399408 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.905 y[1] (analytic) = 0 y[1] (numeric) = 6.0196775120127506878103741616137 absolute error = 6.0196775120127506878103741616137 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.906 y[1] (analytic) = 0 y[1] (numeric) = 6.0201839958379584674269680234512 absolute error = 6.0201839958379584674269680234512 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.907 y[1] (analytic) = 0 y[1] (numeric) = 6.0206905472144166649095472052955 absolute error = 6.0206905472144166649095472052955 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.908 y[1] (analytic) = 0 y[1] (numeric) = 6.0211971664957013959292165496032 absolute error = 6.0211971664957013959292165496032 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.909 y[1] (analytic) = 0 y[1] (numeric) = 6.0217038540354606300039893213097 absolute error = 6.0217038540354606300039893213097 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1606.0MB, alloc=4.8MB, time=169.24 x[1] = 4.91 y[1] (analytic) = 0 y[1] (numeric) = 6.0222106101874145496696441882106 absolute error = 6.0222106101874145496696441882106 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.911 y[1] (analytic) = 0 y[1] (numeric) = 6.022717435305355909492075206274 absolute error = 6.022717435305355909492075206274 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.912 y[1] (analytic) = 0 y[1] (numeric) = 6.0232243297431503949202218420499 absolute error = 6.0232243297431503949202218420499 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.913 y[1] (analytic) = 0 y[1] (numeric) = 6.0237312938547369809786645044338 absolute error = 6.0237312938547369809786645044338 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.914 y[1] (analytic) = 0 y[1] (numeric) = 6.0242383279941282907989694904706 absolute error = 6.0242383279941282907989694904706 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.915 y[1] (analytic) = 0 y[1] (numeric) = 6.0247454325154109539888656746618 absolute error = 6.0247454325154109539888656746618 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.916 y[1] (analytic) = 0 y[1] (numeric) = 6.0252526077727459648383336883631 absolute error = 6.0252526077727459648383336883631 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.917 y[1] (analytic) = 0 y[1] (numeric) = 6.0257598541203690403616867453411 absolute error = 6.0257598541203690403616867453411 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.918 y[1] (analytic) = 0 y[1] (numeric) = 6.0262671719125909781747206713963 absolute error = 6.0262671719125909781747206713963 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.919 y[1] (analytic) = 0 y[1] (numeric) = 6.0267745615037980142060090901629 absolute error = 6.0267745615037980142060090901629 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.92 y[1] (analytic) = 0 y[1] (numeric) = 6.0272820232484521802414181037693 absolute error = 6.0272820232484521802414181037693 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1609.8MB, alloc=4.8MB, time=169.64 x[1] = 4.921 y[1] (analytic) = 0 y[1] (numeric) = 6.0277895575010916613009131859867 absolute error = 6.0277895575010916613009131859867 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.922 y[1] (analytic) = 0 y[1] (numeric) = 6.0282971646163311528467293768183 absolute error = 6.0282971646163311528467293768183 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.923 y[1] (analytic) = 0 y[1] (numeric) = 6.0288048449488622178219742311884 absolute error = 6.0288048449488622178219742311884 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.924 y[1] (analytic) = 0 y[1] (numeric) = 6.0293125988534536435187313304843 absolute error = 6.0293125988534536435187313304843 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.925 y[1] (analytic) = 0 y[1] (numeric) = 6.0298204266849517982747305141928 absolute error = 6.0298204266849517982747305141928 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.926 y[1] (analytic) = 0 y[1] (numeric) = 6.0303283287982809879976493297577 absolute error = 6.0303283287982809879976493297577 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.927 y[1] (analytic) = 0 y[1] (numeric) = 6.0308363055484438125161085320724 absolute error = 6.0308363055484438125161085320724 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.928 y[1] (analytic) = 0 y[1] (numeric) = 6.0313443572905215217564227897183 absolute error = 6.0313443572905215217564227897183 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.929 y[1] (analytic) = 0 y[1] (numeric) = 6.031852484379674371744166073168 absolute error = 6.031852484379674371744166073168 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.93 y[1] (analytic) = 0 y[1] (numeric) = 6.0323606871711419804296095106976 absolute error = 6.0323606871711419804296095106976 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.931 y[1] (analytic) = 0 y[1] (numeric) = 6.0328689660202436833360878007035 absolute error = 6.0328689660202436833360878007035 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.932 y[1] (analytic) = 0 y[1] (numeric) = 6.0333773212823788890303485644947 absolute error = 6.0333773212823788890303485644947 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1613.6MB, alloc=4.8MB, time=170.04 x[1] = 4.933 y[1] (analytic) = 0 y[1] (numeric) = 6.0338857533130274344139373114437 absolute error = 6.0338857533130274344139373114437 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.934 y[1] (analytic) = 0 y[1] (numeric) = 6.0343942624677499398346689686266 absolute error = 6.0343942624677499398346689686266 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.935 y[1] (analytic) = 0 y[1] (numeric) = 6.0349028491021881640172351997776 absolute error = 6.0349028491021881640172351997776 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.936 y[1] (analytic) = 0 y[1] (numeric) = 6.0354115135720653588119950035228 absolute error = 6.0354115135720653588119950035228 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.937 y[1] (analytic) = 0 y[1] (numeric) = 6.0359202562331866237609943384567 absolute error = 6.0359202562331866237609943384567 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.938 y[1] (analytic) = 0 y[1] (numeric) = 6.0364290774414392604802587726779 absolute error = 6.0364290774414392604802587726779 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.939 y[1] (analytic) = 0 y[1] (numeric) = 6.0369379775527931268574013979232 absolute error = 6.0369379775527931268574013979232 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.94 y[1] (analytic) = 0 y[1] (numeric) = 6.0374469569233009910635864834302 absolute error = 6.0374469569233009910635864834302 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.941 y[1] (analytic) = 0 y[1] (numeric) = 6.0379560159090988853788875721249 absolute error = 6.0379560159090988853788875721249 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.942 y[1] (analytic) = 0 y[1] (numeric) = 6.0384651548664064598300769416803 absolute error = 6.0384651548664064598300769416803 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.943 y[1] (analytic) = 0 y[1] (numeric) = 6.0389743741515273356398815654274 absolute error = 6.0389743741515273356398815654274 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1617.4MB, alloc=4.8MB, time=170.45 x[1] = 4.944 y[1] (analytic) = 0 y[1] (numeric) = 6.0394836741208494584867389130275 absolute error = 6.0394836741208494584867389130275 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.945 y[1] (analytic) = 0 y[1] (numeric) = 6.0399930551308454515740841282424 absolute error = 6.0399930551308454515740841282424 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.946 y[1] (analytic) = 0 y[1] (numeric) = 6.040502517538072968508198311068 absolute error = 6.040502517538072968508198311068 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.947 y[1] (analytic) = 0 y[1] (numeric) = 6.0410120616991750459836458139369 absolute error = 6.0410120616991750459836458139369 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.948 y[1] (analytic) = 0 y[1] (numeric) = 6.0415216879708804562753266366501 absolute error = 6.0415216879708804562753266366501 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.949 y[1] (analytic) = 0 y[1] (numeric) = 6.0420313967100040595361681721746 absolute error = 6.0420313967100040595361681721746 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.95 y[1] (analytic) = 0 y[1] (numeric) = 6.0425411882734471558994787154457 absolute error = 6.0425411882734471558994787154457 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.951 y[1] (analytic) = 0 y[1] (numeric) = 6.0430510630181978373849832998471 absolute error = 6.0430510630181978373849832998471 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.952 y[1] (analytic) = 0 y[1] (numeric) = 6.0435610213013313396075605711175 absolute error = 6.0435610213013313396075605711175 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.953 y[1] (analytic) = 0 y[1] (numeric) = 6.0440710634800103932876975460491 absolute error = 6.0440710634800103932876975460491 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.954 y[1] (analytic) = 0 y[1] (numeric) = 6.0445811899114855755626772335121 absolute error = 6.0445811899114855755626772335121 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.955 y[1] (analytic) = 0 y[1] (numeric) = 6.0450914009530956610975122180645 absolute error = 6.0450914009530956610975122180645 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1621.3MB, alloc=4.8MB, time=170.85 x[1] = 4.956 y[1] (analytic) = 0 y[1] (numeric) = 6.0456016969622679729946354216929 absolute error = 6.0456016969622679729946354216929 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.957 y[1] (analytic) = 0 y[1] (numeric) = 6.0461120782965187335013573670866 absolute error = 6.0461120782965187335013573670866 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.958 y[1] (analytic) = 0 y[1] (numeric) = 6.0466225453134534145140973662766 absolute error = 6.0466225453134534145140973662766 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.959 y[1] (analytic) = 0 y[1] (numeric) = 6.0471330983707670878783941514817 absolute error = 6.0471330983707670878783941514817 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.96 y[1] (analytic) = 0 y[1] (numeric) = 6.0476437378262447754836995506036 absolute error = 6.0476437378262447754836995506036 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.961 y[1] (analytic) = 0 y[1] (numeric) = 6.0481544640377617991519568880006 absolute error = 6.0481544640377617991519568880006 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.962 y[1] (analytic) = 0 y[1] (numeric) = 6.0486652773632841303189638619625 absolute error = 6.0486652773632841303189638619625 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.963 y[1] (analytic) = 0 y[1] (numeric) = 6.0491761781608687395075177137036 absolute error = 6.0491761781608687395075177137036 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.964 y[1] (analytic) = 0 y[1] (numeric) = 6.0496871667886639455913385586997 absolute error = 6.0496871667886639455913385586997 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.965 y[1] (analytic) = 0 y[1] (numeric) = 6.0501982436049097648487647998198 absolute error = 6.0501982436049097648487647998198 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.966 y[1] (analytic) = 0 y[1] (numeric) = 6.0507094089679382598052125829565 absolute error = 6.0507094089679382598052125829565 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1625.1MB, alloc=4.8MB, time=171.25 x[1] = 4.967 y[1] (analytic) = 0 y[1] (numeric) = 6.05122066323617388786338928974 absolute error = 6.05122066323617388786338928974 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.968 y[1] (analytic) = 0 y[1] (numeric) = 6.0517320067681338497202490884409 absolute error = 6.0517320067681338497202490884409 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.969 y[1] (analytic) = 0 y[1] (numeric) = 6.0522434399224284375696765833339 absolute error = 6.0522434399224284375696765833339 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.97 y[1] (analytic) = 0 y[1] (numeric) = 6.0527549630577613830898826146069 absolute error = 6.0527549630577613830898826146069 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.971 y[1] (analytic) = 0 y[1] (numeric) = 6.0532665765329302052144942653762 absolute error = 6.0532665765329302052144942653762 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.972 y[1] (analytic) = 0 y[1] (numeric) = 6.0537782807068265576863191295047 absolute error = 6.0537782807068265576863191295047 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.973 y[1] (analytic) = 0 y[1] (numeric) = 6.0542900759384365763927618837287 absolute error = 6.0542900759384365763927618837287 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.974 y[1] (analytic) = 0 y[1] (numeric) = 6.0548019625868412264818691900859 absolute error = 6.0548019625868412264818691900859 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.975 y[1] (analytic) = 0 y[1] (numeric) = 6.0553139410112166492579769298075 absolute error = 6.0553139410112166492579769298075 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.976 y[1] (analytic) = 0 y[1] (numeric) = 6.0558260115708345088559317377005 absolute error = 6.0558260115708345088559317377005 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.977 y[1] (analytic) = 0 y[1] (numeric) = 6.0563381746250623386928567666052 absolute error = 6.0563381746250623386928567666052 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.978 y[1] (analytic) = 0 y[1] (numeric) = 6.0568504305333638876964295647819 absolute error = 6.0568504305333638876964295647819 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 memory used=1628.9MB, alloc=4.8MB, time=171.65 TOP MAIN SOLVE Loop x[1] = 4.979 y[1] (analytic) = 0 y[1] (numeric) = 6.0573627796552994663086378950556 absolute error = 6.0573627796552994663086378950556 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.98 y[1] (analytic) = 0 y[1] (numeric) = 6.0578752223505262922639772632473 absolute error = 6.0578752223505262922639772632473 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.981 y[1] (analytic) = 0 y[1] (numeric) = 6.0583877589787988361410518548426 absolute error = 6.0583877589787988361410518548426 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.982 y[1] (analytic) = 0 y[1] (numeric) = 6.0589003898999691666865385030069 absolute error = 6.0589003898999691666865385030069 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.983 y[1] (analytic) = 0 y[1] (numeric) = 6.059413115473987295910471227952 absolute error = 6.059413115473987295910471227952 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.984 y[1] (analytic) = 0 y[1] (numeric) = 6.0599259360609015239518017973066 absolute error = 6.0599259360609015239518017973066 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.985 y[1] (analytic) = 0 y[1] (numeric) = 6.0604388520208587837131896595412 absolute error = 6.0604388520208587837131896595412 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.986 y[1] (analytic) = 0 y[1] (numeric) = 6.0609518637141049852639724976626 absolute error = 6.0609518637141049852639724976626 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.987 y[1] (analytic) = 0 y[1] (numeric) = 6.0614649715009853600102665383233 absolute error = 6.0614649715009853600102665383233 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.988 y[1] (analytic) = 0 y[1] (numeric) = 6.061978175741944804631143632202 absolute error = 6.061978175741944804631143632202 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.989 y[1] (analytic) = 0 y[1] (numeric) = 6.062491476797528224779829995003 absolute error = 6.062491476797528224779829995003 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop memory used=1632.7MB, alloc=4.8MB, time=172.06 x[1] = 4.99 y[1] (analytic) = 0 y[1] (numeric) = 6.0630048750283808785488693647091 absolute error = 6.0630048750283808785488693647091 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.991 y[1] (analytic) = 0 y[1] (numeric) = 6.0635183707952487196981911898068 absolute error = 6.0635183707952487196981911898068 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.992 y[1] (analytic) = 0 y[1] (numeric) = 6.0640319644589787406450223150927 absolute error = 6.0640319644589787406450223150927 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.993 y[1] (analytic) = 0 y[1] (numeric) = 6.0645456563805193152145784763782 absolute error = 6.0645456563805193152145784763782 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.994 y[1] (analytic) = 0 y[1] (numeric) = 6.0650594469209205411504697529356 absolute error = 6.0650594469209205411504697529356 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.995 y[1] (analytic) = 0 y[1] (numeric) = 6.0655733364413345823837519568875 absolute error = 6.0655733364413345823837519568875 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.996 y[1] (analytic) = 0 y[1] (numeric) = 6.0660873253030160110595537619367 absolute error = 6.0660873253030160110595537619367 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.997 y[1] (analytic) = 0 y[1] (numeric) = 6.0666014138673221493202071898745 absolute error = 6.0666014138673221493202071898745 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.998 y[1] (analytic) = 0 y[1] (numeric) = 6.0671156024957134108438068821985 absolute error = 6.0671156024957134108438068821985 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 TOP MAIN SOLVE Loop x[1] = 4.999 y[1] (analytic) = 0 y[1] (numeric) = 6.0676298915497536421371213859268 absolute error = 6.0676298915497536421371213859268 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE for equation 1 Finished! diff ( y , x , 1 ) = expt(2.0 , sin(x)); Iterations = 4900 Total Elapsed Time = 2 Minutes 52 Seconds Elapsed Time(since restart) = 2 Minutes 52 Seconds Time to Timeout = 7 Seconds Percent Done = 100 % > quit memory used=1635.9MB, alloc=4.8MB, time=172.37