(%i1) batch(diffeq.max) read and interpret file: /home/dennis/mastersource/mine/omnisode/diffeq.max (%i2) load(stringproc) (%o2) /usr/local/share/maxima/5.26.0/share/contrib/stringproc/stringproc.mac (%i3) display_alot(iter) := if iter >= 0 then (ind_var : array_x , omniout_float(ALWAYS, 1 "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 : abs(numeric_val - analytic_val_y), omniout_float(ALWAYS, "y[1] (numeric) ", 33, numeric_val, abserr 100.0 20, " "), if abs(analytic_val_y) # 0.0 then relerr : ------------------- abs(analytic_val_y) else relerr : - 1.0, if glob_iter = 1 then array_1st_rel_error : relerr 1 else array_last_rel_error : relerr, omniout_float(ALWAYS, 1 "absolute error ", 4, abserr, 20, " "), omniout_float(ALWAYS, "relative error ", 4, relerr, 20, "%"), omniout_float(ALWAYS, "h ", 4, glob_h, 20, " ")) (%o3) display_alot(iter) := if iter >= 0 then (ind_var : array_x , omniout_float(ALWAYS, 1 "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 : abs(numeric_val - analytic_val_y), omniout_float(ALWAYS, "y[1] (numeric) ", 33, numeric_val, abserr 100.0 20, " "), if abs(analytic_val_y) # 0.0 then relerr : ------------------- abs(analytic_val_y) else relerr : - 1.0, if glob_iter = 1 then array_1st_rel_error : relerr 1 else array_last_rel_error : relerr, omniout_float(ALWAYS, 1 "absolute error ", 4, abserr, 20, " "), omniout_float(ALWAYS, "relative error ", 4, relerr, 20, "%"), omniout_float(ALWAYS, "h ", 4, glob_h, 20, " ")) (%i4) adjust_for_pole(h_param) := block(hnew : h_param, glob_normmax : glob_small_float, if !array_y_higher ! > glob_small_float ! 1, 1! then (tmp : !array_y_higher !, if tmp < glob_normmax ! 1, 1! then glob_normmax : tmp), if glob_look_poles and (!array_pole ! > glob_small_float) and (array_pole # glob_large_float) ! 1! 1 array_pole 1 then (sz2 : -----------, if sz2 < hnew 10.0 then (omniout_float(INFO, "glob_h adjusted to ", 20, h_param, 12, "due to singularity."), omniout_str(INFO, "Reached Optimal"), newline(), return(hnew))), 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 ), hnew : sz2) 1 (%o4) adjust_for_pole(h_param) := block(hnew : h_param, glob_normmax : glob_small_float, if !array_y_higher ! > glob_small_float ! 1, 1! then (tmp : !array_y_higher !, if tmp < glob_normmax ! 1, 1! then glob_normmax : tmp), if glob_look_poles and (!array_pole ! > glob_small_float) and (array_pole # glob_large_float) ! 1! 1 array_pole 1 then (sz2 : -----------, if sz2 < hnew 10.0 then (omniout_float(INFO, "glob_h adjusted to ", 20, h_param, 12, "due to singularity."), omniout_str(INFO, "Reached Optimal"), newline(), return(hnew))), 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 ), hnew : sz2) 1 (%i5) prog_report(x_start, x_end) := (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(clock_sec1) + convfloat(glob_orig_start_sec) + convfloat(glob_max_sec), expect_sec : comp_expect_sec(convfloat(x_end), convfloat(x_start), convfloat(glob_h) + convfloat(array_x ), 1 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(glob_h) + convfloat(array_x ), 1 convfloat(opt_clock_sec)), percent_done : comp_percent(convfloat(x_end), convfloat(x_start), convfloat(glob_h) + convfloat(array_x )), glob_percent_done : percent_done, 1 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, "Time to Timeout "), omniout_timestr(convfloat(left_sec)), omniout_float(INFO, "Percent Done ", 33, percent_done, 4, "%")) (%o5) prog_report(x_start, x_end) := (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(clock_sec1) + convfloat(glob_orig_start_sec) + convfloat(glob_max_sec), expect_sec : comp_expect_sec(convfloat(x_end), convfloat(x_start), convfloat(glob_h) + convfloat(array_x ), 1 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(glob_h) + convfloat(array_x ), 1 convfloat(opt_clock_sec)), percent_done : comp_percent(convfloat(x_end), convfloat(x_start), convfloat(glob_h) + convfloat(array_x )), glob_percent_done : percent_done, 1 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, "Time to Timeout "), omniout_timestr(convfloat(left_sec)), omniout_float(INFO, "Percent Done ", 33, percent_done, 4, "%")) (%i6) check_for_pole() := (n : glob_max_terms, m : - 1 - 1 + n, while (m >= 10) and ((!array_y_higher ! < glob_small_float) ! 1, m! or (!array_y_higher ! < glob_small_float) ! 1, m - 1! or (!array_y_higher ! < glob_small_float)) do m : m - 1, ! 1, m - 2! array_y_higher array_y_higher 1, m 1, m - 1 if m > 10 then (rm0 : ----------------------, rm1 : ----------------------, array_y_higher array_y_higher 1, m - 1 1, m - 2 hdrc : convfloat(m - 1) rm0 - convfloat(m - 2) rm1, glob_h if abs(hdrc) > glob_small_float then (rcs : ------, hdrc convfloat(m - 1) rm0 ord_no : 2.0 - convfloat(m) + --------------------, array_real_pole : rcs, hdrc 1, 1 array_real_pole : ord_no) else (array_real_pole : glob_large_float, 1, 2 1, 1 array_real_pole : glob_large_float)) 1, 2 else (array_real_pole : glob_large_float, 1, 1 array_real_pole : glob_large_float), n : - 1 - 1 + glob_max_terms, 1, 2 cnt : 0, while (cnt < 5) and (n >= 10) do (if !array_y_higher ! > ! 1, n! glob_small_float then cnt : 1 + cnt else cnt : 0, n : n - 1), m : cnt + n, if m <= 10 then (array_complex_pole : glob_large_float, 1, 1 array_complex_pole : glob_large_float) 1, 2 elseif (!array_y_higher ! >= glob_large_float) ! 1, m! or (!array_y_higher ! >= glob_large_float) ! 1, m - 1! or (!array_y_higher ! >= glob_large_float) ! 1, m - 2! or (!array_y_higher ! >= glob_large_float) ! 1, m - 3! or (!array_y_higher ! >= glob_large_float) ! 1, m - 4! or (!array_y_higher ! >= glob_large_float) ! 1, m - 5! then (array_complex_pole : glob_large_float, 1, 1 array_complex_pole : glob_large_float) 1, 2 array_y_higher array_y_higher 1, m 1, m - 1 else (rm0 : ----------------------, rm1 : ----------------------, array_y_higher array_y_higher 1, m - 1 1, m - 2 array_y_higher array_y_higher 1, m - 2 1, m - 3 rm2 : ----------------------, rm3 : ----------------------, array_y_higher array_y_higher 1, m - 3 1, m - 4 array_y_higher 1, m - 4 rm4 : ----------------------, nr1 : convfloat(m - 3) rm2 array_y_higher 1, m - 5 - 2.0 convfloat(m - 2) rm1 + convfloat(m - 1) rm0, nr2 : convfloat(m - 4) rm3 - 2.0 convfloat(m - 3) rm2 + convfloat(m - 2) rm1, - 1.0 2.0 - 1.0 - 1.0 2.0 - 1.0 5.0 8.0 3.0 dr1 : ----- + --- + -----, dr2 : ----- + --- + -----, ds1 : --- - --- + ---, rm3 rm2 rm1 rm4 rm3 rm2 rm3 rm2 rm1 5.0 8.0 3.0 ds2 : --- - --- + ---, if (abs(nr1 dr2 - nr2 dr1) <= glob_small_float) rm4 rm3 rm2 or (abs(dr1) <= glob_small_float) then (array_complex_pole : 1, 1 glob_large_float, array_complex_pole : glob_large_float) 1, 2 else (if abs(nr1 dr2 - nr2 dr1) > glob_small_float dr1 dr2 - ds2 dr1 + ds1 dr2 then (rcs : ---------------------------, nr1 dr2 - nr2 dr1 rcs nr1 - ds1 convfloat(m) ord_no : ------------- - ------------, 2.0 dr1 2.0 if abs(rcs) > glob_small_float then (if rcs > 0.0 then rad_c : sqrt(rcs) glob_h else rad_c : glob_large_float) else (rad_c : glob_large_float, ord_no : glob_large_float)) else (rad_c : glob_large_float, ord_no : glob_large_float)), array_complex_pole : rad_c, 1, 1 array_complex_pole : ord_no), found : false, 1, 2 if (not found) and ((array_real_pole = glob_large_float) 1, 1 or (array_real_pole = glob_large_float)) 1, 2 and ((array_complex_pole # glob_large_float) and (array_complex_pole # glob_large_float)) 1, 1 1, 2 and ((array_complex_pole > 0.0) and (array_complex_pole > 0.0)) 1, 1 1, 2 then (array_poles : array_complex_pole , 1, 1 1, 1 array_poles : array_complex_pole , found : true, array_type_pole : 2, 1, 2 1, 2 1 if glob_display_flag then omniout_str(ALWAYS, "Complex estimate of poles used")), if (not found) and ((array_real_pole # glob_large_float) and (array_real_pole # glob_large_float) 1, 1 1, 2 and (array_real_pole > 0.0) and (array_real_pole > 0.0) 1, 1 1, 2 and ((array_complex_pole = glob_large_float) or (array_complex_pole = glob_large_float) or (array_complex_pole <= 0.0) or (array_complex_pole <= 0.0))) 1, 1 1, 2 1, 1 1, 2 then (array_poles : array_real_pole , 1, 1 1, 1 array_poles : array_real_pole , found : true, array_type_pole : 1, 1, 2 1, 2 1 if glob_display_flag then omniout_str(ALWAYS, "Real estimate of pole used")), if (not found) and (((array_real_pole = glob_large_float) 1, 1 or (array_real_pole = glob_large_float)) 1, 2 and ((array_complex_pole = glob_large_float) or (array_complex_pole = glob_large_float))) 1, 1 1, 2 then (array_poles : glob_large_float, array_poles : glob_large_float, 1, 1 1, 2 found : true, array_type_pole : 3, if glob_display_flag 1 then omniout_str(ALWAYS, "NO POLE")), if (not found) and ((array_real_pole < array_complex_pole ) 1, 1 1, 1 and (array_real_pole > 0.0) and (array_real_pole > 1, 1 1, 2 0.0)) then (array_poles : array_real_pole , 1, 1 1, 1 array_poles : array_real_pole , found : true, array_type_pole : 1, 1, 2 1, 2 1 if glob_display_flag then omniout_str(ALWAYS, "Real estimate of pole used")), if (not found) and ((array_complex_pole # glob_large_float) 1, 1 and (array_complex_pole # glob_large_float) 1, 2 and (array_complex_pole > 0.0) and (array_complex_pole > 1, 1 1, 2 0.0)) then (array_poles : array_complex_pole , 1, 1 1, 1 array_poles : array_complex_pole , array_type_pole : 2, found : true, 1, 2 1, 2 1 if glob_display_flag then omniout_str(ALWAYS, "Complex estimate of poles used")), if not found then (array_poles : glob_large_float, array_poles : glob_large_float, 1, 1 1, 2 array_type_pole : 3, if glob_display_flag 1 then omniout_str(ALWAYS, "NO POLE")), array_pole : glob_large_float, 1 array_pole : glob_large_float, if array_pole > array_poles 2 1 1, 1 then (array_pole : array_poles , array_pole : array_poles ), 1 1, 1 2 1, 2 display_pole()) (%o6) check_for_pole() := (n : glob_max_terms, m : - 1 - 1 + n, while (m >= 10) and ((!array_y_higher ! < glob_small_float) ! 1, m! or (!array_y_higher ! < glob_small_float) ! 1, m - 1! or (!array_y_higher ! < glob_small_float)) do m : m - 1, ! 1, m - 2! array_y_higher array_y_higher 1, m 1, m - 1 if m > 10 then (rm0 : ----------------------, rm1 : ----------------------, array_y_higher array_y_higher 1, m - 1 1, m - 2 hdrc : convfloat(m - 1) rm0 - convfloat(m - 2) rm1, glob_h if abs(hdrc) > glob_small_float then (rcs : ------, hdrc convfloat(m - 1) rm0 ord_no : 2.0 - convfloat(m) + --------------------, array_real_pole : rcs, hdrc 1, 1 array_real_pole : ord_no) else (array_real_pole : glob_large_float, 1, 2 1, 1 array_real_pole : glob_large_float)) 1, 2 else (array_real_pole : glob_large_float, 1, 1 array_real_pole : glob_large_float), n : - 1 - 1 + glob_max_terms, 1, 2 cnt : 0, while (cnt < 5) and (n >= 10) do (if !array_y_higher ! > ! 1, n! glob_small_float then cnt : 1 + cnt else cnt : 0, n : n - 1), m : cnt + n, if m <= 10 then (array_complex_pole : glob_large_float, 1, 1 array_complex_pole : glob_large_float) 1, 2 elseif (!array_y_higher ! >= glob_large_float) ! 1, m! or (!array_y_higher ! >= glob_large_float) ! 1, m - 1! or (!array_y_higher ! >= glob_large_float) ! 1, m - 2! or (!array_y_higher ! >= glob_large_float) ! 1, m - 3! or (!array_y_higher ! >= glob_large_float) ! 1, m - 4! or (!array_y_higher ! >= glob_large_float) ! 1, m - 5! then (array_complex_pole : glob_large_float, 1, 1 array_complex_pole : glob_large_float) 1, 2 array_y_higher array_y_higher 1, m 1, m - 1 else (rm0 : ----------------------, rm1 : ----------------------, array_y_higher array_y_higher 1, m - 1 1, m - 2 array_y_higher array_y_higher 1, m - 2 1, m - 3 rm2 : ----------------------, rm3 : ----------------------, array_y_higher array_y_higher 1, m - 3 1, m - 4 array_y_higher 1, m - 4 rm4 : ----------------------, nr1 : convfloat(m - 3) rm2 array_y_higher 1, m - 5 - 2.0 convfloat(m - 2) rm1 + convfloat(m - 1) rm0, nr2 : convfloat(m - 4) rm3 - 2.0 convfloat(m - 3) rm2 + convfloat(m - 2) rm1, - 1.0 2.0 - 1.0 - 1.0 2.0 - 1.0 5.0 8.0 3.0 dr1 : ----- + --- + -----, dr2 : ----- + --- + -----, ds1 : --- - --- + ---, rm3 rm2 rm1 rm4 rm3 rm2 rm3 rm2 rm1 5.0 8.0 3.0 ds2 : --- - --- + ---, if (abs(nr1 dr2 - nr2 dr1) <= glob_small_float) rm4 rm3 rm2 or (abs(dr1) <= glob_small_float) then (array_complex_pole : 1, 1 glob_large_float, array_complex_pole : glob_large_float) 1, 2 else (if abs(nr1 dr2 - nr2 dr1) > glob_small_float dr1 dr2 - ds2 dr1 + ds1 dr2 then (rcs : ---------------------------, nr1 dr2 - nr2 dr1 rcs nr1 - ds1 convfloat(m) ord_no : ------------- - ------------, 2.0 dr1 2.0 if abs(rcs) > glob_small_float then (if rcs > 0.0 then rad_c : sqrt(rcs) glob_h else rad_c : glob_large_float) else (rad_c : glob_large_float, ord_no : glob_large_float)) else (rad_c : glob_large_float, ord_no : glob_large_float)), array_complex_pole : rad_c, 1, 1 array_complex_pole : ord_no), found : false, 1, 2 if (not found) and ((array_real_pole = glob_large_float) 1, 1 or (array_real_pole = glob_large_float)) 1, 2 and ((array_complex_pole # glob_large_float) and (array_complex_pole # glob_large_float)) 1, 1 1, 2 and ((array_complex_pole > 0.0) and (array_complex_pole > 0.0)) 1, 1 1, 2 then (array_poles : array_complex_pole , 1, 1 1, 1 array_poles : array_complex_pole , found : true, array_type_pole : 2, 1, 2 1, 2 1 if glob_display_flag then omniout_str(ALWAYS, "Complex estimate of poles used")), if (not found) and ((array_real_pole # glob_large_float) and (array_real_pole # glob_large_float) 1, 1 1, 2 and (array_real_pole > 0.0) and (array_real_pole > 0.0) 1, 1 1, 2 and ((array_complex_pole = glob_large_float) or (array_complex_pole = glob_large_float) or (array_complex_pole <= 0.0) or (array_complex_pole <= 0.0))) 1, 1 1, 2 1, 1 1, 2 then (array_poles : array_real_pole , 1, 1 1, 1 array_poles : array_real_pole , found : true, array_type_pole : 1, 1, 2 1, 2 1 if glob_display_flag then omniout_str(ALWAYS, "Real estimate of pole used")), if (not found) and (((array_real_pole = glob_large_float) 1, 1 or (array_real_pole = glob_large_float)) 1, 2 and ((array_complex_pole = glob_large_float) or (array_complex_pole = glob_large_float))) 1, 1 1, 2 then (array_poles : glob_large_float, array_poles : glob_large_float, 1, 1 1, 2 found : true, array_type_pole : 3, if glob_display_flag 1 then omniout_str(ALWAYS, "NO POLE")), if (not found) and ((array_real_pole < array_complex_pole ) 1, 1 1, 1 and (array_real_pole > 0.0) and (array_real_pole > 1, 1 1, 2 0.0)) then (array_poles : array_real_pole , 1, 1 1, 1 array_poles : array_real_pole , found : true, array_type_pole : 1, 1, 2 1, 2 1 if glob_display_flag then omniout_str(ALWAYS, "Real estimate of pole used")), if (not found) and ((array_complex_pole # glob_large_float) 1, 1 and (array_complex_pole # glob_large_float) 1, 2 and (array_complex_pole > 0.0) and (array_complex_pole > 1, 1 1, 2 0.0)) then (array_poles : array_complex_pole , 1, 1 1, 1 array_poles : array_complex_pole , array_type_pole : 2, found : true, 1, 2 1, 2 1 if glob_display_flag then omniout_str(ALWAYS, "Complex estimate of poles used")), if not found then (array_poles : glob_large_float, array_poles : glob_large_float, 1, 1 1, 2 array_type_pole : 3, if glob_display_flag 1 then omniout_str(ALWAYS, "NO POLE")), array_pole : glob_large_float, 1 array_pole : glob_large_float, if array_pole > array_poles 2 1 1, 1 then (array_pole : array_poles , array_pole : array_poles ), 1 1, 1 2 1, 2 display_pole()) (%i7) get_norms() := if not glob_initial_pass then (set_z(array_norms, 1 + glob_max_terms), iii : 1, while iii <= glob_max_terms do (if !array_y ! > array_norms ! iii! iii then array_norms : !array_y !, iii : 1 + iii)) iii ! iii! (%o7) get_norms() := if not glob_initial_pass then (set_z(array_norms, 1 + glob_max_terms), iii : 1, while iii <= glob_max_terms do (if !array_y ! > array_norms ! iii! iii then array_norms : !array_y !, iii : 1 + iii)) iii ! iii! (%i8) atomall() := (array_tmp1 : array_m1 array_const_2D0 , 1 1 1 array_tmp1 array_tmp2 1 1 array_tmp2 : -----------, array_tmp3 : -----------, 1 array_x 1 array_x 1 1 array_tmp3 1 array_tmp4 : -----------, array_tmp5 : array_tmp4 + array_const_0D0 , 1 array_x 1 1 1 1 if not array_y_set_initial then (if 1 <= glob_max_terms 1, 2 1 then (temporary : array_tmp5 glob_h factorial_3(0, 1), 1 array_y : temporary, array_y_higher : temporary, 2 1, 2 temporary 2.0 temporary : -------------, array_y_higher : temporary)), kkk : 2, glob_h 2, 1 array_tmp1 : ats(2, array_m1, array_const_2D0, 1), 2 array_tmp1 - ats(2, array_x, array_tmp2, 2) 2 array_tmp2 : --------------------------------------------, 2 array_x 1 array_tmp2 - ats(2, array_x, array_tmp3, 2) 2 array_tmp3 : --------------------------------------------, 2 array_x 1 array_tmp3 - ats(2, array_x, array_tmp4, 2) 2 array_tmp4 : --------------------------------------------, 2 array_x 1 array_tmp5 : array_tmp4 + array_const_0D0 , 2 2 2 if not array_y_set_initial then (if 2 <= glob_max_terms 1, 3 1 then (temporary : array_tmp5 glob_h factorial_3(1, 2), 2 array_y : temporary, array_y_higher : temporary, 3 1, 3 temporary 2.0 temporary : -------------, array_y_higher : temporary)), kkk : 3, glob_h 2, 2 array_tmp1 : ats(3, array_m1, array_const_2D0, 1), 3 array_tmp1 - ats(3, array_x, array_tmp2, 2) 3 array_tmp2 : --------------------------------------------, 3 array_x 1 array_tmp2 - ats(3, array_x, array_tmp3, 2) 3 array_tmp3 : --------------------------------------------, 3 array_x 1 array_tmp3 - ats(3, array_x, array_tmp4, 2) 3 array_tmp4 : --------------------------------------------, 3 array_x 1 array_tmp5 : array_tmp4 + array_const_0D0 , 3 3 3 if not array_y_set_initial then (if 3 <= glob_max_terms 1, 4 1 then (temporary : array_tmp5 glob_h factorial_3(2, 3), 3 array_y : temporary, array_y_higher : temporary, 4 1, 4 temporary 2.0 temporary : -------------, array_y_higher : temporary)), kkk : 4, glob_h 2, 3 array_tmp1 : ats(4, array_m1, array_const_2D0, 1), 4 array_tmp1 - ats(4, array_x, array_tmp2, 2) 4 array_tmp2 : --------------------------------------------, 4 array_x 1 array_tmp2 - ats(4, array_x, array_tmp3, 2) 4 array_tmp3 : --------------------------------------------, 4 array_x 1 array_tmp3 - ats(4, array_x, array_tmp4, 2) 4 array_tmp4 : --------------------------------------------, 4 array_x 1 array_tmp5 : array_tmp4 + array_const_0D0 , 4 4 4 if not array_y_set_initial then (if 4 <= glob_max_terms 1, 5 1 then (temporary : array_tmp5 glob_h factorial_3(3, 4), 4 array_y : temporary, array_y_higher : temporary, 5 1, 5 temporary 2.0 temporary : -------------, array_y_higher : temporary)), kkk : 5, glob_h 2, 4 array_tmp1 : ats(5, array_m1, array_const_2D0, 1), 5 array_tmp1 - ats(5, array_x, array_tmp2, 2) 5 array_tmp2 : --------------------------------------------, 5 array_x 1 array_tmp2 - ats(5, array_x, array_tmp3, 2) 5 array_tmp3 : --------------------------------------------, 5 array_x 1 array_tmp3 - ats(5, array_x, array_tmp4, 2) 5 array_tmp4 : --------------------------------------------, 5 array_x 1 array_tmp5 : array_tmp4 + array_const_0D0 , 5 5 5 if not array_y_set_initial then (if 5 <= glob_max_terms 1, 6 1 then (temporary : array_tmp5 glob_h factorial_3(4, 5), 5 array_y : temporary, array_y_higher : temporary, 6 1, 6 temporary 2.0 temporary : -------------, array_y_higher : temporary)), kkk : 6, glob_h 2, 5 while kkk <= glob_max_terms do (array_tmp1 : kkk ats(kkk, array_m1, array_const_2D0, 1), array_tmp1 - ats(kkk, array_x, array_tmp2, 2) kkk array_tmp2 : ------------------------------------------------, kkk array_x 1 array_tmp2 - ats(kkk, array_x, array_tmp3, 2) kkk array_tmp3 : ------------------------------------------------, kkk array_x 1 array_tmp3 - ats(kkk, array_x, array_tmp4, 2) kkk array_tmp4 : ------------------------------------------------, kkk array_x 1 array_tmp5 : array_tmp4 + array_const_0D0 , order_d : 1, kkk kkk kkk if 1 + order_d + kkk <= glob_max_terms then (if not array_y_set_initial 1, order_d + kkk order_d array_tmp5 glob_h kkk then (temporary : -----------------------------------------, factorial_3(kkk - 1, - 1 + order_d + kkk) array_y : temporary, array_y_higher : temporary, order_d + kkk 1, order_d + kkk term : - 1 + order_d + kkk, adj2 : 2, while (adj2 <= 1 + order_d) temporary convfp(adj2) and (term >= 1) do (temporary : ----------------------, glob_h array_y_higher : temporary, adj2 : 1 + adj2, term : term - 1))), adj2, term kkk : 1 + kkk)) (%o8) atomall() := (array_tmp1 : array_m1 array_const_2D0 , 1 1 1 array_tmp1 array_tmp2 1 1 array_tmp2 : -----------, array_tmp3 : -----------, 1 array_x 1 array_x 1 1 array_tmp3 1 array_tmp4 : -----------, array_tmp5 : array_tmp4 + array_const_0D0 , 1 array_x 1 1 1 1 if not array_y_set_initial then (if 1 <= glob_max_terms 1, 2 1 then (temporary : array_tmp5 glob_h factorial_3(0, 1), 1 array_y : temporary, array_y_higher : temporary, 2 1, 2 temporary 2.0 temporary : -------------, array_y_higher : temporary)), kkk : 2, glob_h 2, 1 array_tmp1 : ats(2, array_m1, array_const_2D0, 1), 2 array_tmp1 - ats(2, array_x, array_tmp2, 2) 2 array_tmp2 : --------------------------------------------, 2 array_x 1 array_tmp2 - ats(2, array_x, array_tmp3, 2) 2 array_tmp3 : --------------------------------------------, 2 array_x 1 array_tmp3 - ats(2, array_x, array_tmp4, 2) 2 array_tmp4 : --------------------------------------------, 2 array_x 1 array_tmp5 : array_tmp4 + array_const_0D0 , 2 2 2 if not array_y_set_initial then (if 2 <= glob_max_terms 1, 3 1 then (temporary : array_tmp5 glob_h factorial_3(1, 2), 2 array_y : temporary, array_y_higher : temporary, 3 1, 3 temporary 2.0 temporary : -------------, array_y_higher : temporary)), kkk : 3, glob_h 2, 2 array_tmp1 : ats(3, array_m1, array_const_2D0, 1), 3 array_tmp1 - ats(3, array_x, array_tmp2, 2) 3 array_tmp2 : --------------------------------------------, 3 array_x 1 array_tmp2 - ats(3, array_x, array_tmp3, 2) 3 array_tmp3 : --------------------------------------------, 3 array_x 1 array_tmp3 - ats(3, array_x, array_tmp4, 2) 3 array_tmp4 : --------------------------------------------, 3 array_x 1 array_tmp5 : array_tmp4 + array_const_0D0 , 3 3 3 if not array_y_set_initial then (if 3 <= glob_max_terms 1, 4 1 then (temporary : array_tmp5 glob_h factorial_3(2, 3), 3 array_y : temporary, array_y_higher : temporary, 4 1, 4 temporary 2.0 temporary : -------------, array_y_higher : temporary)), kkk : 4, glob_h 2, 3 array_tmp1 : ats(4, array_m1, array_const_2D0, 1), 4 array_tmp1 - ats(4, array_x, array_tmp2, 2) 4 array_tmp2 : --------------------------------------------, 4 array_x 1 array_tmp2 - ats(4, array_x, array_tmp3, 2) 4 array_tmp3 : --------------------------------------------, 4 array_x 1 array_tmp3 - ats(4, array_x, array_tmp4, 2) 4 array_tmp4 : --------------------------------------------, 4 array_x 1 array_tmp5 : array_tmp4 + array_const_0D0 , 4 4 4 if not array_y_set_initial then (if 4 <= glob_max_terms 1, 5 1 then (temporary : array_tmp5 glob_h factorial_3(3, 4), 4 array_y : temporary, array_y_higher : temporary, 5 1, 5 temporary 2.0 temporary : -------------, array_y_higher : temporary)), kkk : 5, glob_h 2, 4 array_tmp1 : ats(5, array_m1, array_const_2D0, 1), 5 array_tmp1 - ats(5, array_x, array_tmp2, 2) 5 array_tmp2 : --------------------------------------------, 5 array_x 1 array_tmp2 - ats(5, array_x, array_tmp3, 2) 5 array_tmp3 : --------------------------------------------, 5 array_x 1 array_tmp3 - ats(5, array_x, array_tmp4, 2) 5 array_tmp4 : --------------------------------------------, 5 array_x 1 array_tmp5 : array_tmp4 + array_const_0D0 , 5 5 5 if not array_y_set_initial then (if 5 <= glob_max_terms 1, 6 1 then (temporary : array_tmp5 glob_h factorial_3(4, 5), 5 array_y : temporary, array_y_higher : temporary, 6 1, 6 temporary 2.0 temporary : -------------, array_y_higher : temporary)), kkk : 6, glob_h 2, 5 while kkk <= glob_max_terms do (array_tmp1 : kkk ats(kkk, array_m1, array_const_2D0, 1), array_tmp1 - ats(kkk, array_x, array_tmp2, 2) kkk array_tmp2 : ------------------------------------------------, kkk array_x 1 array_tmp2 - ats(kkk, array_x, array_tmp3, 2) kkk array_tmp3 : ------------------------------------------------, kkk array_x 1 array_tmp3 - ats(kkk, array_x, array_tmp4, 2) kkk array_tmp4 : ------------------------------------------------, kkk array_x 1 array_tmp5 : array_tmp4 + array_const_0D0 , order_d : 1, kkk kkk kkk if 1 + order_d + kkk <= glob_max_terms then (if not array_y_set_initial 1, order_d + kkk order_d array_tmp5 glob_h kkk then (temporary : -----------------------------------------, factorial_3(kkk - 1, - 1 + order_d + kkk) array_y : temporary, array_y_higher : temporary, order_d + kkk 1, order_d + kkk term : - 1 + order_d + kkk, adj2 : 2, while (adj2 <= 1 + order_d) temporary convfp(adj2) and (term >= 1) do (temporary : ----------------------, glob_h array_y_higher : temporary, adj2 : 1 + adj2, term : term - 1))), adj2, term kkk : 1 + kkk)) log(x) (%i9) log10(x) := --------- log(10.0) log(x) (%o9) log10(x) := --------- log(10.0) (%i10) omniout_str(iolevel, str) := if glob_iolevel >= iolevel then printf(true, "~a~%", string(str)) (%o10) omniout_str(iolevel, str) := if glob_iolevel >= iolevel then printf(true, "~a~%", string(str)) (%i11) omniout_str_noeol(iolevel, str) := if glob_iolevel >= iolevel then printf(true, "~a", string(str)) (%o11) omniout_str_noeol(iolevel, str) := if glob_iolevel >= iolevel then printf(true, "~a", string(str)) (%i12) omniout_labstr(iolevel, label, str) := if glob_iolevel >= iolevel then printf(true, "~a = ~a~%", string(label), string(str)) (%o12) omniout_labstr(iolevel, label, str) := if glob_iolevel >= iolevel then printf(true, "~a = ~a~%", string(label), string(str)) (%i13) omniout_float(iolevel, prelabel, prelen, value, vallen, postlabel) := if glob_iolevel >= iolevel then (if vallen = 4 then printf(true, "~a = ~g ~s ~%", prelabel, value, postlabel) else printf(true, "~a = ~g ~s ~%", prelabel, value, postlabel)) (%o13) omniout_float(iolevel, prelabel, prelen, value, vallen, postlabel) := if glob_iolevel >= iolevel then (if vallen = 4 then printf(true, "~a = ~g ~s ~%", prelabel, value, postlabel) else printf(true, "~a = ~g ~s ~%", prelabel, value, postlabel)) (%i14) omniout_int(iolevel, prelabel, prelen, value, vallen, postlabel) := if glob_iolevel >= iolevel then (printf(true, "~a = ~d ~a~%", prelabel, value, postlabel), newline()) (%o14) omniout_int(iolevel, prelabel, prelen, value, vallen, postlabel) := if glob_iolevel >= iolevel then (printf(true, "~a = ~d ~a~%", prelabel, value, postlabel), newline()) (%i15) omniout_float_arr(iolevel, prelabel, elemnt, prelen, value, vallen, postlabel) := if glob_iolevel >= iolevel then (sprint(prelabel, "[", elemnt, "]=", value, postlabel), newline()) (%o15) omniout_float_arr(iolevel, prelabel, elemnt, prelen, value, vallen, postlabel) := if glob_iolevel >= iolevel then (sprint(prelabel, "[", elemnt, "]=", value, postlabel), newline()) (%i16) dump_series(iolevel, dump_label, series_name, array_series, numb) := if glob_iolevel >= iolevel then (i : 1, while i <= numb do (sprint(dump_label, series_name, "i = ", i, "series = ", array_series ), newline(), i : 1 + i)) i (%o16) dump_series(iolevel, dump_label, series_name, array_series, numb) := if glob_iolevel >= iolevel then (i : 1, while i <= numb do (sprint(dump_label, series_name, "i = ", i, "series = ", array_series ), newline(), i : 1 + i)) i (%i17) dump_series_2(iolevel, dump_label, series_name, array_series2, numb, subnum) := if glob_iolevel >= iolevel then (sub : 1, while sub <= subnum do (i : 1, while i <= num do (sprint(dump_label, series_name, "sub = ", sub, "i = ", i, "series2 = ", array_series2 ), i : 1 + i), sub : 1 + sub)) sub, i (%o17) dump_series_2(iolevel, dump_label, series_name, array_series2, numb, subnum) := if glob_iolevel >= iolevel then (sub : 1, while sub <= subnum do (i : 1, while i <= num do (sprint(dump_label, series_name, "sub = ", sub, "i = ", i, "series2 = ", array_series2 ), i : 1 + i), sub : 1 + sub)) sub, i (%i18) cs_info(iolevel, str) := if glob_iolevel >= iolevel then sprint(concat("cs_info ", str, " glob_correct_start_flag = ", glob_correct_start_flag, "glob_h := ", glob_h, "glob_reached_optimal_h := ", glob_reached_optimal_h)) (%o18) cs_info(iolevel, str) := if glob_iolevel >= iolevel then sprint(concat("cs_info ", str, " glob_correct_start_flag = ", glob_correct_start_flag, "glob_h := ", glob_h, "glob_reached_optimal_h := ", glob_reached_optimal_h)) (%i19) logitem_time(fd, secs_in) := (secs : secs_in, printf(fd, ""), if secs >= 0.0 then (sec_in_millinium : sec_in_min min_in_hour hours_in_day days_in_year years_in_century secs centuries_in_millinium, milliniums : ----------------, sec_in_millinium millinium_int : floor(milliniums), centuries : (milliniums - millinium_int) centuries_in_millinium, cent_int : floor(centuries), years : (centuries - cent_int) years_in_century, years_int : floor(years), days : (years - years_int) days_in_year, days_int : floor(days), hours : (days - days_int) hours_in_day, hours_int : floor(hours), minutes : (hours - hours_int) min_in_hour, minutes_int : floor(minutes), seconds : (minutes - minutes_int) sec_in_min, sec_int : floor(seconds), if millinium_int > 0 then printf(fd, "~d Millinia ~d\ Centuries ~d Years ~d Days ~d Hours ~d Minutes ~d Seconds", millinium_int, cent_int, years_int, days_int, hours_int, minutes_int, sec_int) elseif cent_int > 0 then printf(fd, "~d Centuries ~d Years ~d Days ~d Hours ~d Minutes ~d Seconds", cent_int, years_int, days_int, hours_int, minutes_int, sec_int) elseif years_int > 0 then printf(fd, "~d Years ~d Days ~d Hours ~d Minutes ~d Seconds", years_int, days_int, hours_int, minutes_int, sec_int) elseif days_int > 0 then printf(fd, "~d Days ~d Hours ~d Minutes ~d Seconds", days_int, hours_int, minutes_int, sec_int) elseif hours_int > 0 then printf(fd, "~d Hours ~d Minutes ~d Seconds", hours_int, minutes_int, sec_int) elseif minutes_int > 0 then printf(fd, "~d Minutes ~d Seconds", minutes_int, sec_int) else printf(fd, "~d Seconds", sec_int)) else printf(fd, "Unknown"), printf(fd, "")) (%o19) logitem_time(fd, secs_in) := (secs : secs_in, printf(fd, ""), if secs >= 0.0 then (sec_in_millinium : sec_in_min min_in_hour hours_in_day days_in_year years_in_century secs centuries_in_millinium, milliniums : ----------------, sec_in_millinium millinium_int : floor(milliniums), centuries : (milliniums - millinium_int) centuries_in_millinium, cent_int : floor(centuries), years : (centuries - cent_int) years_in_century, years_int : floor(years), days : (years - years_int) days_in_year, days_int : floor(days), hours : (days - days_int) hours_in_day, hours_int : floor(hours), minutes : (hours - hours_int) min_in_hour, minutes_int : floor(minutes), seconds : (minutes - minutes_int) sec_in_min, sec_int : floor(seconds), if millinium_int > 0 then printf(fd, "~d Millinia ~d\ Centuries ~d Years ~d Days ~d Hours ~d Minutes ~d Seconds", millinium_int, cent_int, years_int, days_int, hours_int, minutes_int, sec_int) elseif cent_int > 0 then printf(fd, "~d Centuries ~d Years ~d Days ~d Hours ~d Minutes ~d Seconds", cent_int, years_int, days_int, hours_int, minutes_int, sec_int) elseif years_int > 0 then printf(fd, "~d Years ~d Days ~d Hours ~d Minutes ~d Seconds", years_int, days_int, hours_int, minutes_int, sec_int) elseif days_int > 0 then printf(fd, "~d Days ~d Hours ~d Minutes ~d Seconds", days_int, hours_int, minutes_int, sec_int) elseif hours_int > 0 then printf(fd, "~d Hours ~d Minutes ~d Seconds", hours_int, minutes_int, sec_int) elseif minutes_int > 0 then printf(fd, "~d Minutes ~d Seconds", minutes_int, sec_int) else printf(fd, "~d Seconds", sec_int)) else printf(fd, "Unknown"), printf(fd, "")) (%i20) omniout_timestr(secs_in) := (secs : convfloat(secs_in), if secs >= convfloat(0.0) then (sec_in_millinium : convfloat(sec_in_min) convfloat(min_in_hour) convfloat(hours_in_day) convfloat(days_in_year) convfloat(years_in_century) secs convfloat(centuries_in_millinium), milliniums : ---------------------------, convfloat(sec_in_millinium) millinium_int : floor(milliniums), centuries : (milliniums - millinium_int) convfloat(centuries_in_millinium), cent_int : floor(centuries), years : (centuries - cent_int) convfloat(years_in_century), years_int : floor(years), days : (years - years_int) convfloat(days_in_year), days_int : floor(days), hours : (days - days_int) convfloat(hours_in_day), hours_int : floor(hours), minutes : (hours - hours_int) convfloat(min_in_hour), minutes_int : floor(minutes), seconds : (minutes - minutes_int) convfloat(sec_in_min), sec_int : floor(seconds), if millinium_int > 0 then printf(true, "= ~d Millinia ~d Centuries ~d Years ~d Days ~d Hours ~d Minutes ~d Seconds~%", millinium_int, cent_int, years_int, days_int, hours_int, minutes_int, sec_int) elseif cent_int > 0 then printf(true, "= ~d Centuries ~d Years ~d Days ~d Hours ~d Minutes ~d Seconds~%", cent_int, years_int, days_int, hours_int, minutes_int, sec_int) elseif years_int > 0 then printf(true, "= ~d Years ~d Days ~d Hours ~d Minutes ~d Seconds~%", years_int, days_int, hours_int, minutes_int, sec_int) elseif days_int > 0 then printf(true, "= ~d Days ~d Hours ~d Minutes ~d Seconds~%", days_int, hours_int, minutes_int, sec_int) elseif hours_int > 0 then printf(true, "= ~d Hours ~d Minutes ~d Seconds~%", hours_int, minutes_int, sec_int) elseif minutes_int > 0 then printf(true, "= ~d Minutes ~d Seconds~%", minutes_int, sec_int) else printf(true, "= ~d Seconds~%", sec_int)) else printf(true, " Unknown~%")) (%o20) omniout_timestr(secs_in) := (secs : convfloat(secs_in), if secs >= convfloat(0.0) then (sec_in_millinium : convfloat(sec_in_min) convfloat(min_in_hour) convfloat(hours_in_day) convfloat(days_in_year) convfloat(years_in_century) secs convfloat(centuries_in_millinium), milliniums : ---------------------------, convfloat(sec_in_millinium) millinium_int : floor(milliniums), centuries : (milliniums - millinium_int) convfloat(centuries_in_millinium), cent_int : floor(centuries), years : (centuries - cent_int) convfloat(years_in_century), years_int : floor(years), days : (years - years_int) convfloat(days_in_year), days_int : floor(days), hours : (days - days_int) convfloat(hours_in_day), hours_int : floor(hours), minutes : (hours - hours_int) convfloat(min_in_hour), minutes_int : floor(minutes), seconds : (minutes - minutes_int) convfloat(sec_in_min), sec_int : floor(seconds), if millinium_int > 0 then printf(true, "= ~d Millinia ~d Centuries ~d Years ~d Days ~d Hours ~d Minutes ~d Seconds~%", millinium_int, cent_int, years_int, days_int, hours_int, minutes_int, sec_int) elseif cent_int > 0 then printf(true, "= ~d Centuries ~d Years ~d Days ~d Hours ~d Minutes ~d Seconds~%", cent_int, years_int, days_int, hours_int, minutes_int, sec_int) elseif years_int > 0 then printf(true, "= ~d Years ~d Days ~d Hours ~d Minutes ~d Seconds~%", years_int, days_int, hours_int, minutes_int, sec_int) elseif days_int > 0 then printf(true, "= ~d Days ~d Hours ~d Minutes ~d Seconds~%", days_int, hours_int, minutes_int, sec_int) elseif hours_int > 0 then printf(true, "= ~d Hours ~d Minutes ~d Seconds~%", hours_int, minutes_int, sec_int) elseif minutes_int > 0 then printf(true, "= ~d Minutes ~d Seconds~%", minutes_int, sec_int) else printf(true, "= ~d Seconds~%", sec_int)) else printf(true, " Unknown~%")) (%i21) mode_declare(ats, bfloat) modedeclare: bfloat is not a built-in type; assuming it is a Maxima extension type. (%o21) [ats] (%i22) ats(mmm_ats, array_a, array_b, jjj_ats) := (ret_ats : 0.0, if jjj_ats <= mmm_ats then (ma_ats : 1 + mmm_ats, iii_ats : jjj_ats, while iii_ats <= mmm_ats do (lll_ats : ma_ats - iii_ats, ret_ats : array_a array_b + ret_ats, iii_ats : 1 + iii_ats)), iii_ats lll_ats ret_ats) (%o22) ats(mmm_ats, array_a, array_b, jjj_ats) := (ret_ats : 0.0, if jjj_ats <= mmm_ats then (ma_ats : 1 + mmm_ats, iii_ats : jjj_ats, while iii_ats <= mmm_ats do (lll_ats : ma_ats - iii_ats, ret_ats : array_a array_b + ret_ats, iii_ats : 1 + iii_ats)), iii_ats lll_ats ret_ats) (%i23) mode_declare(att, bfloat) modedeclare: bfloat is not a built-in type; assuming it is a Maxima extension type. (%o23) [att] (%i24) att(mmm_att, array_aa, array_bb, jjj_att) := (ret_att : 0.0, if jjj_att <= mmm_att then (ma_att : 2 + mmm_att, 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 : array_aa array_bb convfp(al_att) + ret_att, iii_att lll_att ret_att iii_att : 1 + iii_att), ret_att : ---------------), ret_att) convfp(mmm_att) (%o24) att(mmm_att, array_aa, array_bb, jjj_att) := (ret_att : 0.0, if jjj_att <= mmm_att then (ma_att : 2 + mmm_att, 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 : array_aa array_bb convfp(al_att) + ret_att, iii_att lll_att ret_att iii_att : 1 + iii_att), ret_att : ---------------), ret_att) convfp(mmm_att) (%i25) display_pole() := if (array_pole # glob_large_float) 1 and (array_pole > 0.0) and (array_pole # glob_large_float) 1 2 and (array_pole > 0.0) and glob_display_flag 2 then (omniout_float(ALWAYS, "Radius of convergence ", 4, array_pole , 4, " "), omniout_float(ALWAYS, 1 "Order of pole ", 4, array_pole , 4, " ")) 2 (%o25) display_pole() := if (array_pole # glob_large_float) 1 and (array_pole > 0.0) and (array_pole # glob_large_float) 1 2 and (array_pole > 0.0) and glob_display_flag 2 then (omniout_float(ALWAYS, "Radius of convergence ", 4, array_pole , 4, " "), omniout_float(ALWAYS, 1 "Order of pole ", 4, array_pole , 4, " ")) 2 (%i26) logditto(file) := (printf(file, ""), printf(file, "ditto"), printf(file, "")) (%o26) logditto(file) := (printf(file, ""), printf(file, "ditto"), printf(file, "")) (%i27) logitem_integer(file, n) := (printf(file, ""), printf(file, "~d", n), printf(file, "")) (%o27) logitem_integer(file, n) := (printf(file, ""), printf(file, "~d", n), printf(file, "")) (%i28) logitem_str(file, str) := (printf(file, ""), printf(file, str), printf(file, "")) (%o28) logitem_str(file, str) := (printf(file, ""), printf(file, str), printf(file, "")) (%i29) log_revs(file, revs) := printf(file, revs) (%o29) log_revs(file, revs) := printf(file, revs) (%i30) logitem_float(file, x) := (printf(file, ""), printf(file, "~g", x), printf(file, "")) (%o30) logitem_float(file, x) := (printf(file, ""), printf(file, "~g", x), printf(file, "")) (%i31) logitem_pole(file, pole) := (printf(file, ""), if pole = 0 then printf(file, "NA") elseif pole = 1 then printf(file, "Real") elseif pole = 2 then printf(file, "Complex") else printf(file, "No Pole"), printf(file, "")) (%o31) logitem_pole(file, pole) := (printf(file, ""), if pole = 0 then printf(file, "NA") elseif pole = 1 then printf(file, "Real") elseif pole = 2 then printf(file, "Complex") else printf(file, "No Pole"), printf(file, "")) (%i32) logstart(file) := printf(file, "") (%o32) logstart(file) := printf(file, "") (%i33) logend(file) := printf(file, "~%") (%o33) logend(file) := printf(file, "~%") (%i34) chk_data() := (errflag : false, if (glob_max_terms < 15) or (glob_max_terms > 512) then (omniout_str(ALWAYS, "Illegal max_terms = -- Using 30"), glob_max_terms : 30), if glob_max_iter < 2 then (omniout_str(ALWAYS, "Illegal max_iter"), errflag : true), if errflag then quit()) (%o34) chk_data() := (errflag : false, if (glob_max_terms < 15) or (glob_max_terms > 512) then (omniout_str(ALWAYS, "Illegal max_terms = -- Using 30"), glob_max_terms : 30), if glob_max_iter < 2 then (omniout_str(ALWAYS, "Illegal max_iter"), errflag : true), if errflag then quit()) (%i35) mode_declare(comp_expect_sec, bfloat) modedeclare: bfloat is not a built-in type; assuming it is a Maxima extension type. (%o35) [comp_expect_sec] (%i36) comp_expect_sec(t_end2, t_start2, t2, clock_sec) := (ms2 : clock_sec, sub1 : t_end2 - t_start2, sub2 : t2 - t_start2, if sub1 = 0.0 then sec_left : 0.0 else (if abs(sub2) > 0.0 sub1 then (rrr : ----, sec_left : rrr ms2 - ms2) else sec_left : 0.0), sec_left) sub2 (%o36) comp_expect_sec(t_end2, t_start2, t2, clock_sec) := (ms2 : clock_sec, sub1 : t_end2 - t_start2, sub2 : t2 - t_start2, if sub1 = 0.0 then sec_left : 0.0 else (if abs(sub2) > 0.0 sub1 then (rrr : ----, sec_left : rrr ms2 - ms2) else sec_left : 0.0), sec_left) sub2 (%i37) mode_declare(comp_percent, bfloat) modedeclare: bfloat is not a built-in type; assuming it is a Maxima extension type. (%o37) [comp_percent] (%i38) comp_percent(t_end2, t_start2, t2) := (sub1 : t_end2 - t_start2, sub2 : t2 - t_start2, 100.0 sub2 if abs(sub2) > glob_small_float then rrr : ---------- else rrr : 0.0, rrr) sub1 (%o38) comp_percent(t_end2, t_start2, t2) := (sub1 : t_end2 - t_start2, sub2 : t2 - t_start2, 100.0 sub2 if abs(sub2) > glob_small_float then rrr : ---------- else rrr : 0.0, rrr) sub1 (%i39) mode_declare(factorial_1, bfloat) modedeclare: bfloat is not a built-in type; assuming it is a Maxima extension type. (%o39) [factorial_1] (%i40) factorial_1(nnn) := nnn! (%o40) factorial_1(nnn) := nnn! (%i41) mode_declare(factorial_3, bfloat) modedeclare: bfloat is not a built-in type; assuming it is a Maxima extension type. (%o41) [factorial_3] mmm2! (%i42) factorial_3(mmm2, nnn2) := ----- nnn2! mmm2! (%o42) factorial_3(mmm2, nnn2) := ----- nnn2! (%i43) convfp(mmm) := mmm (%o43) convfp(mmm) := mmm (%i44) convfloat(mmm) := mmm (%o44) convfloat(mmm) := mmm (%i45) elapsed_time_seconds() := (t : elapsed_real_time(), t) (%o45) elapsed_time_seconds() := (t : elapsed_real_time(), t) (%i46) arcsin(x) := asin(x) (%o46) arcsin(x) := asin(x) (%i47) arccos(x) := acos(x) (%o47) arccos(x) := acos(x) (%i48) arctan(x) := atan(x) (%o48) arctan(x) := atan(x) 1.0 --- x (%i49) exact_soln_y(x) := --- x 1.0 --- x (%o49) exact_soln_y(x) := --- x (%i50) mainprog() := (define_variable(DEBUGMASSIVE, 4, fixnum), define_variable(ALWAYS, 1, fixnum), define_variable(INFO, 2, fixnum), define_variable(glob_iolevel, 5, fixnum), define_variable(glob_max_terms, 30, fixnum), define_variable(DEBUGL, 3, fixnum), define_variable(glob_start, 0, fixnum), define_variable(glob_max_sec, 10000.0, float), define_variable(glob_max_hours, 0.0, float), define_variable(glob_not_yet_finished, true, boolean), define_variable(glob_clock_start_sec, 0.0, float), define_variable(days_in_year, 365.0, float), define_variable(hours_in_day, 24.0, float), define_variable(djd_debug2, true, boolean), define_variable(glob_percent_done, 0.0, float), define_variable(glob_unchanged_h_cnt, 0, fixnum), define_variable(glob_optimal_clock_start_sec, 0.0, float), define_variable(glob_large_float, 9.0E+100, float), define_variable(glob_max_iter, 1000, fixnum), define_variable(glob_relerr, 1.0E-11, float), define_variable(glob_reached_optimal_h, false, boolean), define_variable(glob_orig_start_sec, 0.0, float), define_variable(glob_look_poles, false, boolean), define_variable(glob_hmin_init, 0.001, float), define_variable(glob_iter, 0, fixnum), define_variable(glob_hmin, 1.0E-11, float), define_variable(sec_in_min, 60.0, float), define_variable(djd_debug, true, boolean), define_variable(glob_smallish_float, 1.0E-101, float), define_variable(glob_optimal_start, 0.0, float), define_variable(glob_h, 0.1, float), define_variable(glob_almost_1, 0.999, float), define_variable(glob_curr_iter_when_opt, 0, fixnum), define_variable(glob_warned2, false, boolean), define_variable(glob_small_float, 1.0E-51, float), define_variable(glob_abserr, 1.0E-11, float), define_variable(glob_dump, false, boolean), define_variable(glob_log10abserr, 0.0, float), define_variable(glob_normmax, 0.0, float), define_variable(glob_current_iter, 0, fixnum), define_variable(glob_max_trunc_err, 1.0E-11, float), define_variable(glob_log10_relerr, 1.0E-11, float), define_variable(glob_hmax, 1.0, float), define_variable(glob_html_log, true, boolean), define_variable(glob_subiter_method, 3, fixnum), define_variable(glob_max_minutes, 0.0, float), define_variable(glob_dump_analytic, false, boolean), define_variable(glob_disp_incr, 0.1, float), define_variable(centuries_in_millinium, 10.0, float), define_variable(glob_max_opt_iter, 10, fixnum), define_variable(glob_optimal_expect_sec, 0.1, float), define_variable(glob_log10relerr, 0.0, float), define_variable(glob_warned, false, boolean), define_variable(glob_max_rel_trunc_err, 1.0E-11, float), define_variable(glob_log10_abserr, 1.0E-11, float), define_variable(glob_last_good_h, 0.1, float), define_variable(glob_optimal_done, false, boolean), define_variable(glob_not_yet_start_msg, true, boolean), define_variable(glob_initial_pass, true, boolean), define_variable(glob_clock_sec, 0.0, float), define_variable(glob_log10normmin, 0.1, float), define_variable(MAX_UNCHANGED, 10, fixnum), define_variable(glob_no_eqs, 0, fixnum), define_variable(years_in_century, 100.0, float), define_variable(min_in_hour, 60.0, float), define_variable(glob_display_flag, true, boolean), ALWAYS : 1, INFO : 2, DEBUGL : 3, DEBUGMASSIVE : 4, glob_iolevel : INFO, 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/sing3postode.ode#################"), omniout_str(ALWAYS, "diff ( y , x , 1 ) = m1 * 2.0 / x / x / x ;"), omniout_str(ALWAYS, "!"), omniout_str(ALWAYS, "/* BEGIN FIRST INPUT BLOCK */"), omniout_str(ALWAYS, "Digits : 100,"), 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 : -1.0,"), omniout_str(ALWAYS, "x_end : -0.7,"), omniout_str(ALWAYS, "array_y_init[0 + 1] : exact_soln_y(x_start),"), omniout_str(ALWAYS, "glob_h : 0.1,"), omniout_str(ALWAYS, "glob_look_poles : true,"), omniout_str(ALWAYS, "glob_max_iter : 100000,"), omniout_str(ALWAYS, "/* END SECOND INPUT BLOCK */"), omniout_str(ALWAYS, "/* BEGIN OVERRIDE BLOCK */"), omniout_str(ALWAYS, "glob_h : 0.0001 ,"), omniout_str(ALWAYS, "glob_look_poles : true,"), omniout_str(ALWAYS, "glob_max_iter : 1000,"), omniout_str(ALWAYS, "glob_max_minutes : 15,"), omniout_str(ALWAYS, "/* END OVERRIDE BLOCK */"), omniout_str(ALWAYS, "!"), omniout_str(ALWAYS, "/* BEGIN USER DEF BLOCK */"), omniout_str(ALWAYS, "exact_soln_y (x) := ("), omniout_str(ALWAYS, "1.0/x/x "), omniout_str(ALWAYS, ");"), omniout_str(ALWAYS, ""), omniout_str(ALWAYS, ""), omniout_str(ALWAYS, "/* END USER DEF BLOCK */"), omniout_str(ALWAYS, "#######END OF ECHO OF PROBLEM#################"), glob_unchanged_h_cnt : 0, glob_warned : false, glob_warned2 : false, glob_small_float : 1.0E-200, glob_smallish_float : 1.0E-64, glob_large_float : 1.0E+100, glob_almost_1 : 0.99, glob_log10_abserr : - 8.0, glob_log10_relerr : - 8.0, glob_hmax : 0.01, Digits : 100, max_terms : 30, glob_max_terms : max_terms, glob_html_log : true, array(array_y_init, 1 + max_terms), array(array_tmp0, 1 + max_terms), array(array_tmp1, 1 + max_terms), array(array_tmp2, 1 + max_terms), array(array_tmp3, 1 + max_terms), array(array_tmp4, 1 + max_terms), array(array_tmp5, 1 + max_terms), array(array_pole, 1 + max_terms), array(array_m1, 1 + max_terms), array(array_y, 1 + max_terms), array(array_x, 1 + max_terms), array(array_last_rel_error, 1 + max_terms), array(array_norms, 1 + max_terms), array(array_type_pole, 1 + max_terms), array(array_1st_rel_error, 1 + max_terms), array(array_y_higher_work2, 1 + 2, 1 + max_terms), array(array_y_higher_work, 1 + 2, 1 + max_terms), array(array_complex_pole, 1 + 1, 1 + 3), array(array_poles, 1 + 1, 1 + 3), array(array_y_higher, 1 + 2, 1 + max_terms), array(array_real_pole, 1 + 1, 1 + 3), array(array_y_set_initial, 1 + 2, 1 + max_terms), term : 1, while term <= max_terms do (array_y_init : 0.0, term term : 1 + term), term : 1, while term <= max_terms do (array_tmp0 : 0.0, term term : 1 + term), term : 1, while term <= max_terms do (array_tmp1 : 0.0, term term : 1 + term), term : 1, while term <= max_terms do (array_tmp2 : 0.0, term term : 1 + term), term : 1, while term <= max_terms do (array_tmp3 : 0.0, term term : 1 + term), term : 1, while term <= max_terms do (array_tmp4 : 0.0, term term : 1 + term), term : 1, while term <= max_terms do (array_tmp5 : 0.0, term term : 1 + term), term : 1, while term <= max_terms do (array_pole : 0.0, term term : 1 + term), term : 1, while term <= max_terms do (array_m1 : 0.0, term term : 1 + term), term : 1, while term <= max_terms do (array_y : 0.0, term term : 1 + term), term : 1, while term <= max_terms do (array_x : 0.0, term term : 1 + term), term : 1, while term <= max_terms do (array_last_rel_error : 0.0, term : 1 + term), term : 1, term while term <= max_terms do (array_norms : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_type_pole : 0.0, term term : 1 + term), term : 1, while term <= max_terms do (array_1st_rel_error : 0.0, term : 1 + term), ord : 1, term while ord <= 2 do (term : 1, while term <= max_terms do (array_y_higher_work2 : 0.0, term : 1 + term), ord, term ord : 1 + ord), ord : 1, while ord <= 2 do (term : 1, while term <= max_terms do (array_y_higher_work : 0.0, ord, term term : 1 + term), ord : 1 + ord), ord : 1, while ord <= 1 do (term : 1, while term <= 3 do (array_complex_pole : 0.0, term : 1 + term), ord : 1 + ord), ord, term ord : 1, while ord <= 1 do (term : 1, while term <= 3 do (array_poles : 0.0, term : 1 + term), ord, term ord : 1 + ord), ord : 1, while ord <= 2 do (term : 1, while term <= max_terms do (array_y_higher : 0.0, term : 1 + term), ord, term ord : 1 + ord), ord : 1, while ord <= 1 do (term : 1, while term <= 3 do (array_real_pole : 0.0, term : 1 + term), ord, term ord : 1 + ord), ord : 1, while ord <= 2 do (term : 1, while term <= max_terms do (array_y_set_initial : 0.0, ord, term term : 1 + term), ord : 1 + ord), array(array_tmp5, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_tmp5 : 0.0, term term : 1 + term), array(array_tmp4, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_tmp4 : 0.0, term : 1 + term), term array(array_tmp3, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_tmp3 : 0.0, term : 1 + term), term array(array_tmp2, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_tmp2 : 0.0, term : 1 + term), term array(array_tmp1, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_tmp1 : 0.0, term : 1 + term), term array(array_tmp0, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_tmp0 : 0.0, term : 1 + term), term array(array_m1, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_m1 : 0.0, term : 1 + term), term array(array_x, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_x : 0.0, term : 1 + term), term array(array_y, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_y : 0.0, term : 1 + term), term array(array_const_1, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_const_1 : 0.0, term : 1 + term), term array_const_1 : 1, array(array_const_0D0, 1 + 1 + max_terms), term : 1, 1 while term <= 1 + max_terms do (array_const_0D0 : 0.0, term : 1 + term), term array_const_0D0 : 0.0, array(array_const_2D0, 1 + 1 + max_terms), term : 1, 1 while term <= 1 + max_terms do (array_const_2D0 : 0.0, term : 1 + term), term array_const_2D0 : 2.0, array(array_m1, 1 + 1 + max_terms), term : 1, 1 while term <= max_terms do (array_m1 : 0.0, term : 1 + term), term array_m1 : - 1.0, x_start : - 1.0, x_end : - 0.7, 1 array_y_init : exact_soln_y(x_start), glob_h : 0.1, 1 + 0 glob_look_poles : true, glob_max_iter : 100000, glob_h : 1.0E-4, glob_look_poles : true, glob_max_iter : 1000, glob_max_minutes : 15, glob_last_good_h : glob_h, glob_max_terms : max_terms, glob_max_sec : convfloat(3600.0) convfloat(glob_max_hours) + convfloat(60.0) convfloat(glob_max_minutes), glob_log10_abserr glob_log10_relerr glob_abserr : 10.0 , glob_relerr : 10.0 , chk_data(), array_y_set_initial : true, array_y_set_initial : false, 1, 1 1, 2 array_y_set_initial : false, array_y_set_initial : false, 1, 3 1, 4 array_y_set_initial : false, array_y_set_initial : false, 1, 5 1, 6 array_y_set_initial : false, array_y_set_initial : false, 1, 7 1, 8 array_y_set_initial : false, array_y_set_initial : false, 1, 9 1, 10 array_y_set_initial : false, array_y_set_initial : false, 1, 11 1, 12 array_y_set_initial : false, array_y_set_initial : false, 1, 13 1, 14 array_y_set_initial : false, array_y_set_initial : false, 1, 15 1, 16 array_y_set_initial : false, array_y_set_initial : false, 1, 17 1, 18 array_y_set_initial : false, array_y_set_initial : false, 1, 19 1, 20 array_y_set_initial : false, array_y_set_initial : false, 1, 21 1, 22 array_y_set_initial : false, array_y_set_initial : false, 1, 23 1, 24 array_y_set_initial : false, array_y_set_initial : false, 1, 25 1, 26 array_y_set_initial : false, array_y_set_initial : false, 1, 27 1, 28 array_y_set_initial : false, array_y_set_initial : false, 1, 29 1, 30 if glob_html_log then html_log_file : openw("html/entry.html"), omniout_str(ALWAYS, "START of Soultion"), array_x : x_start, 1 array_x : glob_h, order_diff : 1, term_no : 1, 2 while term_no <= order_diff do (array_y : term_no term_no - 1 array_y_init glob_h term_no -------------------------------------, term_no : 1 + term_no), factorial_1(term_no - 1) rows : order_diff, r_order : 1, while r_order <= rows do (term_no : 1, while term_no <= 1 - r_order + rows do (it : - 1 + r_order + term_no, term_no - 1 array_y_init glob_h it array_y_higher : --------------------------------, r_order, term_no factorial_1(term_no - 1) term_no : 1 + term_no), r_order : 1 + r_order), current_iter : 1, glob_clock_start_sec : elapsed_time_seconds(), start_array_y(), if !array_y_higher ! > glob_small_float ! 1, 1! then (tmp : !array_y_higher !, log10norm : log10(tmp), ! 1, 1! if log10norm < glob_log10normmin then glob_log10normmin : log10norm), display_alot(current_iter), 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 (array_x <= x_end) and (convfloat(glob_clock_sec) - convfloat(glob_orig_start_sec) < 1 convfloat(glob_max_sec)) do (omniout_str (INFO, " "), omniout_str(INFO, "TOP MAIN SOLVE Loop"), glob_iter : 1 + glob_iter, glob_clock_sec : elapsed_time_seconds(), glob_current_iter : 1 + glob_current_iter, atomall(), if glob_look_poles then check_for_pole(), array_x : glob_h + array_x , 1 1 array_x : glob_h, order_diff : 1, ord : 2, calc_term : 1, 2 iii : glob_max_terms, while iii >= calc_term do (array_y_higher_work : 2, iii array_y_higher 2, iii -------------------- calc_term - 1 glob_h -------------------------------------, iii : iii - 1), temp_sum : 0.0, factorial_3(iii - calc_term, iii - 1) ord : 2, calc_term : 1, iii : glob_max_terms, while iii >= calc_term do (temp_sum : array_y_higher_work + temp_sum, ord, iii iii : iii - 1), array_y_higher_work2 : ord, calc_term calc_term - 1 temp_sum glob_h ----------------------------, ord : 1, calc_term : 2, iii : glob_max_terms, convfp(calc_term - 1)! while iii >= calc_term do (array_y_higher_work : 1, iii array_y_higher 1, iii -------------------- calc_term - 1 glob_h -------------------------------------, iii : iii - 1), temp_sum : 0.0, factorial_3(iii - calc_term, iii - 1) ord : 1, calc_term : 2, iii : glob_max_terms, while iii >= calc_term do (temp_sum : array_y_higher_work + temp_sum, ord, iii iii : iii - 1), array_y_higher_work2 : ord, calc_term calc_term - 1 temp_sum glob_h ----------------------------, ord : 1, calc_term : 1, iii : glob_max_terms, convfp(calc_term - 1)! while iii >= calc_term do (array_y_higher_work : 1, iii array_y_higher 1, iii -------------------- calc_term - 1 glob_h -------------------------------------, iii : iii - 1), temp_sum : 0.0, factorial_3(iii - calc_term, iii - 1) ord : 1, calc_term : 1, iii : glob_max_terms, while iii >= calc_term do (temp_sum : array_y_higher_work + temp_sum, ord, iii iii : iii - 1), array_y_higher_work2 : ord, calc_term calc_term - 1 temp_sum glob_h ----------------------------, term_no : glob_max_terms, convfp(calc_term - 1)! while term_no >= 1 do (array_y : array_y_higher_work2 , term_no 1, term_no ord : 1, while ord <= order_diff do (array_y_higher : ord, term_no array_y_higher_work2 , ord : 1 + ord), term_no : term_no - 1), ord, term_no display_alot(current_iter)), omniout_str(ALWAYS, "Finished!"), if glob_iter >= glob_max_iter then omniout_str(ALWAYS, "Maximum Iterations Reached before Solution Completed!"), if elapsed_time_seconds() - convfloat(glob_orig_start_sec) >= convfloat(glob_max_sec) then omniout_str(ALWAYS, "Maximum Time Reached before Solution Completed!"), glob_clock_sec : elapsed_time_seconds(), omniout_str(INFO, "diff ( y , x , 1 ) = m1 * 2.0 / x / x / 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, "2012-06-13T18:32:04-05:00"), logitem_str(html_log_file, "Maxima"), logitem_str(html_log_file, "sing3"), logitem_str(html_log_file, "diff ( y , x , 1 ) = m1 * 2.0 / x / x / x ;"), logitem_float(html_log_file, x_start), logitem_float(html_log_file, x_end), logitem_float(html_log_file, array_x ), logitem_float(html_log_file, glob_h), 1 logitem_str(html_log_file, "16"), 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) or (array_type_pole = 2) 1 1 then (logitem_float(html_log_file, array_pole ), 1 logitem_float(html_log_file, array_pole ), 0) 2 else (logitem_str(html_log_file, "NA"), logitem_str(html_log_file, "NA"), 0), logitem_time(html_log_file, convfloat(glob_clock_sec)), if glob_percent_done < 100.0 then (logitem_time(html_log_file, convfloat(glob_optimal_expect_sec)), 0) else (logitem_str(html_log_file, "Done"), 0), log_revs(html_log_file, " 090 "), logitem_str(html_log_file, "sing3 diffeq.max"), logitem_str(html_log_file, "sing3 maxima results"), logitem_str(html_log_file, "Test of revised logic - mostly affecting systems of eqs"), logend(html_log_file)), if glob_html_log then close(html_log_file)) (%o50) mainprog() := (define_variable(DEBUGMASSIVE, 4, fixnum), define_variable(ALWAYS, 1, fixnum), define_variable(INFO, 2, fixnum), define_variable(glob_iolevel, 5, fixnum), define_variable(glob_max_terms, 30, fixnum), define_variable(DEBUGL, 3, fixnum), define_variable(glob_start, 0, fixnum), define_variable(glob_max_sec, 10000.0, float), define_variable(glob_max_hours, 0.0, float), define_variable(glob_not_yet_finished, true, boolean), define_variable(glob_clock_start_sec, 0.0, float), define_variable(days_in_year, 365.0, float), define_variable(hours_in_day, 24.0, float), define_variable(djd_debug2, true, boolean), define_variable(glob_percent_done, 0.0, float), define_variable(glob_unchanged_h_cnt, 0, fixnum), define_variable(glob_optimal_clock_start_sec, 0.0, float), define_variable(glob_large_float, 9.0E+100, float), define_variable(glob_max_iter, 1000, fixnum), define_variable(glob_relerr, 1.0E-11, float), define_variable(glob_reached_optimal_h, false, boolean), define_variable(glob_orig_start_sec, 0.0, float), define_variable(glob_look_poles, false, boolean), define_variable(glob_hmin_init, 0.001, float), define_variable(glob_iter, 0, fixnum), define_variable(glob_hmin, 1.0E-11, float), define_variable(sec_in_min, 60.0, float), define_variable(djd_debug, true, boolean), define_variable(glob_smallish_float, 1.0E-101, float), define_variable(glob_optimal_start, 0.0, float), define_variable(glob_h, 0.1, float), define_variable(glob_almost_1, 0.999, float), define_variable(glob_curr_iter_when_opt, 0, fixnum), define_variable(glob_warned2, false, boolean), define_variable(glob_small_float, 1.0E-51, float), define_variable(glob_abserr, 1.0E-11, float), define_variable(glob_dump, false, boolean), define_variable(glob_log10abserr, 0.0, float), define_variable(glob_normmax, 0.0, float), define_variable(glob_current_iter, 0, fixnum), define_variable(glob_max_trunc_err, 1.0E-11, float), define_variable(glob_log10_relerr, 1.0E-11, float), define_variable(glob_hmax, 1.0, float), define_variable(glob_html_log, true, boolean), define_variable(glob_subiter_method, 3, fixnum), define_variable(glob_max_minutes, 0.0, float), define_variable(glob_dump_analytic, false, boolean), define_variable(glob_disp_incr, 0.1, float), define_variable(centuries_in_millinium, 10.0, float), define_variable(glob_max_opt_iter, 10, fixnum), define_variable(glob_optimal_expect_sec, 0.1, float), define_variable(glob_log10relerr, 0.0, float), define_variable(glob_warned, false, boolean), define_variable(glob_max_rel_trunc_err, 1.0E-11, float), define_variable(glob_log10_abserr, 1.0E-11, float), define_variable(glob_last_good_h, 0.1, float), define_variable(glob_optimal_done, false, boolean), define_variable(glob_not_yet_start_msg, true, boolean), define_variable(glob_initial_pass, true, boolean), define_variable(glob_clock_sec, 0.0, float), define_variable(glob_log10normmin, 0.1, float), define_variable(MAX_UNCHANGED, 10, fixnum), define_variable(glob_no_eqs, 0, fixnum), define_variable(years_in_century, 100.0, float), define_variable(min_in_hour, 60.0, float), define_variable(glob_display_flag, true, boolean), ALWAYS : 1, INFO : 2, DEBUGL : 3, DEBUGMASSIVE : 4, glob_iolevel : INFO, 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/sing3postode.ode#################"), omniout_str(ALWAYS, "diff ( y , x , 1 ) = m1 * 2.0 / x / x / x ;"), omniout_str(ALWAYS, "!"), omniout_str(ALWAYS, "/* BEGIN FIRST INPUT BLOCK */"), omniout_str(ALWAYS, "Digits : 100,"), 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 : -1.0,"), omniout_str(ALWAYS, "x_end : -0.7,"), omniout_str(ALWAYS, "array_y_init[0 + 1] : exact_soln_y(x_start),"), omniout_str(ALWAYS, "glob_h : 0.1,"), omniout_str(ALWAYS, "glob_look_poles : true,"), omniout_str(ALWAYS, "glob_max_iter : 100000,"), omniout_str(ALWAYS, "/* END SECOND INPUT BLOCK */"), omniout_str(ALWAYS, "/* BEGIN OVERRIDE BLOCK */"), omniout_str(ALWAYS, "glob_h : 0.0001 ,"), omniout_str(ALWAYS, "glob_look_poles : true,"), omniout_str(ALWAYS, "glob_max_iter : 1000,"), omniout_str(ALWAYS, "glob_max_minutes : 15,"), omniout_str(ALWAYS, "/* END OVERRIDE BLOCK */"), omniout_str(ALWAYS, "!"), omniout_str(ALWAYS, "/* BEGIN USER DEF BLOCK */"), omniout_str(ALWAYS, "exact_soln_y (x) := ("), omniout_str(ALWAYS, "1.0/x/x "), omniout_str(ALWAYS, ");"), omniout_str(ALWAYS, ""), omniout_str(ALWAYS, ""), omniout_str(ALWAYS, "/* END USER DEF BLOCK */"), omniout_str(ALWAYS, "#######END OF ECHO OF PROBLEM#################"), glob_unchanged_h_cnt : 0, glob_warned : false, glob_warned2 : false, glob_small_float : 1.0E-200, glob_smallish_float : 1.0E-64, glob_large_float : 1.0E+100, glob_almost_1 : 0.99, glob_log10_abserr : - 8.0, glob_log10_relerr : - 8.0, glob_hmax : 0.01, Digits : 100, max_terms : 30, glob_max_terms : max_terms, glob_html_log : true, array(array_y_init, 1 + max_terms), array(array_tmp0, 1 + max_terms), array(array_tmp1, 1 + max_terms), array(array_tmp2, 1 + max_terms), array(array_tmp3, 1 + max_terms), array(array_tmp4, 1 + max_terms), array(array_tmp5, 1 + max_terms), array(array_pole, 1 + max_terms), array(array_m1, 1 + max_terms), array(array_y, 1 + max_terms), array(array_x, 1 + max_terms), array(array_last_rel_error, 1 + max_terms), array(array_norms, 1 + max_terms), array(array_type_pole, 1 + max_terms), array(array_1st_rel_error, 1 + max_terms), array(array_y_higher_work2, 1 + 2, 1 + max_terms), array(array_y_higher_work, 1 + 2, 1 + max_terms), array(array_complex_pole, 1 + 1, 1 + 3), array(array_poles, 1 + 1, 1 + 3), array(array_y_higher, 1 + 2, 1 + max_terms), array(array_real_pole, 1 + 1, 1 + 3), array(array_y_set_initial, 1 + 2, 1 + max_terms), term : 1, while term <= max_terms do (array_y_init : 0.0, term term : 1 + term), term : 1, while term <= max_terms do (array_tmp0 : 0.0, term term : 1 + term), term : 1, while term <= max_terms do (array_tmp1 : 0.0, term term : 1 + term), term : 1, while term <= max_terms do (array_tmp2 : 0.0, term term : 1 + term), term : 1, while term <= max_terms do (array_tmp3 : 0.0, term term : 1 + term), term : 1, while term <= max_terms do (array_tmp4 : 0.0, term term : 1 + term), term : 1, while term <= max_terms do (array_tmp5 : 0.0, term term : 1 + term), term : 1, while term <= max_terms do (array_pole : 0.0, term term : 1 + term), term : 1, while term <= max_terms do (array_m1 : 0.0, term term : 1 + term), term : 1, while term <= max_terms do (array_y : 0.0, term term : 1 + term), term : 1, while term <= max_terms do (array_x : 0.0, term term : 1 + term), term : 1, while term <= max_terms do (array_last_rel_error : 0.0, term : 1 + term), term : 1, term while term <= max_terms do (array_norms : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_type_pole : 0.0, term term : 1 + term), term : 1, while term <= max_terms do (array_1st_rel_error : 0.0, term : 1 + term), ord : 1, term while ord <= 2 do (term : 1, while term <= max_terms do (array_y_higher_work2 : 0.0, term : 1 + term), ord, term ord : 1 + ord), ord : 1, while ord <= 2 do (term : 1, while term <= max_terms do (array_y_higher_work : 0.0, ord, term term : 1 + term), ord : 1 + ord), ord : 1, while ord <= 1 do (term : 1, while term <= 3 do (array_complex_pole : 0.0, term : 1 + term), ord : 1 + ord), ord, term ord : 1, while ord <= 1 do (term : 1, while term <= 3 do (array_poles : 0.0, term : 1 + term), ord, term ord : 1 + ord), ord : 1, while ord <= 2 do (term : 1, while term <= max_terms do (array_y_higher : 0.0, term : 1 + term), ord, term ord : 1 + ord), ord : 1, while ord <= 1 do (term : 1, while term <= 3 do (array_real_pole : 0.0, term : 1 + term), ord, term ord : 1 + ord), ord : 1, while ord <= 2 do (term : 1, while term <= max_terms do (array_y_set_initial : 0.0, ord, term term : 1 + term), ord : 1 + ord), array(array_tmp5, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_tmp5 : 0.0, term term : 1 + term), array(array_tmp4, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_tmp4 : 0.0, term : 1 + term), term array(array_tmp3, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_tmp3 : 0.0, term : 1 + term), term array(array_tmp2, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_tmp2 : 0.0, term : 1 + term), term array(array_tmp1, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_tmp1 : 0.0, term : 1 + term), term array(array_tmp0, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_tmp0 : 0.0, term : 1 + term), term array(array_m1, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_m1 : 0.0, term : 1 + term), term array(array_x, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_x : 0.0, term : 1 + term), term array(array_y, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_y : 0.0, term : 1 + term), term array(array_const_1, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_const_1 : 0.0, term : 1 + term), term array_const_1 : 1, array(array_const_0D0, 1 + 1 + max_terms), term : 1, 1 while term <= 1 + max_terms do (array_const_0D0 : 0.0, term : 1 + term), term array_const_0D0 : 0.0, array(array_const_2D0, 1 + 1 + max_terms), term : 1, 1 while term <= 1 + max_terms do (array_const_2D0 : 0.0, term : 1 + term), term array_const_2D0 : 2.0, array(array_m1, 1 + 1 + max_terms), term : 1, 1 while term <= max_terms do (array_m1 : 0.0, term : 1 + term), term array_m1 : - 1.0, x_start : - 1.0, x_end : - 0.7, 1 array_y_init : exact_soln_y(x_start), glob_h : 0.1, 1 + 0 glob_look_poles : true, glob_max_iter : 100000, glob_h : 1.0E-4, glob_look_poles : true, glob_max_iter : 1000, glob_max_minutes : 15, glob_last_good_h : glob_h, glob_max_terms : max_terms, glob_max_sec : convfloat(3600.0) convfloat(glob_max_hours) + convfloat(60.0) convfloat(glob_max_minutes), glob_log10_abserr glob_log10_relerr glob_abserr : 10.0 , glob_relerr : 10.0 , chk_data(), array_y_set_initial : true, array_y_set_initial : false, 1, 1 1, 2 array_y_set_initial : false, array_y_set_initial : false, 1, 3 1, 4 array_y_set_initial : false, array_y_set_initial : false, 1, 5 1, 6 array_y_set_initial : false, array_y_set_initial : false, 1, 7 1, 8 array_y_set_initial : false, array_y_set_initial : false, 1, 9 1, 10 array_y_set_initial : false, array_y_set_initial : false, 1, 11 1, 12 array_y_set_initial : false, array_y_set_initial : false, 1, 13 1, 14 array_y_set_initial : false, array_y_set_initial : false, 1, 15 1, 16 array_y_set_initial : false, array_y_set_initial : false, 1, 17 1, 18 array_y_set_initial : false, array_y_set_initial : false, 1, 19 1, 20 array_y_set_initial : false, array_y_set_initial : false, 1, 21 1, 22 array_y_set_initial : false, array_y_set_initial : false, 1, 23 1, 24 array_y_set_initial : false, array_y_set_initial : false, 1, 25 1, 26 array_y_set_initial : false, array_y_set_initial : false, 1, 27 1, 28 array_y_set_initial : false, array_y_set_initial : false, 1, 29 1, 30 if glob_html_log then html_log_file : openw("html/entry.html"), omniout_str(ALWAYS, "START of Soultion"), array_x : x_start, 1 array_x : glob_h, order_diff : 1, term_no : 1, 2 while term_no <= order_diff do (array_y : term_no term_no - 1 array_y_init glob_h term_no -------------------------------------, term_no : 1 + term_no), factorial_1(term_no - 1) rows : order_diff, r_order : 1, while r_order <= rows do (term_no : 1, while term_no <= 1 - r_order + rows do (it : - 1 + r_order + term_no, term_no - 1 array_y_init glob_h it array_y_higher : --------------------------------, r_order, term_no factorial_1(term_no - 1) term_no : 1 + term_no), r_order : 1 + r_order), current_iter : 1, glob_clock_start_sec : elapsed_time_seconds(), start_array_y(), if !array_y_higher ! > glob_small_float ! 1, 1! then (tmp : !array_y_higher !, log10norm : log10(tmp), ! 1, 1! if log10norm < glob_log10normmin then glob_log10normmin : log10norm), display_alot(current_iter), 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 (array_x <= x_end) and (convfloat(glob_clock_sec) - convfloat(glob_orig_start_sec) < 1 convfloat(glob_max_sec)) do (omniout_str (INFO, " "), omniout_str(INFO, "TOP MAIN SOLVE Loop"), glob_iter : 1 + glob_iter, glob_clock_sec : elapsed_time_seconds(), glob_current_iter : 1 + glob_current_iter, atomall(), if glob_look_poles then check_for_pole(), array_x : glob_h + array_x , 1 1 array_x : glob_h, order_diff : 1, ord : 2, calc_term : 1, 2 iii : glob_max_terms, while iii >= calc_term do (array_y_higher_work : 2, iii array_y_higher 2, iii -------------------- calc_term - 1 glob_h -------------------------------------, iii : iii - 1), temp_sum : 0.0, factorial_3(iii - calc_term, iii - 1) ord : 2, calc_term : 1, iii : glob_max_terms, while iii >= calc_term do (temp_sum : array_y_higher_work + temp_sum, ord, iii iii : iii - 1), array_y_higher_work2 : ord, calc_term calc_term - 1 temp_sum glob_h ----------------------------, ord : 1, calc_term : 2, iii : glob_max_terms, convfp(calc_term - 1)! while iii >= calc_term do (array_y_higher_work : 1, iii array_y_higher 1, iii -------------------- calc_term - 1 glob_h -------------------------------------, iii : iii - 1), temp_sum : 0.0, factorial_3(iii - calc_term, iii - 1) ord : 1, calc_term : 2, iii : glob_max_terms, while iii >= calc_term do (temp_sum : array_y_higher_work + temp_sum, ord, iii iii : iii - 1), array_y_higher_work2 : ord, calc_term calc_term - 1 temp_sum glob_h ----------------------------, ord : 1, calc_term : 1, iii : glob_max_terms, convfp(calc_term - 1)! while iii >= calc_term do (array_y_higher_work : 1, iii array_y_higher 1, iii -------------------- calc_term - 1 glob_h -------------------------------------, iii : iii - 1), temp_sum : 0.0, factorial_3(iii - calc_term, iii - 1) ord : 1, calc_term : 1, iii : glob_max_terms, while iii >= calc_term do (temp_sum : array_y_higher_work + temp_sum, ord, iii iii : iii - 1), array_y_higher_work2 : ord, calc_term calc_term - 1 temp_sum glob_h ----------------------------, term_no : glob_max_terms, convfp(calc_term - 1)! while term_no >= 1 do (array_y : array_y_higher_work2 , term_no 1, term_no ord : 1, while ord <= order_diff do (array_y_higher : ord, term_no array_y_higher_work2 , ord : 1 + ord), term_no : term_no - 1), ord, term_no display_alot(current_iter)), omniout_str(ALWAYS, "Finished!"), if glob_iter >= glob_max_iter then omniout_str(ALWAYS, "Maximum Iterations Reached before Solution Completed!"), if elapsed_time_seconds() - convfloat(glob_orig_start_sec) >= convfloat(glob_max_sec) then omniout_str(ALWAYS, "Maximum Time Reached before Solution Completed!"), glob_clock_sec : elapsed_time_seconds(), omniout_str(INFO, "diff ( y , x , 1 ) = m1 * 2.0 / x / x / 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, "2012-06-13T18:32:04-05:00"), logitem_str(html_log_file, "Maxima"), logitem_str(html_log_file, "sing3"), logitem_str(html_log_file, "diff ( y , x , 1 ) = m1 * 2.0 / x / x / x ;"), logitem_float(html_log_file, x_start), logitem_float(html_log_file, x_end), logitem_float(html_log_file, array_x ), logitem_float(html_log_file, glob_h), 1 logitem_str(html_log_file, "16"), 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) or (array_type_pole = 2) 1 1 then (logitem_float(html_log_file, array_pole ), 1 logitem_float(html_log_file, array_pole ), 0) 2 else (logitem_str(html_log_file, "NA"), logitem_str(html_log_file, "NA"), 0), logitem_time(html_log_file, convfloat(glob_clock_sec)), if glob_percent_done < 100.0 then (logitem_time(html_log_file, convfloat(glob_optimal_expect_sec)), 0) else (logitem_str(html_log_file, "Done"), 0), log_revs(html_log_file, " 090 "), logitem_str(html_log_file, "sing3 diffeq.max"), logitem_str(html_log_file, "sing3 maxima results"), logitem_str(html_log_file, "Test of revised logic - mostly affecting systems of eqs"), logend(html_log_file)), if glob_html_log then close(html_log_file)) (%i51) mainprog() "##############ECHO OF PROBLEM#################" "##############temp/sing3postode.ode#################" "diff ( y , x , 1 ) = m1 * 2.0 / x / x / x ;" "!" "/* BEGIN FIRST INPUT BLOCK */" "Digits : 100," "max_terms : 30," "!" "/* END FIRST INPUT BLOCK */" "/* BEGIN SECOND INPUT BLOCK */" "x_start : -1.0," "x_end : -0.7," "array_y_init[0 + 1] : exact_soln_y(x_start)," "glob_h : 0.1," "glob_look_poles : true," "glob_max_iter : 100000," "/* END SECOND INPUT BLOCK */" "/* BEGIN OVERRIDE BLOCK */" "glob_h : 0.0001 ," "glob_look_poles : true," "glob_max_iter : 1000," "glob_max_minutes : 15," "/* END OVERRIDE BLOCK */" "!" "/* BEGIN USER DEF BLOCK */" "exact_soln_y (x) := (" "1.0/x/x " ");" "" "" "/* END USER DEF BLOCK */" "#######END OF ECHO OF PROBLEM#################" "START of Soultion" x[1] = -1. " " y[1] (analytic) = 1. " " y[1] (numeric) = 1. " " absolute error = 0.0 " " relative error = 0.0 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.007997175222113 " " Order of pole = 4.436743107446407 " " x[1] = -0.9999 " " y[1] (analytic) = 1.0002000300040004 " " y[1] (numeric) = 1.0002000300040006 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 2.22000198224492380000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.007896375504586 " " Order of pole = 4.4367431074462615 " " x[1] = -0.9998 " " y[1] (analytic) = 1.0004001200320078 " " y[1] (numeric) = 1.000400120032008 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 2.219557959648455200000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.007795575787081 " " Order of pole = 4.436743107446773 " " x[1] = -0.9997 " " y[1] (analytic) = 1.0006002701080403 " " y[1] (numeric) = 1.0006002701080405 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 2.219113981460907600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0076947760695423 " " Order of pole = 4.436743107446286 " " x[1] = -0.9996 " " y[1] (analytic) = 1.000800480256128 " " y[1] (numeric) = 1.0008004802561281 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 2.21867004768228100000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0075939763520312 " " Order of pole = 4.436743107446617 " " x[1] = -0.9995 " " y[1] (analytic) = 1.0010007505003125 " " y[1] (numeric) = 1.0010007505003127 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 2.218226158312575600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0074931766345057 " " Order of pole = 4.436743107446517 " " x[1] = -0.9994000000000001 " " y[1] (analytic) = 1.0012010808646483 " " y[1] (numeric) = 1.0012010808646485 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 2.217782313351790700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0073923769169835 " " Order of pole = 4.43674310744651 " " x[1] = -0.9993000000000001 " " y[1] (analytic) = 1.0014014713732013 " " y[1] (numeric) = 1.0014014713732016 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 2.217338512799927000000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0072915771994535 " " Order of pole = 4.436743107446283 " " x[1] = -0.9992000000000001 " " y[1] (analytic) = 1.0016019220500498 " " y[1] (numeric) = 1.00160192205005 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 2.216894756656984400000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0071907774819295 " " Order of pole = 4.436743107446237 " " x[1] = -0.9991000000000001 " " y[1] (analytic) = 1.0018024329192838 " " y[1] (numeric) = 1.001802432919284 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 2.216451044922962700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0070899777644189 " " Order of pole = 4.436743107446578 " " x[1] = -0.9990000000000001 " " y[1] (analytic) = 1.0020030040050059 " " y[1] (numeric) = 1.002003004005006 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 2.21600737759786200000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.006989178046896 " " Order of pole = 4.43674310744656 " " x[1] = -0.9989000000000001 " " y[1] (analytic) = 1.00220363533133 " " y[1] (numeric) = 1.0022036353313302 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 2.215563754681682500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0068883783293778 " " Order of pole = 4.436743107446674 " " x[1] = -0.9988000000000001 " " y[1] (analytic) = 1.0024043269223826 " " y[1] (numeric) = 1.002404326922383 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 4.43024035234884800000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0067875786118432 " " Order of pole = 4.436743107446308 " " x[1] = -0.9987000000000001 " " y[1] (analytic) = 1.0026050788023024 " " y[1] (numeric) = 1.0026050788023029 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 4.429353284152172700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0066867788943357 " " Order of pole = 4.436743107446738 " " x[1] = -0.9986000000000002 " " y[1] (analytic) = 1.00280589099524 " " y[1] (numeric) = 1.0028058909952404 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 4.42846630477333860000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0065859791768086 " " Order of pole = 4.436743107446599 " " x[1] = -0.9985000000000002 " " y[1] (analytic) = 1.003006763525358 " " y[1] (numeric) = 1.0030067635253583 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 4.42757941421234760000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0064851794592753 " " Order of pole = 4.436743107446265 " " x[1] = -0.9984000000000002 " " y[1] (analytic) = 1.0032076964168306 " " y[1] (numeric) = 1.0032076964168313 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 6.64003891870379800000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0063843797417642 " " Order of pole = 4.4367431074465955 " " x[1] = -0.9983000000000002 " " y[1] (analytic) = 1.0034086896938457 " " y[1] (numeric) = 1.0034086896938461 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 4.425805899543890000000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0062835800242405 " " Order of pole = 4.436743107446550 " " x[1] = -0.9982000000000002 " " y[1] (analytic) = 1.0036097433806013 " " y[1] (numeric) = 1.003609743380602 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 6.63737891315463700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0061827803067156 " " Order of pole = 4.436743107446475 " " x[1] = -0.9981000000000002 " " y[1] (analytic) = 1.003810857501309 " " y[1] (numeric) = 1.0038108575013098 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 8.84806548029360300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0060819805891994 " " Order of pole = 4.436743107446652 " " x[1] = -0.9980000000000002 " " y[1] (analytic) = 1.004012032080192 " " y[1] (numeric) = 1.0040120320801929 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 8.8462925873500400000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.005981180871686 " " Order of pole = 4.436743107446922 " " x[1] = -0.9979000000000002 " " y[1] (analytic) = 1.0042132671414858 " " y[1] (numeric) = 1.0042132671414865 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 6.63338990403161900000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0058803811541375 " " Order of pole = 4.436743107446137 " " x[1] = -0.9978000000000002 " " y[1] (analytic) = 1.0044145627094374 " " y[1] (numeric) = 1.0044145627094383 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 8.84274733436996600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0057795814366408 " " Order of pole = 4.43674310744689 " " x[1] = -0.9977000000000003 " " y[1] (analytic) = 1.0046159188083073 " " y[1] (numeric) = 1.004615918808308 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 6.6307312307500900000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0056787817191142 " " Order of pole = 4.436743107446752 " " x[1] = -0.9976000000000003 " " y[1] (analytic) = 1.0048173354623666 " " y[1] (numeric) = 1.0048173354623673 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 6.62940209394946900000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0055779820015838 " " Order of pole = 4.436743107446517 " " x[1] = -0.9975000000000003 " " y[1] (analytic) = 1.0050188126958997 " " y[1] (numeric) = 1.0050188126959003 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 6.62807309037561100000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.005477182284061 " " Order of pole = 4.4367431074464925 " " x[1] = -0.9974000000000003 " " y[1] (analytic) = 1.0052203505332025 " " y[1] (numeric) = 1.0052203505332031 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 6.62674422002851600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0053763825665323 " " Order of pole = 4.436743107446300 " " x[1] = -0.9973000000000003 " " y[1] (analytic) = 1.0054219489985836 " " y[1] (numeric) = 1.0054219489985843 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 6.62541548290818500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0052755828490139 " " Order of pole = 4.436743107446410 " " x[1] = -0.9972000000000003 " " y[1] (analytic) = 1.0056236081163634 " " y[1] (numeric) = 1.005623608116364 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 6.62408687901461700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0051747831314977 " " Order of pole = 4.436743107446599 " " x[1] = -0.9971000000000003 " " y[1] (analytic) = 1.0058253279108746 " " y[1] (numeric) = 1.0058253279108755 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 8.83034454446374700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0050739834139784 " " Order of pole = 4.436743107446680 " " x[1] = -0.9970000000000003 " " y[1] (analytic) = 1.0060271084064625 " " y[1] (numeric) = 1.0060271084064634 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 8.82857342787702300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0049731836964526 " " Order of pole = 4.436743107446578 " " x[1] = -0.9969000000000003 " " y[1] (analytic) = 1.0062289496274839 " " y[1] (numeric) = 1.0062289496274848 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 8.82680248892598200000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.004872383978924 " " Order of pole = 4.436743107446386 " " x[1] = -0.9968000000000004 " " y[1] (analytic) = 1.0064308515983083 " " y[1] (numeric) = 1.0064308515983091 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 8.82503172761062700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.004771584261412 " " Order of pole = 4.436743107446695 " " x[1] = -0.9967000000000004 " " y[1] (analytic) = 1.006632814343317 " " y[1] (numeric) = 1.006632814343318 " " absolute error = 1.1102230246251565000000000000000E-15 " " relative error = 1.10290764299136940000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.004670784543886 " " Order of pole = 4.436743107446570 " " x[1] = -0.9966000000000004 " " y[1] (analytic) = 1.0068348378869043 " " y[1] (numeric) = 1.0068348378869054 " " absolute error = 1.1102230246251565000000000000000E-15 " " relative error = 1.10268634223587080000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.004569984826361 " " Order of pole = 4.436743107446485 " " x[1] = -0.9965000000000004 " " y[1] (analytic) = 1.0070369222534759 " " y[1] (numeric) = 1.0070369222534772 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 1.32295807642179960000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0044691851088419 " " Order of pole = 4.436743107446581 " " x[1] = -0.9964000000000004 " " y[1] (analytic) = 1.0072390674674505 " " y[1] (numeric) = 1.0072390674674516 " " absolute error = 1.1102230246251565000000000000000E-15 " " relative error = 1.10224380733825540000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0043683853913095 " " Order of pole = 4.436743107446280 " " x[1] = -0.9963000000000004 " " y[1] (analytic) = 1.0074412735532583 " " y[1] (numeric) = 1.0074412735532596 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 1.3224270878353660000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0042675856737953 " " Order of pole = 4.436743107446514 " " x[1] = -0.9962000000000004 " " y[1] (analytic) = 1.0076435405353426 " " y[1] (numeric) = 1.0076435405353437 " " absolute error = 1.1102230246251565000000000000000E-15 " " relative error = 1.10180136125848180000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0041667859562764 " " Order of pole = 4.43674310744662 " " x[1] = -0.9961000000000004 " " y[1] (analytic) = 1.0078458684381577 " " y[1] (numeric) = 1.007845868438159 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 1.3218962058303430000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0040659862387542 " " Order of pole = 4.436743107446613 " " x[1] = -0.9960000000000004 " " y[1] (analytic) = 1.008048257286172 " " y[1] (numeric) = 1.008048257286173 " " absolute error = 1.1102230246251565000000000000000E-15 " " relative error = 1.10135900399655010000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0039651865212238 " " Order of pole = 4.436743107446372 " " x[1] = -0.9959000000000005 " " y[1] (analytic) = 1.0082507071038644 " " y[1] (numeric) = 1.0082507071038656 " " absolute error = 1.1102230246251565000000000000000E-15 " " relative error = 1.10113785867227520000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.003864386803713 " " Order of pole = 4.436743107446713 " " x[1] = -0.9958000000000005 " " y[1] (analytic) = 1.008453217915727 " " y[1] (numeric) = 1.0084532179157284 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 1.32110008266295300000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0037635870861872 " " Order of pole = 4.43674310744661 " " x[1] = -0.9957000000000005 " " y[1] (analytic) = 1.0086557897462645 " " y[1] (numeric) = 1.0086557897462658 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 1.32083476156452770000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0036627873686617 " " Order of pole = 4.436743107446507 " " x[1] = -0.9956000000000005 " " y[1] (analytic) = 1.008858422619993 " " y[1] (numeric) = 1.0088584226199944 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 1.32056946711145570000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.003561987651137 " " Order of pole = 4.436743107446436 " " x[1] = -0.9955000000000005 " " y[1] (analytic) = 1.0090611165614416 " " y[1] (numeric) = 1.009061116561443 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 1.3203041993037360000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0034611879336162 " " Order of pole = 4.436743107446475 " " x[1] = -0.9954000000000005 " " y[1] (analytic) = 1.0092638715951514 " " y[1] (numeric) = 1.0092638715951527 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 1.32003895814136880000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0033603882161002 " " Order of pole = 4.436743107446656 " " x[1] = -0.9953000000000005 " " y[1] (analytic) = 1.009466687745676 " " y[1] (numeric) = 1.0094666877456773 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 1.31977374362435420000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0032595884985793 " " Order of pole = 4.4367431074466985 " " x[1] = -0.9952000000000005 " " y[1] (analytic) = 1.009669565037581 " " y[1] (numeric) = 1.0096695650375824 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 1.31950855575269250000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0031587887810551 " " Order of pole = 4.436743107446638 " " x[1] = -0.9951000000000005 " " y[1] (analytic) = 1.0098725034954452 " " y[1] (numeric) = 1.0098725034954465 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 1.3192433945263832000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0030579890635318 " " Order of pole = 4.436743107446606 " " x[1] = -0.9950000000000006 " " y[1] (analytic) = 1.0100755031438589 " " y[1] (numeric) = 1.0100755031438602 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 1.31897825994542600000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0029571893460112 " " Order of pole = 4.436743107446656 " " x[1] = -0.9949000000000006 " " y[1] (analytic) = 1.0102785640074248 " " y[1] (numeric) = 1.010278564007426 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 1.31871315200982220000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0028563896284808 " " Order of pole = 4.436743107446407 " " x[1] = -0.9948000000000006 " " y[1] (analytic) = 1.0104816861107584 " " y[1] (numeric) = 1.0104816861107597 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 1.31844807071957030000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0027555899109646 " " Order of pole = 4.436743107446585 " " x[1] = -0.9947000000000006 " " y[1] (analytic) = 1.0106848694784871 " " y[1] (numeric) = 1.0106848694784887 " " absolute error = 1.5543122344752192000000000000000E-15 " " relative error = 1.53788018542045020000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.002654790193442 " " Order of pole = 4.436743107446574 " " x[1] = -0.9946000000000006 " " y[1] (analytic) = 1.0108881141352513 " " y[1] (numeric) = 1.0108881141352528 " " absolute error = 1.5543122344752192000000000000000E-15 " " relative error = 1.53757098608764600000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0025539904759202 " " Order of pole = 4.436743107446588 " " x[1] = -0.9945000000000006 " " y[1] (analytic) = 1.0110914201057033 " " y[1] (numeric) = 1.0110914201057049 " " absolute error = 1.5543122344752192000000000000000E-15 " " relative error = 1.53726181784108660000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0024531907584007 " " Order of pole = 4.436743107446667 " " x[1] = -0.9944000000000006 " " y[1] (analytic) = 1.011294787414508 " " y[1] (numeric) = 1.0112947874145095 " " absolute error = 1.5543122344752192000000000000000E-15 " " relative error = 1.53695268068077180000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0023523910408743 " " Order of pole = 4.436743107446535 " " x[1] = -0.9943000000000006 " " y[1] (analytic) = 1.0114982160863424 " " y[1] (numeric) = 1.011498216086344 " " absolute error = 1.5543122344752192000000000000000E-15 " " relative error = 1.53664357460670170000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0022515913233643 " " Order of pole = 4.436743107446905 " " x[1] = -0.9942000000000006 " " y[1] (analytic) = 1.0117017061458964 " " y[1] (numeric) = 1.011701706145898 " " absolute error = 1.5543122344752192000000000000000E-15 " " relative error = 1.53633449961887630000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0021507916058403 " " Order of pole = 4.436743107446851 " " x[1] = -0.9941000000000006 " " y[1] (analytic) = 1.0119052576178718 " " y[1] (numeric) = 1.0119052576178735 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 1.75545766367690950000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0020499918883048 " " Order of pole = 4.436743107446464 " " x[1] = -0.9940000000000007 " " y[1] (analytic) = 1.0121088705269834 " " y[1] (numeric) = 1.0121088705269852 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 1.75510450617366840000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0019491921707846 " " Order of pole = 4.436743107446517 " " x[1] = -0.9939000000000007 " " y[1] (analytic) = 1.0123125448979582 " " y[1] (numeric) = 1.0123125448979597 " " absolute error = 1.5543122344752192000000000000000E-15 " " relative error = 1.53540746117286820000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0018483924532693 " " Order of pole = 4.43674310744672 " " x[1] = -0.9938000000000007 " " y[1] (analytic) = 1.012516280755535 " " y[1] (numeric) = 1.0125162807555368 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 1.75439829774859640000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.001747592735747 " " Order of pole = 4.436743107446723 " " x[1] = -0.9937000000000007 " " y[1] (analytic) = 1.012720078124466 " " y[1] (numeric) = 1.0127200781244678 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 1.75404524682676600000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.001646793018226 " " Order of pole = 4.436743107446755 " " x[1] = -0.9936000000000007 " " y[1] (analytic) = 1.0129239370295158 " " y[1] (numeric) = 1.0129239370295173 " " absolute error = 1.5543122344752192000000000000000E-15 " " relative error = 1.53448070250306240000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.001545993300699 " " Order of pole = 4.436743107446606 " " x[1] = -0.9935000000000007 " " y[1] (analytic) = 1.0131278574954605 " " y[1] (numeric) = 1.013127857495462 " " absolute error = 1.5543122344752192000000000000000E-15 " " relative error = 1.534171845118949800000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0014451935831699 " " Order of pole = 4.436743107446407 " " x[1] = -0.9934000000000007 " " y[1] (analytic) = 1.0133318395470894 " " y[1] (numeric) = 1.0133318395470912 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 1.7529863072240942000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0013443938656588 " " Order of pole = 4.436743107446738 " " x[1] = -0.9933000000000007 " " y[1] (analytic) = 1.0135358832092047 " " y[1] (numeric) = 1.0135358832092063 " " absolute error = 1.5543122344752192000000000000000E-15 " " relative error = 1.5335542236094588000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.001243594148131 " " Order of pole = 4.436743107446570 " " x[1] = -0.9932000000000007 " " y[1] (analytic) = 1.01373998850662 " " y[1] (numeric) = 1.0137399885066216 " " absolute error = 1.5543122344752192000000000000000E-15 " " relative error = 1.53324545948408050000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0011427944306113 " " Order of pole = 4.436743107446645 " " x[1] = -0.9931000000000008 " " y[1] (analytic) = 1.0139441554641622 " " y[1] (numeric) = 1.013944155464164 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 1.75192768736565360000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0010419947130786 " " Order of pole = 4.436743107446333 " " x[1] = -0.9930000000000008 " " y[1] (analytic) = 1.0141483841066707 " " y[1] (numeric) = 1.0141483841066723 " " absolute error = 1.5543122344752192000000000000000E-15 " " relative error = 1.53262802449205760000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.000941194995567 " " Order of pole = 4.436743107446652 " " x[1] = -0.9929000000000008 " " y[1] (analytic) = 1.0143526744589968 " " y[1] (numeric) = 1.0143526744589983 " " absolute error = 1.5543122344752192000000000000000E-15 " " relative error = 1.53231935362541320000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0008403952780391 " " Order of pole = 4.436743107446475 " " x[1] = -0.9928000000000008 " " y[1] (analytic) = 1.0145570265460047 " " y[1] (numeric) = 1.0145570265460064 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 1.75086938725144410000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.000739595560516 " " Order of pole = 4.436743107446453 " " x[1] = -0.9927000000000008 " " y[1] (analytic) = 1.0147614403925713 " " y[1] (numeric) = 1.014761440392573 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 1.75051669160098150000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0006387958430043 " " Order of pole = 4.4367431074467625 " " x[1] = -0.9926000000000008 " " y[1] (analytic) = 1.014965916023586 " " y[1] (numeric) = 1.0149659160235878 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 1.7501640314776550000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.000537996125474 " " Order of pole = 4.436743107446517 " " x[1] = -0.9925000000000008 " " y[1] (analytic) = 1.0151704534639503 " " y[1] (numeric) = 1.015170453463952 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 1.7498114068814660000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0004371964079535 " " Order of pole = 4.436743107446578 " " x[1] = -0.9924000000000008 " " y[1] (analytic) = 1.0153750527385785 " " y[1] (numeric) = 1.0153750527385803 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 1.74945881781241350000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.000336396690431 " " Order of pole = 4.436743107446567 " " x[1] = -0.9923000000000008 " " y[1] (analytic) = 1.0155797138723976 " " y[1] (numeric) = 1.0155797138723994 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 1.74910626427049770000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0002355969729144 " " Order of pole = 4.436743107446738 " " x[1] = -0.9922000000000009 " " y[1] (analytic) = 1.0157844368903473 " " y[1] (numeric) = 1.015784436890349 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 1.74875374625571870000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0001347972553876 " " Order of pole = 4.436743107446592 " " x[1] = -0.9921000000000009 " " y[1] (analytic) = 1.0159892218173794 " " y[1] (numeric) = 1.015989221817381 " " absolute error = 1.5543122344752192000000000000000E-15 " " relative error = 1.52985110579706650000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.000033997537863 " " Order of pole = 4.4367431074465244 " " x[1] = -0.9920000000000009 " " y[1] (analytic) = 1.016194068678458 " " y[1] (numeric) = 1.0161940686784598 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 1.74804881680757100000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9999331978203431 " " Order of pole = 4.436743107446599 " " x[1] = -0.9919000000000009 " " y[1] (analytic) = 1.0163989774985611 " " y[1] (numeric) = 1.016398977498563 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 1.74769640537420280000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9998323981028236 " " Order of pole = 4.436743107446674 " " x[1] = -0.9918000000000009 " " y[1] (analytic) = 1.016603948302678 " " y[1] (numeric) = 1.0166039483026799 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 1.7473440294679710000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9997315983852944 " " Order of pole = 4.4367431074464605 " " x[1] = -0.9917000000000009 " " y[1] (analytic) = 1.0168089811158116 " " y[1] (numeric) = 1.0168089811158132 " " absolute error = 1.5543122344752192000000000000000E-15 " " relative error = 1.52861772795276630000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9996307986677692 " " Order of pole = 4.436743107446375 " " x[1] = -0.9916000000000009 " " y[1] (analytic) = 1.0170140759629762 " " y[1] (numeric) = 1.0170140759629778 " " absolute error = 1.5543122344752192000000000000000E-15 " " relative error = 1.52830946120730280000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9995299989502513 " " Order of pole = 4.436743107446503 " " x[1] = -0.9915000000000009 " " y[1] (analytic) = 1.0172192328691996 " " y[1] (numeric) = 1.0172192328692014 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 1.74628711491209650000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.999429199232725 " " Order of pole = 4.436743107446379 " " x[1] = -0.991400000000001 " " y[1] (analytic) = 1.0174244518595223 " " y[1] (numeric) = 1.017424451859524 " " absolute error = 1.5543122344752192000000000000000E-15 " " relative error = 1.527693020975110200000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9993283995151944 " " Order of pole = 4.4367431074461265 " " x[1] = -0.991300000000001 " " y[1] (analytic) = 1.017629732958997 " " y[1] (numeric) = 1.0176297329589985 " " absolute error = 1.5543122344752192000000000000000E-15 " " relative error = 1.52738484748838080000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9992275997976916 " " Order of pole = 4.436743107446706 " " x[1] = -0.991200000000001 " " y[1] (analytic) = 1.0178350761926889 " " y[1] (numeric) = 1.0178350761926906 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 1.7452305201004528000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9991268000801609 " " Order of pole = 4.436743107446453 " " x[1] = -0.991100000000001 " " y[1] (analytic) = 1.0180404815856767 " " y[1] (numeric) = 1.0180404815856783 " " absolute error = 1.5543122344752192000000000000000E-15 " " relative error = 1.5267685937736558000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9990260003626396 " " Order of pole = 4.436743107446482 " " x[1] = -0.991000000000001 " " y[1] (analytic) = 1.018245949163051 " " y[1] (numeric) = 1.0182459491630524 " " absolute error = 1.5543122344752192000000000000000E-15 " " relative error = 1.52646051354566050000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9989252006451198 " " Order of pole = 4.436743107446550 " " x[1] = -0.990900000000001 " " y[1] (analytic) = 1.0184514789499146 " " y[1] (numeric) = 1.0184514789499164 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 1.74417424503304020000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9988244009276007 " " Order of pole = 4.436743107446645 " " x[1] = -0.990800000000001 " " y[1] (analytic) = 1.0186570709713845 " " y[1] (numeric) = 1.0186570709713862 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 1.74382222439817630000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9987236012100752 " " Order of pole = 4.436743107446553 " " x[1] = -0.990700000000001 " " y[1] (analytic) = 1.018862725252589 " " y[1] (numeric) = 1.0188627252525908 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 1.74347023929044910000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9986228014925518 " " Order of pole = 4.43674310744651 " " x[1] = -0.990600000000001 " " y[1] (analytic) = 1.0190684418186697 " " y[1] (numeric) = 1.0190684418186717 " " absolute error = 1.9984014443252818000000000000000E-15 " " relative error = 1.96100807592359120000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9985220017750281 " " Order of pole = 4.436743107446468 " " x[1] = -0.990500000000001 " " y[1] (analytic) = 1.019274220694781 " " y[1] (numeric) = 1.019274220694783 " " absolute error = 1.9984014443252818000000000000000E-15 " " relative error = 1.9606121726134560000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9984212020575134 " " Order of pole = 4.436743107446688 " " x[1] = -0.9904000000000011 " " y[1] (analytic) = 1.0194800619060895 " " y[1] (numeric) = 1.0194800619060915 " " absolute error = 1.9984014443252818000000000000000E-15 " " relative error = 1.96021630927134950000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.998320402339993 " " Order of pole = 4.436743107446745 " " x[1] = -0.9903000000000011 " " y[1] (analytic) = 1.0196859654777748 " " y[1] (numeric) = 1.019685965477777 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 2.1775783176636360000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9982196026224681 " " Order of pole = 4.436743107446663 " " x[1] = -0.9902000000000011 " " y[1] (analytic) = 1.0198919314350294 " " y[1] (numeric) = 1.0198919314350314 " " absolute error = 1.9984014443252818000000000000000E-15 " " relative error = 1.95942470249122340000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9981188029049292 " " Order of pole = 4.436743107446162 " " x[1] = -0.9901000000000011 " " y[1] (analytic) = 1.0200979598030582 " " y[1] (numeric) = 1.0200979598030602 " " absolute error = 1.9984014443252818000000000000000E-15 " " relative error = 1.95902895905320370000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9980180031874168 " " Order of pole = 4.436743107446457 " " x[1] = -0.9900000000000011 " " y[1] (analytic) = 1.0203040506070786 " " y[1] (numeric) = 1.0203040506070808 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 2.17625917287023660000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9979172034699093 " " Order of pole = 4.436743107446905 " " x[1] = -0.9899000000000011 " " y[1] (analytic) = 1.0205102038723215 " " y[1] (numeric) = 1.020510203872324 " " absolute error = 2.4424906541753444000000000000000E-15 " " relative error = 2.39340150143264070000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.99781640375237 " " Order of pole = 4.436743107446382 " " x[1] = -0.9898000000000011 " " y[1] (analytic) = 1.0207164196240301 " " y[1] (numeric) = 1.0207164196240326 " " absolute error = 2.4424906541753444000000000000000E-15 " " relative error = 2.39291796155783330000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9977156040348557 " " Order of pole = 4.436743107446624 " " x[1] = -0.9897000000000011 " " y[1] (analytic) = 1.0209226978874604 " " y[1] (numeric) = 1.0209226978874628 " " absolute error = 2.4424906541753444000000000000000E-15 " " relative error = 2.39243447053283960000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9976148043173392 " " Order of pole = 4.4367431074467945 " " x[1] = -0.9896000000000011 " " y[1] (analytic) = 1.021129038687881 " " y[1] (numeric) = 1.0211290386878835 " " absolute error = 2.4424906541753444000000000000000E-15 " " relative error = 2.39195102835765870000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9975140045998085 " " Order of pole = 4.436743107446542 " " x[1] = -0.9895000000000012 " " y[1] (analytic) = 1.0213354420505736 " " y[1] (numeric) = 1.021335442050576 " " absolute error = 2.4424906541753444000000000000000E-15 " " relative error = 2.39146763503229050000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9974132048822848 " " Order of pole = 4.4367431074465 " " x[1] = -0.9894000000000012 " " y[1] (analytic) = 1.0215419080008323 " " y[1] (numeric) = 1.0215419080008348 " " absolute error = 2.4424906541753444000000000000000E-15 " " relative error = 2.39098429055673580000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9973124051647655 " " Order of pole = 4.436743107446578 " " x[1] = -0.9893000000000012 " " y[1] (analytic) = 1.0217484365639642 " " y[1] (numeric) = 1.0217484365639666 " " absolute error = 2.4424906541753444000000000000000E-15 " " relative error = 2.3905009949309940000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9972116054472379 " " Order of pole = 4.436743107446414 " " x[1] = -0.9892000000000012 " " y[1] (analytic) = 1.0219550277652893 " " y[1] (numeric) = 1.0219550277652918 " " absolute error = 2.4424906541753444000000000000000E-15 " " relative error = 2.39001774815506580000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9971108057297258 " " Order of pole = 4.43674310744672 " " x[1] = -0.9891000000000012 " " y[1] (analytic) = 1.0221616816301402 " " y[1] (numeric) = 1.0221616816301426 " " absolute error = 2.4424906541753444000000000000000E-15 " " relative error = 2.389534550228950000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9970100060121957 " " Order of pole = 4.436743107446482 " " x[1] = -0.9890000000000012 " " y[1] (analytic) = 1.0223683981838623 " " y[1] (numeric) = 1.0223683981838647 " " absolute error = 2.4424906541753444000000000000000E-15 " " relative error = 2.3890514011526480000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9969092062946895 " " Order of pole = 4.436743107446961 " " x[1] = -0.9889000000000012 " " y[1] (analytic) = 1.022575177451814 " " y[1] (numeric) = 1.0225751774518164 " " absolute error = 2.4424906541753444000000000000000E-15 " " relative error = 2.3885683009261588000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9968084065771526 " " Order of pole = 4.4367431074465244 " " x[1] = -0.9888000000000012 " " y[1] (analytic) = 1.0227820194593664 " " y[1] (numeric) = 1.0227820194593689 " " absolute error = 2.4424906541753444000000000000000E-15 " " relative error = 2.3880852495494823000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9967076068596278 " " Order of pole = 4.436743107446443 " " x[1] = -0.9887000000000012 " " y[1] (analytic) = 1.0229889242319032 " " y[1] (numeric) = 1.022988924231906 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 2.60465699675194840000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9966068071420998 " " Order of pole = 4.436743107446272 " " x[1] = -0.9886000000000013 " " y[1] (analytic) = 1.0231958917948218 " " y[1] (numeric) = 1.0231958917948243 " " absolute error = 2.4424906541753444000000000000000E-15 " " relative error = 2.3871192933455693000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.996506007424582 " " Order of pole = 4.4367431074464 " " x[1] = -0.9885000000000013 " " y[1] (analytic) = 1.0234029221735312 " " y[1] (numeric) = 1.0234029221735337 " " absolute error = 2.4424906541753444000000000000000E-15 " " relative error = 2.38663638851833230000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9964052077070684 " " Order of pole = 4.4367431074466595 " " x[1] = -0.9884000000000013 " " y[1] (analytic) = 1.0236100153934542 " " y[1] (numeric) = 1.0236100153934566 " " absolute error = 2.4424906541753444000000000000000E-15 " " relative error = 2.38615353254090860000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.996304407989543 " " Order of pole = 4.436743107446567 " " x[1] = -0.9883000000000013 " " y[1] (analytic) = 1.0238171714800262 " " y[1] (numeric) = 1.0238171714800286 " " absolute error = 2.4424906541753444000000000000000E-15 " " relative error = 2.38567072541329780000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.996203608272022 " " Order of pole = 4.436743107446606 " " x[1] = -0.9882000000000013 " " y[1] (analytic) = 1.024024390458695 " " y[1] (numeric) = 1.0240243904586976 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 2.6020232368750910000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9961028085545031 " " Order of pole = 4.436743107446695 " " x[1] = -0.9881000000000013 " " y[1] (analytic) = 1.0242316723549223 " " y[1] (numeric) = 1.024231672354925 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 2.60149664477183460000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9960020088369815 " " Order of pole = 4.43674310744672 " " x[1] = -0.9880000000000013 " " y[1] (analytic) = 1.0244390171941817 " " y[1] (numeric) = 1.0244390171941844 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 2.6009701059592840000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.995901209119447 " " Order of pole = 4.43674310744635 " " x[1] = -0.9879000000000013 " " y[1] (analytic) = 1.02464642500196 " " y[1] (numeric) = 1.024646425001963 " " absolute error = 2.886579864025407000000000000000E-15 " " relative error = 2.8171472554738920000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9958004094019304 " " Order of pole = 4.43674310744651 " " x[1] = -0.9878000000000013 " " y[1] (analytic) = 1.0248538958037576 " " y[1] (numeric) = 1.0248538958037603 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 2.5999171882062980000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9956996096844044 " " Order of pole = 4.4367431074464 " " x[1] = -0.9877000000000014 " " y[1] (analytic) = 1.0250614296250864 " " y[1] (numeric) = 1.0250614296250893 " " absolute error = 2.886579864025407000000000000000E-15 " " relative error = 2.8160067100380180000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9955988099668964 " " Order of pole = 4.436743107446826 " " x[1] = -0.9876000000000014 " " y[1] (analytic) = 1.0252690264914723 " " y[1] (numeric) = 1.0252690264914752 " " absolute error = 2.886579864025407000000000000000E-15 " " relative error = 2.8154365239174770000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9954980102493586 " " Order of pole = 4.4367431074463575 " " x[1] = -0.9875000000000014 " " y[1] (analytic) = 1.0254766864284541 " " y[1] (numeric) = 1.025476686428457 " " absolute error = 2.886579864025407000000000000000E-15 " " relative error = 2.81486639552853360000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9953972105318359 " " Order of pole = 4.43674310744635 " " x[1] = -0.9874000000000014 " " y[1] (analytic) = 1.025684409461583 " " y[1] (numeric) = 1.0256844094615858 " " absolute error = 2.886579864025407000000000000000E-15 " " relative error = 2.81429632487118800000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9952964108143245 " " Order of pole = 4.43674310744667 " " x[1] = -0.9873000000000014 " " y[1] (analytic) = 1.0258921956164233 " " y[1] (numeric) = 1.0258921956164262 " " absolute error = 2.886579864025407000000000000000E-15 " " relative error = 2.81372631194543870000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.995195611096797 " " Order of pole = 4.43674310744651 " " x[1] = -0.9872000000000014 " " y[1] (analytic) = 1.0261000449185527 " " y[1] (numeric) = 1.0261000449185556 " " absolute error = 2.886579864025407000000000000000E-15 " " relative error = 2.81315635675128700000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9950948113792671 " " Order of pole = 4.436743107446283 " " x[1] = -0.9871000000000014 " " y[1] (analytic) = 1.0263079573935612 " " y[1] (numeric) = 1.026307957393564 " " absolute error = 2.886579864025407000000000000000E-15 " " relative error = 2.8125864592887320000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9949940116617516 " " Order of pole = 4.436743107446485 " " x[1] = -0.9870000000000014 " " y[1] (analytic) = 1.0265159330670521 " " y[1] (numeric) = 1.026515933067055 " " absolute error = 2.886579864025407000000000000000E-15 " " relative error = 2.81201661955777450000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9948932119442391 " " Order of pole = 4.436743107446773 " " x[1] = -0.9869000000000014 " " y[1] (analytic) = 1.026723971964642 " " y[1] (numeric) = 1.0267239719646448 " " absolute error = 2.886579864025407000000000000000E-15 " " relative error = 2.81144683755841450000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.994792412226708 " " Order of pole = 4.436743107446507 " " x[1] = -0.9868000000000015 " " y[1] (analytic) = 1.0269320741119594 " " y[1] (numeric) = 1.0269320741119625 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 3.0270984296976260000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.994691612509191 " " Order of pole = 4.436743107446663 " " x[1] = -0.9867000000000015 " " y[1] (analytic) = 1.0271402395346474 " " y[1] (numeric) = 1.0271402395346505 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 3.02648494265867800000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9945908127916673 " " Order of pole = 4.436743107446617 " " x[1] = -0.9866000000000015 " " y[1] (analytic) = 1.0273484682583605 " " y[1] (numeric) = 1.0273484682583638 " " absolute error = 3.3306690738754696000000000000000E-15 " " relative error = 3.2420051976345220000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9944900130741486 " " Order of pole = 4.43674310744672 " " x[1] = -0.9865000000000015 " " y[1] (analytic) = 1.0275567603087674 " " y[1] (numeric) = 1.0275567603087707 " " absolute error = 3.3306690738754696000000000000000E-15 " " relative error = 3.2413480233195560000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.994389213356615 " " Order of pole = 4.436743107446375 " " x[1] = -0.9864000000000015 " " y[1] (analytic) = 1.027765115711549 " " y[1] (numeric) = 1.0277651157115524 " " absolute error = 3.3306690738754696000000000000000E-15 " " relative error = 3.24069091561797100000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9942884136390961 " " Order of pole = 4.436743107446478 " " x[1] = -0.9863000000000015 " " y[1] (analytic) = 1.0279735344924 " " y[1] (numeric) = 1.027973534492403 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 3.02403161622778250000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9941876139215728 " " Order of pole = 4.43674310744645 " " x[1] = -0.9862000000000015 " " y[1] (analytic) = 1.028182016677027 " " y[1] (numeric) = 1.0281820166770301 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 3.02341844005128200000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.994086814204054 " " Order of pole = 4.436743107446550 " " x[1] = -0.9861000000000015 " " y[1] (analytic) = 1.0283905622911507 " " y[1] (numeric) = 1.0283905622911538 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 3.0228053260472710000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9939860144865339 " " Order of pole = 4.436743107446613 " " x[1] = -0.9860000000000015 " " y[1] (analytic) = 1.0285991713605045 " " y[1] (numeric) = 1.0285991713605076 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 3.02219227421574900000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9938852147690054 " " Order of pole = 4.436743107446421 " " x[1] = -0.9859000000000016 " " y[1] (analytic) = 1.0288078439108346 " " y[1] (numeric) = 1.0288078439108377 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 3.0215792845567174000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9937844150514892 " " Order of pole = 4.436743107446603 " " x[1] = -0.9858000000000016 " " y[1] (analytic) = 1.0290165799679005 " " y[1] (numeric) = 1.0290165799679036 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 3.02096635707017450000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9936836153339658 " " Order of pole = 4.436743107446567 " " x[1] = -0.9857000000000016 " " y[1] (analytic) = 1.029225379557475 " " y[1] (numeric) = 1.0292253795574782 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 3.02035349175612100000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9935828156164439 " " Order of pole = 4.436743107446574 " " x[1] = -0.9856000000000016 " " y[1] (analytic) = 1.0294342427053433 " " y[1] (numeric) = 1.0294342427053467 " " absolute error = 3.3306690738754696000000000000000E-15 " " relative error = 3.2354364520870250000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9934820158989222 " " Order of pole = 4.436743107446588 " " x[1] = -0.9855000000000016 " " y[1] (analytic) = 1.0296431694373045 " " y[1] (numeric) = 1.0296431694373078 " " absolute error = 3.3306690738754696000000000000000E-15 " " relative error = 3.23477994390587400000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9933812161814013 " " Order of pole = 4.4367431074466275 " " x[1] = -0.9854000000000016 " " y[1] (analytic) = 1.02985215977917 " " y[1] (numeric) = 1.0298521597791734 " " absolute error = 3.3306690738754696000000000000000E-15 " " relative error = 3.2341235023381030000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9932804164638805 " " Order of pole = 4.436743107446674 " " x[1] = -0.9853000000000016 " " y[1] (analytic) = 1.0300612137567648 " " y[1] (numeric) = 1.0300612137567684 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 3.449031602542630000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9931796167463447 " " Order of pole = 4.436743107446258 " " x[1] = -0.9852000000000016 " " y[1] (analytic) = 1.0302703313959272 " " y[1] (numeric) = 1.0302703313959307 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 3.4483315403122220000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9930788170288319 " " Order of pole = 4.436743107446550 " " x[1] = -0.9851000000000016 " " y[1] (analytic) = 1.030479512722508 " " y[1] (numeric) = 1.0304795127225115 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 3.4476315491360876000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9929780173113109 " " Order of pole = 4.436743107446578 " " x[1] = -0.9850000000000017 " " y[1] (analytic) = 1.0306887577623713 " " y[1] (numeric) = 1.030688757762375 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 3.44693162901422770000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9928772175937819 " " Order of pole = 4.436743107446372 " " x[1] = -0.9849000000000017 " " y[1] (analytic) = 1.0308980665413945 " " y[1] (numeric) = 1.0308980665413983 " " absolute error = 3.774758283725532000000000000000E-15 " " relative error = 3.66162126619330600000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9927764178762657 " " Order of pole = 4.43674310744656 " " x[1] = -0.9848000000000017 " " y[1] (analytic) = 1.0311074390854684 " " y[1] (numeric) = 1.0311074390854722 " " absolute error = 3.774758283725532000000000000000E-15 " " relative error = 3.6608777520541610000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9926756181587424 " " Order of pole = 4.436743107446521 " " x[1] = -0.9847000000000017 " " y[1] (analytic) = 1.0313168754204964 " " y[1] (numeric) = 1.0313168754205002 " " absolute error = 3.774758283725532000000000000000E-15 " " relative error = 3.6601343134101810000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9925748184412116 " " Order of pole = 4.4367431074462615 " " x[1] = -0.9846000000000017 " " y[1] (analytic) = 1.0315263755723958 " " y[1] (numeric) = 1.0315263755723993 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 3.44413265906952150000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9924740187237016 " " Order of pole = 4.4367431074466275 " " x[1] = -0.9845000000000017 " " y[1] (analytic) = 1.0317359395670953 " " y[1] (numeric) = 1.0317359395670993 " " absolute error = 3.9968028886505635000000000000000E-15 " " relative error = 3.87386223099640900000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9923732190061741 " " Order of pole = 4.436743107446475 " " x[1] = -0.9844000000000017 " " y[1] (analytic) = 1.0319455674305393 " " y[1] (numeric) = 1.0319455674305433 " " absolute error = 3.9968028886505635000000000000000E-15 " " relative error = 3.8730753004756620000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9922724192886497 " " Order of pole = 4.436743107446404 " " x[1] = -0.9843000000000017 " " y[1] (analytic) = 1.0321552591886838 " " y[1] (numeric) = 1.0321552591886876 " " absolute error = 3.774758283725532000000000000000E-15 " " relative error = 3.65716131378591900000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9921716195711254 " " Order of pole = 4.436743107446343 " " x[1] = -0.9842000000000017 " " y[1] (analytic) = 1.0323650148674979 " " y[1] (numeric) = 1.0323650148675017 " " absolute error = 3.774758283725532000000000000000E-15 " " relative error = 3.65641825261776740000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9920708198536093 " " Order of pole = 4.436743107446528 " " x[1] = -0.9841000000000018 " " y[1] (analytic) = 1.0325748344929646 " " y[1] (numeric) = 1.0325748344929684 " " absolute error = 3.774758283725532000000000000000E-15 " " relative error = 3.6556752669447820000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9919700201360783 " " Order of pole = 4.436743107446258 " " x[1] = -0.9840000000000018 " " y[1] (analytic) = 1.0327847180910796 " " y[1] (numeric) = 1.0327847180910834 " " absolute error = 3.774758283725532000000000000000E-15 " " relative error = 3.6549323567669620000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9918692204185751 " " Order of pole = 4.4367431074468335 " " x[1] = -0.9839000000000018 " " y[1] (analytic) = 1.0329946656878524 " " y[1] (numeric) = 1.0329946656878561 " " absolute error = 3.774758283725532000000000000000E-15 " " relative error = 3.65418952208430740000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9917684207010474 " " Order of pole = 4.43674310744667 " " x[1] = -0.9838000000000018 " " y[1] (analytic) = 1.0332046773093047 " " y[1] (numeric) = 1.0332046773093087 " " absolute error = 3.9968028886505635000000000000000E-15 " " relative error = 3.86835539600839700000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9916676209835179 " " Order of pole = 4.436743107446446 " " x[1] = -0.9837000000000018 " " y[1] (analytic) = 1.0334147529814728 " " y[1] (numeric) = 1.0334147529814766 " " absolute error = 3.774758283725532000000000000000E-15 " " relative error = 3.6527040792044957000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9915668212660032 " " Order of pole = 4.436743107446674 " " x[1] = -0.9836000000000018 " " y[1] (analytic) = 1.033624892730405 " " y[1] (numeric) = 1.0336248927304088 " " absolute error = 3.774758283725532000000000000000E-15 " " relative error = 3.6519614710073384000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9914660215484669 " " Order of pole = 4.436743107446247 " " x[1] = -0.9835000000000018 " " y[1] (analytic) = 1.0338350965821632 " " y[1] (numeric) = 1.0338350965821672 " " absolute error = 3.9968028886505635000000000000000E-15 " " relative error = 3.8659965229115445000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9913652218309478 " " Order of pole = 4.436743107446336 " " x[1] = -0.9834000000000018 " " y[1] (analytic) = 1.0340453645628231 " " y[1] (numeric) = 1.0340453645628271 " " absolute error = 3.9968028886505635000000000000000E-15 " " relative error = 3.86521039175137600000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9912644221134359 " " Order of pole = 4.436743107446656 " " x[1] = -0.9833000000000018 " " y[1] (analytic) = 1.034255696698473 " " y[1] (numeric) = 1.034255696698477 " " absolute error = 3.9968028886505635000000000000000E-15 " " relative error = 3.86442434052726500000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9911636223958985 " " Order of pole = 4.436743107446198 " " x[1] = -0.9832000000000019 " " y[1] (analytic) = 1.034466093015215 " " y[1] (numeric) = 1.034466093015219 " " absolute error = 3.9968028886505635000000000000000E-15 " " relative error = 3.86363836923921100000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9910628226783819 " " Order of pole = 4.436743107446365 " " x[1] = -0.9831000000000019 " " y[1] (analytic) = 1.0346765535391635 " " y[1] (numeric) = 1.0346765535391678 " " absolute error = 4.218847493575595000000000000000E-15 " " relative error = 4.07745539332539540000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9909620229608709 " " Order of pole = 4.436743107446702 " " x[1] = -0.9830000000000019 " " y[1] (analytic) = 1.0348870782964477 " " y[1] (numeric) = 1.0348870782964519 " " absolute error = 4.218847493575595000000000000000E-15 " " relative error = 4.07662592571968350000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9908612232433447 " " Order of pole = 4.436743107446581 " " x[1] = -0.9829000000000019 " " y[1] (analytic) = 1.0350976673132088 " " y[1] (numeric) = 1.035097667313213 " " absolute error = 4.218847493575595000000000000000E-15 " " relative error = 4.07579654249092150000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9907604235258273 " " Order of pole = 4.436743107446723 " " x[1] = -0.9828000000000019 " " y[1] (analytic) = 1.035308320615602 " " y[1] (numeric) = 1.0353083206156062 " " absolute error = 4.218847493575595000000000000000E-15 " " relative error = 4.07496724363910930000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9906596238083029 " " Order of pole = 4.4367431074466595 " " x[1] = -0.9827000000000019 " " y[1] (analytic) = 1.0355190382297952 " " y[1] (numeric) = 1.0355190382297994 " " absolute error = 4.218847493575595000000000000000E-15 " " relative error = 4.0741380291642476000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9905588240907792 " " Order of pole = 4.436743107446617 " " x[1] = -0.9826000000000019 " " y[1] (analytic) = 1.0357298201819705 " " y[1] (numeric) = 1.0357298201819745 " " absolute error = 3.9968028886505635000000000000000E-15 " " relative error = 3.85892422016810700000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9904580243732544 " " Order of pole = 4.436743107446539 " " x[1] = -0.9825000000000019 " " y[1] (analytic) = 1.0359406664983222 " " y[1] (numeric) = 1.0359406664983264 " " absolute error = 4.218847493575595000000000000000E-15 " " relative error = 4.0724798533453727000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9903572246557283 " " Order of pole = 4.436743107446421 " " x[1] = -0.9824000000000019 " " y[1] (analytic) = 1.0361515772050591 " " y[1] (numeric) = 1.0361515772050633 " " absolute error = 4.218847493575595000000000000000E-15 " " relative error = 4.07165089200135940000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9902564249382082 " " Order of pole = 4.436743107446475 " " x[1] = -0.982300000000002 " " y[1] (analytic) = 1.0363625523284026 " " y[1] (numeric) = 1.0363625523284068 " " absolute error = 4.218847493575595000000000000000E-15 " " relative error = 4.0708220150342970000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9901556252206908 " " Order of pole = 4.4367431074466275 " " x[1] = -0.982200000000002 " " y[1] (analytic) = 1.0365735918945873 " " y[1] (numeric) = 1.0365735918945918 " " absolute error = 4.440892098500626000000000000000E-15 " " relative error = 4.28420339204651060000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9900548255031673 " " Order of pole = 4.436743107446585 " " x[1] = -0.982100000000002 " " y[1] (analytic) = 1.036784695929862 " " y[1] (numeric) = 1.0367846959298666 " " absolute error = 4.440892098500626000000000000000E-15 " " relative error = 4.2833310676116020000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9899540257856478 " " Order of pole = 4.436743107446674 " " x[1] = -0.982000000000002 " " y[1] (analytic) = 1.0369958644604884 " " y[1] (numeric) = 1.0369958644604929 " " absolute error = 4.440892098500626000000000000000E-15 " " relative error = 4.2824588319945350000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9898532260681243 " " Order of pole = 4.436743107446631 " " x[1] = -0.981900000000002 " " y[1] (analytic) = 1.0372070975127412 " " y[1] (numeric) = 1.0372070975127456 " " absolute error = 4.440892098500626000000000000000E-15 " " relative error = 4.281586685195310000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9897524263505953 " " Order of pole = 4.4367431074464285 " " x[1] = -0.981800000000002 " " y[1] (analytic) = 1.0374183951129086 " " y[1] (numeric) = 1.0374183951129132 " " absolute error = 4.6629367034256575000000000000000E-15 " " relative error = 4.4947503585746246000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9896516266330789 " " Order of pole = 4.436743107446599 " " x[1] = -0.981700000000002 " " y[1] (analytic) = 1.0376297572872928 " " y[1] (numeric) = 1.0376297572872974 " " absolute error = 4.6629367034256575000000000000000E-15 " " relative error = 4.4938347909529075000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9895508269155576 " " Order of pole = 4.436743107446631 " " x[1] = -0.981600000000002 " " y[1] (analytic) = 1.037841184062209 " " y[1] (numeric) = 1.0378411840622137 " " absolute error = 4.6629367034256575000000000000000E-15 " " relative error = 4.49291931658992340000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9894500271980462 " " Order of pole = 4.436743107446954 " " x[1] = -0.981500000000002 " " y[1] (analytic) = 1.0380526754639858 " " y[1] (numeric) = 1.0380526754639905 " " absolute error = 4.6629367034256575000000000000000E-15 " " relative error = 4.4920039354856740000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9893492274805108 " " Order of pole = 4.436743107446556 " " x[1] = -0.981400000000002 " " y[1] (analytic) = 1.0382642315189652 " " y[1] (numeric) = 1.0382642315189698 " " absolute error = 4.6629367034256575000000000000000E-15 " " relative error = 4.4910886476401580000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9892484277629799 " " Order of pole = 4.4367431074462935 " " x[1] = -0.9813000000000021 " " y[1] (analytic) = 1.0384758522535023 " " y[1] (numeric) = 1.0384758522535071 " " absolute error = 4.884981308350689000000000000000E-15 " " relative error = 4.703991236532110000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9891476280454631 " " Order of pole = 4.436743107446453 " " x[1] = -0.9812000000000021 " " y[1] (analytic) = 1.0386875376939664 " " y[1] (numeric) = 1.0386875376939713 " " absolute error = 4.884981308350689000000000000000E-15 " " relative error = 4.7030325589503460000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9890468283279471 " " Order of pole = 4.436743107446642 " " x[1] = -0.9811000000000021 " " y[1] (analytic) = 1.0388992878667396 " " y[1] (numeric) = 1.0388992878667445 " " absolute error = 4.884981308350689000000000000000E-15 " " relative error = 4.7020739790682087000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9889460286104171 " " Order of pole = 4.436743107446404 " " x[1] = -0.9810000000000021 " " y[1] (analytic) = 1.039111102798218 " " y[1] (numeric) = 1.0391111027982227 " " absolute error = 4.6629367034256575000000000000000E-15 " " relative error = 4.48742842884543750000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9888452288929074 " " Order of pole = 4.43674310744678 " " x[1] = -0.9809000000000021 " " y[1] (analytic) = 1.0393229825148103 " " y[1] (numeric) = 1.0393229825148151 " " absolute error = 4.884981308350689000000000000000E-15 " " relative error = 4.7001571124028120000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9887444291753698 " " Order of pole = 4.436743107446322 " " x[1] = -0.9808000000000021 " " y[1] (analytic) = 1.0395349270429395 " " y[1] (numeric) = 1.0395349270429444 " " absolute error = 4.884981308350689000000000000000E-15 " " relative error = 4.6991988256195530000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9886436294578651 " " Order of pole = 4.436743107446848 " " x[1] = -0.9807000000000021 " " y[1] (analytic) = 1.0397469364090417 " " y[1] (numeric) = 1.0397469364090466 " " absolute error = 4.884981308350689000000000000000E-15 " " relative error = 4.698240636535920000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.988542829740325 " " Order of pole = 4.436743107446308 " " x[1] = -0.9806000000000021 " " y[1] (analytic) = 1.0399590106395666 " " y[1] (numeric) = 1.0399590106395715 " " absolute error = 4.884981308350689000000000000000E-15 " " relative error = 4.6972825451519130000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9884420300228111 " " Order of pole = 4.43674310744656 " " x[1] = -0.9805000000000021 " " y[1] (analytic) = 1.0401711497609771 " " y[1] (numeric) = 1.0401711497609822 " " absolute error = 5.10702591327572000000000000000E-15 " " relative error = 4.9097938492615110000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9883412303052898 " " Order of pole = 4.436743107446585 " " x[1] = -0.9804000000000022 " " y[1] (analytic) = 1.04038335379975 " " y[1] (numeric) = 1.0403833537997553 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 5.1222181696175760000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9882404305877682 " " Order of pole = 4.43674310744661 " " x[1] = -0.9803000000000022 " " y[1] (analytic) = 1.0405956227823756 " " y[1] (numeric) = 1.0405956227823807 " " absolute error = 5.10702591327572000000000000000E-15 " " relative error = 4.9077910779793620000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.988139630870248 " " Order of pole = 4.436743107446667 " " x[1] = -0.9802000000000022 " " y[1] (analytic) = 1.0408079567353572 " " y[1] (numeric) = 1.0408079567353623 " " absolute error = 5.10702591327572000000000000000E-15 " " relative error = 4.9067898455490644000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9880388311527161 " " Order of pole = 4.436743107446368 " " x[1] = -0.9801000000000022 " " y[1] (analytic) = 1.041020355685212 " " y[1] (numeric) = 1.0410203556852173 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 5.1190838767922970000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9879380314352 " " Order of pole = 4.436743107446553 " " x[1] = -0.9800000000000022 " " y[1] (analytic) = 1.041232819658471 " " y[1] (numeric) = 1.0412328196584761 " " absolute error = 5.10702591327572000000000000000E-15 " " relative error = 4.9047876871100227000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9878372317176791 " " Order of pole = 4.436743107446599 " " x[1] = -0.9799000000000022 " " y[1] (analytic) = 1.041445348681678 " " y[1] (numeric) = 1.0414453486816833 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 5.1169948811491630000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.987736432000161 " " Order of pole = 4.43674310744672 " " x[1] = -0.9798000000000022 " " y[1] (analytic) = 1.0416579427813912 " " y[1] (numeric) = 1.0416579427813963 " " absolute error = 5.10702591327572000000000000000E-15 " " relative error = 4.9027859372330557000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9876356322826302 " " Order of pole = 4.436743107446453 " " x[1] = -0.9797000000000022 " " y[1] (analytic) = 1.0418706019841815 " " y[1] (numeric) = 1.0418706019841868 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 5.114906311831671000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9875348325651033 " " Order of pole = 4.436743107446315 " " x[1] = -0.9796000000000022 " " y[1] (analytic) = 1.0420833263166343 " " y[1] (numeric) = 1.0420833263166394 " " absolute error = 5.10702591327572000000000000000E-15 " " relative error = 4.9007845959181610000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9874340328475872 " " Order of pole = 4.436743107446503 " " x[1] = -0.9795000000000023 " " y[1] (analytic) = 1.0422961158053474 " " y[1] (numeric) = 1.0422961158053528 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 5.1128181688398180000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9873332331300739 " " Order of pole = 4.436743107446777 " " x[1] = -0.9794000000000023 " " y[1] (analytic) = 1.0425089704769335 " " y[1] (numeric) = 1.0425089704769388 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 5.1117742572160070000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9872324334125459 " " Order of pole = 4.4367431074465955 " " x[1] = -0.9793000000000023 " " y[1] (analytic) = 1.0427218903580178 " " y[1] (numeric) = 1.042721890358023 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 5.1107304521736070000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9871316336950172 " " Order of pole = 4.4367431074464 " " x[1] = -0.9792000000000023 " " y[1] (analytic) = 1.0429348754752399 " " y[1] (numeric) = 1.042934875475245 " " absolute error = 5.10702591327572000000000000000E-15 " " relative error = 4.8967831389745920000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9870308339775008 " " Order of pole = 4.436743107446574 " " x[1] = -0.9791000000000023 " " y[1] (analytic) = 1.043147925855252 " " y[1] (numeric) = 1.0431479258552574 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 5.1086431618330390000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.986930034259978 " " Order of pole = 4.436743107446556 " " x[1] = -0.9790000000000023 " " y[1] (analytic) = 1.0433610415247212 " " y[1] (numeric) = 1.0433610415247265 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 5.107599676534870000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9868292345424624 " " Order of pole = 4.436743107446755 " " x[1] = -0.9789000000000023 " " y[1] (analytic) = 1.043574222510327 " " y[1] (numeric) = 1.0435742225103326 " " absolute error = 5.551115123125783000000000000000E-15 " " relative error = 5.3193294768938680000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9867284348249281 " " Order of pole = 4.436743107446393 " " x[1] = -0.9788000000000023 " " y[1] (analytic) = 1.043787468838764 " " y[1] (numeric) = 1.0437874688387694 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 5.1055130256827640000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9866276351074149 " " Order of pole = 4.436743107446663 " " x[1] = -0.9787000000000023 " " y[1] (analytic) = 1.0440007805367386 " " y[1] (numeric) = 1.044000780536744 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 5.1044698601288260000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9865268353898934 " " Order of pole = 4.436743107446684 " " x[1] = -0.9786000000000024 " " y[1] (analytic) = 1.044214157630972 " " y[1] (numeric) = 1.0442141576309776 " " absolute error = 5.551115123125783000000000000000E-15 " " relative error = 5.3160695845378110000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9864260356723707 " " Order of pole = 4.43674310744667 " " x[1] = -0.9785000000000024 " " y[1] (analytic) = 1.0444276001481991 " " y[1] (numeric) = 1.0444276001482047 " " absolute error = 5.551115123125783000000000000000E-15 " " relative error = 5.3149831757970640000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.986325235954848 " " Order of pole = 4.436743107446656 " " x[1] = -0.9784000000000024 " " y[1] (analytic) = 1.0446411081151683 " " y[1] (numeric) = 1.0446411081151736 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 5.1013410029554740000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9862244362373248 " " Order of pole = 4.436743107446624 " " x[1] = -0.9783000000000024 " " y[1] (analytic) = 1.044854681558641 " " y[1] (numeric) = 1.0448546815586464 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 5.1002982637271800000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9861236365197906 " " Order of pole = 4.436743107446258 " " x[1] = -0.9782000000000024 " " y[1] (analytic) = 1.0450683205053932 " " y[1] (numeric) = 1.0450683205053986 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 5.0992556310802940000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9860228368022669 " " Order of pole = 4.436743107446212 " " x[1] = -0.9781000000000024 " " y[1] (analytic) = 1.0452820249822143 " " y[1] (numeric) = 1.0452820249822197 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 5.0982131050148170000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9859220370847483 " " Order of pole = 4.4367431074463255 " " x[1] = -0.9780000000000024 " " y[1] (analytic) = 1.0454957950159074 " " y[1] (numeric) = 1.0454957950159127 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 5.0971706855307520000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9858212373672237 " " Order of pole = 4.436743107446247 " " x[1] = -0.9779000000000024 " " y[1] (analytic) = 1.0457096306332887 " " y[1] (numeric) = 1.0457096306332943 " " absolute error = 5.551115123125783000000000000000E-15 " " relative error = 5.3084670548209360000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.985720437649714 " " Order of pole = 4.436743107446624 " " x[1] = -0.9778000000000024 " " y[1] (analytic) = 1.0459235318611892 " " y[1] (numeric) = 1.0459235318611948 " " absolute error = 5.551115123125783000000000000000E-15 " " relative error = 5.3073814232363060000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9856196379322002 " " Order of pole = 4.436743107446887 " " x[1] = -0.9777000000000025 " " y[1] (analytic) = 1.0461374987264531 " " y[1] (numeric) = 1.0461374987264587 " " absolute error = 5.551115123125783000000000000000E-15 " " relative error = 5.3062959026739790000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9855188382146624 " " Order of pole = 4.436743107446407 " " x[1] = -0.9776000000000025 " " y[1] (analytic) = 1.046351531255938 " " y[1] (numeric) = 1.0463515312559435 " " absolute error = 5.551115123125783000000000000000E-15 " " relative error = 5.3052104931339540000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.98541803849715 " " Order of pole = 4.436743107446706 " " x[1] = -0.9775000000000025 " " y[1] (analytic) = 1.0465656294765155 " " y[1] (numeric) = 1.046565629476521 " " absolute error = 5.551115123125783000000000000000E-15 " " relative error = 5.3041251946162330000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9853172387796185 " " Order of pole = 4.436743107446425 " " x[1] = -0.9774000000000025 " " y[1] (analytic) = 1.0467797934150715 " " y[1] (numeric) = 1.0467797934150769 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 5.0909184068359790000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9852164390620933 " " Order of pole = 4.43674310744634 " " x[1] = -0.9773000000000025 " " y[1] (analytic) = 1.0469940230985044 " " y[1] (numeric) = 1.04699402309851 " " absolute error = 5.551115123125783000000000000000E-15 " " relative error = 5.3019549306476950000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9851156393445645 " " Order of pole = 4.43674310744613 " " x[1] = -0.9772000000000025 " " y[1] (analytic) = 1.0472083185537278 " " y[1] (numeric) = 1.0472083185537333 " " absolute error = 5.551115123125783000000000000000E-15 " " relative error = 5.3008699651968800000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9850148396270455 " " Order of pole = 4.43674310744623 " " x[1] = -0.9771000000000025 " " y[1] (analytic) = 1.047422679807668 " " y[1] (numeric) = 1.0474226798076736 " " absolute error = 5.551115123125783000000000000000E-15 " " relative error = 5.2997851107683680000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9849140399095235 " " Order of pole = 4.436743107446237 " " x[1] = -0.9770000000000025 " " y[1] (analytic) = 1.0476371068872656 " " y[1] (numeric) = 1.0476371068872712 " " absolute error = 5.551115123125783000000000000000E-15 " " relative error = 5.2987003673621580000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9848132401920046 " " Order of pole = 4.436743107446336 " " x[1] = -0.9769000000000025 " " y[1] (analytic) = 1.0478515998194748 " " y[1] (numeric) = 1.0478515998194804 " " absolute error = 5.551115123125783000000000000000E-15 " " relative error = 5.297615734978250000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9847124404744975 " " Order of pole = 4.436743107446798 " " x[1] = -0.9768000000000026 " " y[1] (analytic) = 1.0480661586312636 " " y[1] (numeric) = 1.0480661586312692 " " absolute error = 5.551115123125783000000000000000E-15 " " relative error = 5.2965312136166460000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.984611640756976 " " Order of pole = 4.436743107446816 " " x[1] = -0.9767000000000026 " " y[1] (analytic) = 1.048280783349614 " " y[1] (numeric) = 1.0482807833496195 " " absolute error = 5.551115123125783000000000000000E-15 " " relative error = 5.2954468032773440000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9845108410394372 " " Order of pole = 4.436743107446311 " " x[1] = -0.9766000000000026 " " y[1] (analytic) = 1.0484954740015218 " " y[1] (numeric) = 1.048495474001527 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 5.0825880038019290000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9844100413219188 " " Order of pole = 4.4367431074464285 " " x[1] = -0.9765000000000026 " " y[1] (analytic) = 1.048710230613996 " " y[1] (numeric) = 1.0487102306140015 " " absolute error = 5.551115123125783000000000000000E-15 " " relative error = 5.2932783156656450000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9843092416043979 " " Order of pole = 4.436743107446468 " " x[1] = -0.9764000000000026 " " y[1] (analytic) = 1.0489250532140602 " " y[1] (numeric) = 1.0489250532140657 " " absolute error = 5.551115123125783000000000000000E-15 " " relative error = 5.2921942383932510000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9842084418868796 " " Order of pole = 4.436743107446585 " " x[1] = -0.9763000000000026 " " y[1] (analytic) = 1.0491399418287517 " " y[1] (numeric) = 1.0491399418287572 " " absolute error = 5.551115123125783000000000000000E-15 " " relative error = 5.2911102721431570000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9841076421693505 " " Order of pole = 4.436743107446375 " " x[1] = -0.9762000000000026 " " y[1] (analytic) = 1.0493548964851214 " " y[1] (numeric) = 1.049354896485127 " " absolute error = 5.551115123125783000000000000000E-15 " " relative error = 5.2900264169153670000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9840068424518291 " " Order of pole = 4.436743107446404 " " x[1] = -0.9761000000000026 " " y[1] (analytic) = 1.0495699172102342 " " y[1] (numeric) = 1.0495699172102397 " " absolute error = 5.551115123125783000000000000000E-15 " " relative error = 5.288942672709880000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9839060427343156 " " Order of pole = 4.436743107446667 " " x[1] = -0.9760000000000026 " " y[1] (analytic) = 1.0497850040311687 " " y[1] (numeric) = 1.0497850040311743 " " absolute error = 5.551115123125783000000000000000E-15 " " relative error = 5.2878590395266940000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9838052430167876 " " Order of pole = 4.436743107446485 " " x[1] = -0.9759000000000027 " " y[1] (analytic) = 1.0500001569750177 " " y[1] (numeric) = 1.0500001569750232 " " absolute error = 5.551115123125783000000000000000E-15 " " relative error = 5.2867755173658120000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9837044432992631 " " Order of pole = 4.436743107446414 " " x[1] = -0.9758000000000027 " " y[1] (analytic) = 1.050215376068888 " " y[1] (numeric) = 1.0502153760688933 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 5.0742644219781410000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9836036435817418 " " Order of pole = 4.436743107446446 " " x[1] = -0.9757000000000027 " " y[1] (analytic) = 1.050430661339899 " " y[1] (numeric) = 1.0504306613399046 " " absolute error = 5.551115123125783000000000000000E-15 " " relative error = 5.2846088061109530000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9835028438642215 " " Order of pole = 4.436743107446503 " " x[1] = -0.9756000000000027 " " y[1] (analytic) = 1.050646012815186 " " y[1] (numeric) = 1.0506460128151915 " " absolute error = 5.551115123125783000000000000000E-15 " " relative error = 5.2835256170169780000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.983402044146703 " " Order of pole = 4.436743107446613 " " x[1] = -0.9755000000000027 " " y[1] (analytic) = 1.0508614305218966 " " y[1] (numeric) = 1.0508614305219024 " " absolute error = 5.773159728050814000000000000000E-15 " " relative error = 5.4937402405031180000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9833012444291809 " " Order of pole = 4.43674310744662 " " x[1] = -0.9754000000000027 " " y[1] (analytic) = 1.0510769144871934 " " y[1] (numeric) = 1.051076914487199 " " absolute error = 5.551115123125783000000000000000E-15 " " relative error = 5.2813595718959340000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9832004447116612 " " Order of pole = 4.436743107446695 " " x[1] = -0.9753000000000027 " " y[1] (analytic) = 1.0512924647382518 " " y[1] (numeric) = 1.0512924647382575 " " absolute error = 5.773159728050814000000000000000E-15 " " relative error = 5.4914877845036210000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9830996449941398 " " Order of pole = 4.43674310744672 " " x[1] = -0.9752000000000027 " " y[1] (analytic) = 1.0515080813022624 " " y[1] (numeric) = 1.0515080813022681 " " absolute error = 5.773159728050814000000000000000E-15 " " relative error = 5.4903617296986650000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9829988452766107 " " Order of pole = 4.436743107446514 " " x[1] = -0.9751000000000027 " " y[1] (analytic) = 1.051723764206429 " " y[1] (numeric) = 1.0517237642064345 " " absolute error = 5.551115123125783000000000000000E-15 " " relative error = 5.2781113368816370000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9828980455590921 " " Order of pole = 4.43674310744662 " " x[1] = -0.9750000000000028 " " y[1] (analytic) = 1.051939513477969 " " y[1] (numeric) = 1.0519395134779748 " " absolute error = 5.773159728050814000000000000000E-15 " " relative error = 5.4881099664783360000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9827972458415706 " " Order of pole = 4.436743107446642 " " x[1] = -0.9749000000000028 " " y[1] (analytic) = 1.0521553291441148 " " y[1] (numeric) = 1.0521553291441206 " " absolute error = 5.773159728050814000000000000000E-15 " " relative error = 5.4869842580629640000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9826964461240398 " " Order of pole = 4.436743107446382 " " x[1] = -0.9748000000000028 " " y[1] (analytic) = 1.0523712112321117 " " y[1] (numeric) = 1.0523712112321177 " " absolute error = 5.995204332975845000000000000000E-15 " " relative error = 5.6968532291535090000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9825956464065132 " " Order of pole = 4.436743107446244 " " x[1] = -0.9747000000000028 " " y[1] (analytic) = 1.0525871597692202 " " y[1] (numeric) = 1.052587159769226 " " absolute error = 5.773159728050814000000000000000E-15 " " relative error = 5.4847331876218020000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9824948466889978 " " Order of pole = 4.43674310744645 " " x[1] = -0.9746000000000028 " " y[1] (analytic) = 1.0528031747827133 " " y[1] (numeric) = 1.0528031747827191 " " absolute error = 5.773159728050814000000000000000E-15 " " relative error = 5.4836078255960130000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9823940469714743 " " Order of pole = 4.436743107446407 " " x[1] = -0.9745000000000028 " " y[1] (analytic) = 1.053019256299879 " " y[1] (numeric) = 1.053019256299885 " " absolute error = 5.995204332975845000000000000000E-15 " " relative error = 5.6933472936116280000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9822932472539635 " " Order of pole = 4.4367431074467625 " " x[1] = -0.9744000000000028 " " y[1] (analytic) = 1.0532354043480194 " " y[1] (numeric) = 1.0532354043480252 " " absolute error = 5.773159728050814000000000000000E-15 " " relative error = 5.4813574479340190000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9821924475364303 " " Order of pole = 4.436743107446425 " " x[1] = -0.9743000000000028 " " y[1] (analytic) = 1.0534516189544496 " " y[1] (numeric) = 1.0534516189544556 " " absolute error = 5.995204332975845000000000000000E-15 " " relative error = 5.6910106027708070000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9820916478189052 " " Order of pole = 4.436743107446336 " " x[1] = -0.9742000000000028 " " y[1] (analytic) = 1.0536679001465001 " " y[1] (numeric) = 1.053667900146506 " " absolute error = 5.773159728050814000000000000000E-15 " " relative error = 5.4791075321248040000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9819908481013917 " " Order of pole = 4.436743107446606 " " x[1] = -0.9741000000000029 " " y[1] (analytic) = 1.0538842479515143 " " y[1] (numeric) = 1.05388424795152 " " absolute error = 5.773159728050814000000000000000E-15 " " relative error = 5.4779827474149880000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9818900483838667 " " Order of pole = 4.436743107446521 " " x[1] = -0.9740000000000029 " " y[1] (analytic) = 1.05410066239685 " " y[1] (numeric) = 1.0541006623968558 " " absolute error = 5.773159728050814000000000000000E-15 " " relative error = 5.4768580781683660000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9817892486663434 " " Order of pole = 4.436743107446482 " " x[1] = -0.9739000000000029 " " y[1] (analytic) = 1.0543171435098793 " " y[1] (numeric) = 1.0543171435098853 " " absolute error = 5.995204332975845000000000000000E-15 " " relative error = 5.6863386599382070000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9816884489488206 " " Order of pole = 4.436743107446464 " " x[1] = -0.9738000000000029 " " y[1] (analytic) = 1.0545336913179884 " " y[1] (numeric) = 1.0545336913179941 " " absolute error = 5.773159728050814000000000000000E-15 " " relative error = 5.4746090860647070000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9815876492313083 " " Order of pole = 4.436743107446766 " " x[1] = -0.9737000000000029 " " y[1] (analytic) = 1.054750305848577 " " y[1] (numeric) = 1.0547503058485825 " " absolute error = 5.551115123125783000000000000000E-15 " " relative error = 5.2629661184689110000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.981486849513777 " " Order of pole = 4.436743107446485 " " x[1] = -0.9736000000000029 " " y[1] (analytic) = 1.0549669871290588 " " y[1] (numeric) = 1.0549669871290646 " " absolute error = 5.773159728050814000000000000000E-15 " " relative error = 5.4723605558138270000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9813860497962504 " " Order of pole = 4.436743107446354 " " x[1] = -0.9735000000000029 " " y[1] (analytic) = 1.055183735186863 " " y[1] (numeric) = 1.0551837351868685 " " absolute error = 5.551115123125783000000000000000E-15 " " relative error = 5.2608042921953620000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9812852500787379 " " Order of pole = 4.436743107446649 " " x[1] = -0.9734000000000029 " " y[1] (analytic) = 1.0554005500494308 " " y[1] (numeric) = 1.0554005500494366 " " absolute error = 5.773159728050814000000000000000E-15 " " relative error = 5.4701124874157230000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9811844503612096 " " Order of pole = 4.436743107446468 " " x[1] = -0.9733000000000029 " " y[1] (analytic) = 1.055617431744219 " " y[1] (numeric) = 1.055617431744225 " " absolute error = 5.995204332975845000000000000000E-15 " " relative error = 5.6793343428119050000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9810836506436887 " " Order of pole = 4.436743107446503 " " x[1] = -0.973200000000003 " " y[1] (analytic) = 1.0558343802986985 " " y[1] (numeric) = 1.0558343802987045 " " absolute error = 5.995204332975845000000000000000E-15 " " relative error = 5.6781673762884910000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9809828509261673 " " Order of pole = 4.436743107446528 " " x[1] = -0.973100000000003 " " y[1] (analytic) = 1.0560513957403532 " " y[1] (numeric) = 1.0560513957403592 " " absolute error = 5.995204332975845000000000000000E-15 " " relative error = 5.6770005296691640000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9808820512086402 " " Order of pole = 4.436743107446379 " " x[1] = -0.973000000000003 " " y[1] (analytic) = 1.0562684780966822 " " y[1] (numeric) = 1.0562684780966882 " " absolute error = 5.995204332975845000000000000000E-15 " " relative error = 5.6758338029539230000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9807812514911133 " " Order of pole = 4.43674310744624 " " x[1] = -0.972900000000003 " " y[1] (analytic) = 1.0564856273951984 " " y[1] (numeric) = 1.0564856273952044 " " absolute error = 5.995204332975845000000000000000E-15 " " relative error = 5.6746671961427700000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9806804517736033 " " Order of pole = 4.43674310744661 " " x[1] = -0.972800000000003 " " y[1] (analytic) = 1.0567028436634283 " " y[1] (numeric) = 1.0567028436634345 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 5.8836303651333220000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9805796520560754 " " Order of pole = 4.436743107446440 " " x[1] = -0.972700000000003 " " y[1] (analytic) = 1.0569201269289137 " " y[1] (numeric) = 1.0569201269289197 " " absolute error = 5.995204332975845000000000000000E-15 " " relative error = 5.6723343422327230000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9804788523385558 " " Order of pole = 4.436743107446517 " " x[1] = -0.972600000000003 " " y[1] (analytic) = 1.0571374772192093 " " y[1] (numeric) = 1.0571374772192155 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 5.8812113579165650000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9803780526210357 " " Order of pole = 4.436743107446581 " " x[1] = -0.972500000000003 " " y[1] (analytic) = 1.0573548945618851 " " y[1] (numeric) = 1.0573548945618911 " " absolute error = 5.995204332975845000000000000000E-15 " " relative error = 5.6700019679390220000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9802772529035175 " " Order of pole = 4.4367431074466985 " " x[1] = -0.972400000000003 " " y[1] (analytic) = 1.0575723789845244 " " y[1] (numeric) = 1.0575723789845304 " " absolute error = 5.995204332975845000000000000000E-15 " " relative error = 5.6688359606483010000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9801764531859893 " " Order of pole = 4.436743107446517 " " x[1] = -0.972300000000003 " " y[1] (analytic) = 1.0577899305147247 " " y[1] (numeric) = 1.057789930514731 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 5.8775837796787680000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9800756534684713 " " Order of pole = 4.436743107446645 " " x[1] = -0.9722000000000031 " " y[1] (analytic) = 1.0580075491800986 " " y[1] (numeric) = 1.0580075491801049 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 5.8763748356227940000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9799748537509483 " " Order of pole = 4.43674310744662 " " x[1] = -0.9721000000000031 " " y[1] (analytic) = 1.0582252350082724 " " y[1] (numeric) = 1.0582252350082786 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 5.8751660159117970000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9798740540334209 " " Order of pole = 4.4367431074464605 " " x[1] = -0.9720000000000031 " " y[1] (analytic) = 1.0584429880268862 " " y[1] (numeric) = 1.0584429880268924 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 5.8739573205457800000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9797732543159001 " " Order of pole = 4.436743107446503 " " x[1] = -0.9719000000000031 " " y[1] (analytic) = 1.0586608082635947 " " y[1] (numeric) = 1.0586608082636009 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 5.872748749524740000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.979672454598379 " " Order of pole = 4.436743107446542 " " x[1] = -0.9718000000000031 " " y[1] (analytic) = 1.0588786957460667 " " y[1] (numeric) = 1.058878695746073 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 5.871540302848680000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9795716548808577 " " Order of pole = 4.436743107446567 " " x[1] = -0.9717000000000031 " " y[1] (analytic) = 1.0590966505019854 " " y[1] (numeric) = 1.0590966505019916 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 5.87033198051760000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9794708551633259 " " Order of pole = 4.436743107446272 " " x[1] = -0.9716000000000031 " " y[1] (analytic) = 1.0593146725590483 " " y[1] (numeric) = 1.0593146725590545 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 5.8691237825314980000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9793700554458055 " " Order of pole = 4.436743107446322 " " x[1] = -0.9715000000000031 " " y[1] (analytic) = 1.0595327619449668 " " y[1] (numeric) = 1.059532761944973 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 5.8679157088903740000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9792692557282917 " " Order of pole = 4.436743107446581 " " x[1] = -0.9714000000000031 " " y[1] (analytic) = 1.0597509186874672 " " y[1] (numeric) = 1.0597509186874732 " " absolute error = 5.995204332975845000000000000000E-15 " " relative error = 5.6571824824658630000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9791684560107783 " " Order of pole = 4.436743107446851 " " x[1] = -0.9713000000000032 " " y[1] (analytic) = 1.059969142814289 " " y[1] (numeric) = 1.0599691428142952 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 5.8654999346430640000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.979067656293245 " " Order of pole = 4.436743107446514 " " x[1] = -0.9712000000000032 " " y[1] (analytic) = 1.0601874343531872 " " y[1] (numeric) = 1.0601874343531934 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 5.8642922340368760000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9789668565757241 " " Order of pole = 4.436743107446553 " " x[1] = -0.9711000000000032 " " y[1] (analytic) = 1.0604057933319302 " " y[1] (numeric) = 1.0604057933319366 " " absolute error = 6.439293542825908000000000000000E-15 " " relative error = 6.0724805384105140000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9788660568582049 " " Order of pole = 4.436743107446649 " " x[1] = -0.9710000000000032 " " y[1] (analytic) = 1.0606242197783016 " " y[1] (numeric) = 1.0606242197783078 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 5.8618772058594380000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9787652571406709 " " Order of pole = 4.436743107446286 " " x[1] = -0.9709000000000032 " " y[1] (analytic) = 1.0608427137200978 " " y[1] (numeric) = 1.0608427137201042 " " absolute error = 6.439293542825908000000000000000E-15 " " relative error = 6.0699795167984800000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9786644574231705 " " Order of pole = 4.436743107446950 " " x[1] = -0.9708000000000032 " " y[1] (analytic) = 1.0610612751851312 " " y[1] (numeric) = 1.0610612751851376 " " absolute error = 6.439293542825908000000000000000E-15 " " relative error = 6.068729199171270000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9785636577056386 " " Order of pole = 4.436743107446656 " " x[1] = -0.9707000000000032 " " y[1] (analytic) = 1.0612799042012275 " " y[1] (numeric) = 1.061279904201234 " " absolute error = 6.439293542825908000000000000000E-15 " " relative error = 6.0674790103299310000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9784628579881165 " " Order of pole = 4.436743107446663 " " x[1] = -0.9706000000000032 " " y[1] (analytic) = 1.0614986007962273 " " y[1] (numeric) = 1.0614986007962337 " " absolute error = 6.439293542825908000000000000000E-15 " " relative error = 6.0662289502744630000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9783620582705942 " " Order of pole = 4.436743107446656 " " x[1] = -0.9705000000000032 " " y[1] (analytic) = 1.061717364997985 " " y[1] (numeric) = 1.0617173649979914 " " absolute error = 6.439293542825908000000000000000E-15 " " relative error = 6.0649790190048650000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9782612585530683 " " Order of pole = 4.436743107446542 " " x[1] = -0.9704000000000033 " " y[1] (analytic) = 1.0619361968343697 " " y[1] (numeric) = 1.0619361968343761 " " absolute error = 6.439293542825908000000000000000E-15 " " relative error = 6.0637292165211370000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9781604588355426 " " Order of pole = 4.436743107446432 " " x[1] = -0.9703000000000033 " " y[1] (analytic) = 1.0621550963332644 " " y[1] (numeric) = 1.062155096333271 " " absolute error = 6.661338147750939000000000000000E-15 " " relative error = 6.2715305615413260000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9780596591180231 " " Order of pole = 4.436743107446514 " " x[1] = -0.9702000000000033 " " y[1] (analytic) = 1.0623740635225676 " " y[1] (numeric) = 1.0623740635225742 " " absolute error = 6.661338147750939000000000000000E-15 " " relative error = 6.2702379288737550000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9779588594005062 " " Order of pole = 4.436743107446680 " " x[1] = -0.9701000000000033 " " y[1] (analytic) = 1.0625930984301912 " " y[1] (numeric) = 1.0625930984301977 " " absolute error = 6.439293542825908000000000000000E-15 " " relative error = 6.059980581785180000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9778580596829745 " " Order of pole = 4.4367431074463894 " " x[1] = -0.9700000000000033 " " y[1] (analytic) = 1.0628122010840613 " " y[1] (numeric) = 1.062812201084068 " " absolute error = 6.661338147750939000000000000000E-15 " " relative error = 6.2676530632189010000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9777572599654752 " " Order of pole = 4.436743107447090 " " x[1] = -0.9699000000000033 " " y[1] (analytic) = 1.063031371512119 " " y[1] (numeric) = 1.0630313715121258 " " absolute error = 6.8833827526759700000000000000000E-15 " " relative error = 6.4752395245726750000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9776564602479297 " " Order of pole = 4.436743107446379 " " x[1] = -0.9698000000000033 " " y[1] (analytic) = 1.0632506097423198 " " y[1] (numeric) = 1.0632506097423267 " " absolute error = 6.8833827526759700000000000000000E-15 " " relative error = 6.4739043548201370000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9775556605304074 " " Order of pole = 4.436743107446368 " " x[1] = -0.9697000000000033 " " y[1] (analytic) = 1.0634699158026335 " " y[1] (numeric) = 1.0634699158026402 " " absolute error = 6.661338147750939000000000000000E-15 " " relative error = 6.2637767639373440000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9774548608128887 " " Order of pole = 4.436743107446478 " " x[1] = -0.9696000000000033 " " y[1] (analytic) = 1.0636892897210442 " " y[1] (numeric) = 1.0636892897210506 " " absolute error = 6.439293542825908000000000000000E-15 " " relative error = 6.0537354329426710000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9773540610953693 " " Order of pole = 4.4367431074465635 " " x[1] = -0.9695000000000034 " " y[1] (analytic) = 1.06390873152555 " " y[1] (numeric) = 1.0639087315255567 " " absolute error = 6.661338147750939000000000000000E-15 " " relative error = 6.2611932305501210000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9772532613778477 " " Order of pole = 4.436743107446585 " " x[1] = -0.9694000000000034 " " y[1] (analytic) = 1.0641282412441646 " " y[1] (numeric) = 1.0641282412441713 " " absolute error = 6.661338147750939000000000000000E-15 " " relative error = 6.2599016636966520000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9771524616603291 " " Order of pole = 4.436743107446695 " " x[1] = -0.9693000000000034 " " y[1] (analytic) = 1.0643478189049151 " " y[1] (numeric) = 1.0643478189049218 " " absolute error = 6.661338147750939000000000000000E-15 " " relative error = 6.2586102300699490000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9770516619428046 " " Order of pole = 4.436743107446624 " " x[1] = -0.9692000000000034 " " y[1] (analytic) = 1.0645674645358438 " " y[1] (numeric) = 1.0645674645358505 " " absolute error = 6.661338147750939000000000000000E-15 " " relative error = 6.2573189296700060000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9769508622252807 " " Order of pole = 4.436743107446570 " " x[1] = -0.9691000000000034 " " y[1] (analytic) = 1.0647871781650067 " " y[1] (numeric) = 1.0647871781650136 " " absolute error = 6.8833827526759700000000000000000E-15 " " relative error = 6.4645620212467240000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9768500625077621 " " Order of pole = 4.436743107446680 " " x[1] = -0.9690000000000034 " " y[1] (analytic) = 1.0650069598204748 " " y[1] (numeric) = 1.0650069598204819 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 6.6717191771204420000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9767492627902358 " " Order of pole = 4.43674310744656 " " x[1] = -0.9689000000000034 " " y[1] (analytic) = 1.0652268095303339 " " y[1] (numeric) = 1.0652268095303408 " " absolute error = 6.8833827526759700000000000000000E-15 " " relative error = 6.4618940220917860000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9766484630727076 " " Order of pole = 4.436743107446375 " " x[1] = -0.9688000000000034 " " y[1] (analytic) = 1.0654467273226833 " " y[1] (numeric) = 1.0654467273226902 " " absolute error = 6.8833827526759700000000000000000E-15 " " relative error = 6.4605602290158020000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9765476633551946 " " Order of pole = 4.4367431074466595 " " x[1] = -0.9687000000000034 " " y[1] (analytic) = 1.0656667132256379 " " y[1] (numeric) = 1.0656667132256445 " " absolute error = 6.661338147750939000000000000000E-15 " " relative error = 6.2508644260717440000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.976446863637671 " " Order of pole = 4.43674310744661 " " x[1] = -0.9686000000000035 " " y[1] (analytic) = 1.0658867672673262 " " y[1] (numeric) = 1.065886767267333 " " absolute error = 6.661338147750939000000000000000E-15 " " relative error = 6.249573925032380000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9763460639201547 " " Order of pole = 4.436743107446791 " " x[1] = -0.9685000000000035 " " y[1] (analytic) = 1.0661068894758916 " " y[1] (numeric) = 1.0661068894758985 " " absolute error = 6.8833827526759700000000000000000E-15 " " relative error = 6.4565596757937730000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9762452642026294 " " Order of pole = 4.436743107446695 " " x[1] = -0.9684000000000035 " " y[1] (analytic) = 1.0663270798794922 " " y[1] (numeric) = 1.0663270798794993 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 6.6634595441428720000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9761444644851021 " " Order of pole = 4.436743107446542 " " x[1] = -0.9683000000000035 " " y[1] (analytic) = 1.0665473385063007 " " y[1] (numeric) = 1.0665473385063078 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 6.6620834360265260000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9760436647675905 " " Order of pole = 4.436743107446862 " " x[1] = -0.9682000000000035 " " y[1] (analytic) = 1.0667676653845037 " " y[1] (numeric) = 1.0667676653845108 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 6.6607074700187270000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9759428650500573 " " Order of pole = 4.4367431074465316 " " x[1] = -0.9681000000000035 " " y[1] (analytic) = 1.0669880605423032 " " y[1] (numeric) = 1.0669880605423103 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 6.6593316461194750000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.975842065332534 " " Order of pole = 4.436743107446496 " " x[1] = -0.9680000000000035 " " y[1] (analytic) = 1.0672085240079152 " " y[1] (numeric) = 1.0672085240079223 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 6.6579559643287690000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9757412656150092 " " Order of pole = 4.436743107446414 " " x[1] = -0.9679000000000035 " " y[1] (analytic) = 1.0674290558095703 " " y[1] (numeric) = 1.0674290558095776 " " absolute error = 7.327471962526033000000000000000E-15 " " relative error = 6.8645985629168190000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9756404658974908 " " Order of pole = 4.436743107446528 " " x[1] = -0.9678000000000035 " " y[1] (analytic) = 1.0676496559755142 " " y[1] (numeric) = 1.0676496559755213 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 6.6552050270730010000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9755396661799642 " " Order of pole = 4.436743107446404 " " x[1] = -0.9677000000000036 " " y[1] (analytic) = 1.0678703245340064 " " y[1] (numeric) = 1.0678703245340135 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 6.6538297716079380000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9754388664624472 " " Order of pole = 4.436743107446556 " " x[1] = -0.9676000000000036 " " y[1] (analytic) = 1.0680910615133214 " " y[1] (numeric) = 1.0680910615133288 " " absolute error = 7.327471962526033000000000000000E-15 " " relative error = 6.8603438663217800000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9753380667449264 " " Order of pole = 4.436743107446603 " " x[1] = -0.9675000000000036 " " y[1] (analytic) = 1.068311866941749 " " y[1] (numeric) = 1.0683118669417562 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 6.6510796870034530000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9752372670273957 " " Order of pole = 4.436743107446336 " " x[1] = -0.9674000000000036 " " y[1] (analytic) = 1.0685327408475924 " " y[1] (numeric) = 1.0685327408475995 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 6.649704857864029000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.975136467309872 " " Order of pole = 4.436743107446297 " " x[1] = -0.9673000000000036 " " y[1] (analytic) = 1.06875368325917 " " y[1] (numeric) = 1.0687536832591773 " " absolute error = 7.327471962526033000000000000000E-15 " " relative error = 6.8560904886716920000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9750356675923545 " " Order of pole = 4.436743107446436 " " x[1] = -0.9672000000000036 " " y[1] (analytic) = 1.0689746942048153 " " y[1] (numeric) = 1.0689746942048224 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 6.6469556259108260000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9749348678748366 " " Order of pole = 4.436743107446574 " " x[1] = -0.9671000000000036 " " y[1] (analytic) = 1.069195773712875 " " y[1] (numeric) = 1.0691957737128825 " " absolute error = 7.549516567451064000000000000000E-15 " " relative error = 7.0609300495406140000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9748340681573064 " " Order of pole = 4.4367431074463255 " " x[1] = -0.9670000000000036 " " y[1] (analytic) = 1.0694169218117124 " " y[1] (numeric) = 1.06941692181172 " " absolute error = 7.549516567451064000000000000000E-15 " " relative error = 7.0594698975413020000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9747332684397874 " " Order of pole = 4.436743107446425 " " x[1] = -0.9669000000000036 " " y[1] (analytic) = 1.0696381385297042 " " y[1] (numeric) = 1.0696381385297118 " " absolute error = 7.549516567451064000000000000000E-15 " " relative error = 7.0580098965323220000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9746324687222687 " " Order of pole = 4.4367431074465316 " " x[1] = -0.9668000000000037 " " y[1] (analytic) = 1.0698594238952421 " " y[1] (numeric) = 1.0698594238952497 " " absolute error = 7.549516567451064000000000000000E-15 " " relative error = 7.0565500465136750000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9745316690047464 " " Order of pole = 4.436743107446535 " " x[1] = -0.9667000000000037 " " y[1] (analytic) = 1.0700807779367327 " " y[1] (numeric) = 1.07008077793674 " " absolute error = 7.327471962526033000000000000000E-15 " " relative error = 6.8475876902063760000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9744308692872315 " " Order of pole = 4.436743107446752 " " x[1] = -0.9666000000000037 " " y[1] (analytic) = 1.0703022006825964 " " y[1] (numeric) = 1.070302200682604 " " absolute error = 7.549516567451064000000000000000E-15 " " relative error = 7.0536307994473720000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9743300695697047 " " Order of pole = 4.436743107446613 " " x[1] = -0.9665000000000037 " " y[1] (analytic) = 1.0705236921612693 " " y[1] (numeric) = 1.070523692161277 " " absolute error = 7.771561172376096000000000000000E-15 " " relative error = 7.2595882083526530000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9742292698521781 " " Order of pole = 4.436743107446478 " " x[1] = -0.9664000000000037 " " y[1] (analytic) = 1.0707452524012024 " " y[1] (numeric) = 1.07074525240121 " " absolute error = 7.549516567451064000000000000000E-15 " " relative error = 7.0507121563423960000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9741284701346585 " " Order of pole = 4.436743107446556 " " x[1] = -0.9663000000000037 " " y[1] (analytic) = 1.07096688143086 " " y[1] (numeric) = 1.0709668814308677 " " absolute error = 7.771561172376096000000000000000E-15 " " relative error = 7.256584033665859000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9740276704171307 " " Order of pole = 4.436743107446382 " " x[1] = -0.9662000000000037 " " y[1] (analytic) = 1.0711885792787228 " " y[1] (numeric) = 1.0711885792787303 " " absolute error = 7.549516567451064000000000000000E-15 " " relative error = 7.0477941171987460000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9739268706996229 " " Order of pole = 4.436743107446823 " " x[1] = -0.9661000000000037 " " y[1] (analytic) = 1.071410345973285 " " y[1] (numeric) = 1.0714103459732927 " " absolute error = 7.549516567451064000000000000000E-15 " " relative error = 7.0463353241124160000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9738260709820842 " " Order of pole = 4.436743107446318 " " x[1] = -0.9660000000000037 " " y[1] (analytic) = 1.0716321815430563 " " y[1] (numeric) = 1.071632181543064 " " absolute error = 7.771561172376096000000000000000E-15 " " relative error = 7.2520789373698450000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9737252712645812 " " Order of pole = 4.436743107446912 " " x[1] = -0.9659000000000038 " " y[1] (analytic) = 1.0718540860165608 " " y[1] (numeric) = 1.0718540860165686 " " absolute error = 7.771561172376096000000000000000E-15 " " relative error = 7.2505775494669520000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9736244715470437 " " Order of pole = 4.436743107446432 " " x[1] = -0.9658000000000038 " " y[1] (analytic) = 1.0720760594223373 " " y[1] (numeric) = 1.0720760594223453 " " absolute error = 7.993605777301127000000000000000E-15 " " relative error = 7.4561927831951500000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9735236718295188 " " Order of pole = 4.4367431074463575 " " x[1] = -0.9657000000000038 " " y[1] (analytic) = 1.07229810178894 " " y[1] (numeric) = 1.0722981017889477 " " absolute error = 7.771561172376096000000000000000E-15 " " relative error = 7.247575239954840000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9734228721119953 " " Order of pole = 4.436743107446315 " " x[1] = -0.9656000000000038 " " y[1] (analytic) = 1.0725202131449367 " " y[1] (numeric) = 1.0725202131449445 " " absolute error = 7.771561172376096000000000000000E-15 " " relative error = 7.2460743183456200000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9733220723944807 " " Order of pole = 4.436743107446542 " " x[1] = -0.9655000000000038 " " y[1] (analytic) = 1.072742393518911 " " y[1] (numeric) = 1.072742393518919 " " absolute error = 7.993605777301127000000000000000E-15 " " relative error = 7.4515613679438410000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.973221272676952 " " Order of pole = 4.436743107446347 " " x[1] = -0.9654000000000038 " " y[1] (analytic) = 1.0729646429394615 " " y[1] (numeric) = 1.0729646429394695 " " absolute error = 7.993605777301127000000000000000E-15 " " relative error = 7.4500178826043020000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9731204729594349 " " Order of pole = 4.436743107446507 " " x[1] = -0.9653000000000038 " " y[1] (analytic) = 1.0731869614352005 " " y[1] (numeric) = 1.0731869614352085 " " absolute error = 7.993605777301127000000000000000E-15 " " relative error = 7.4484745571368780000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9730196732419077 " " Order of pole = 4.436743107446354 " " x[1] = -0.9652000000000038 " " y[1] (analytic) = 1.073409349034756 " " y[1] (numeric) = 1.073409349034764 " " absolute error = 7.993605777301127000000000000000E-15 " " relative error = 7.4469313915415700000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9729188735243932 " " Order of pole = 4.436743107446588 " " x[1] = -0.9651000000000038 " " y[1] (analytic) = 1.0736318057667706 " " y[1] (numeric) = 1.0736318057667786 " " absolute error = 7.993605777301127000000000000000E-15 " " relative error = 7.4453883858183790000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9728180738068669 " " Order of pole = 4.436743107446464 " " x[1] = -0.9650000000000039 " " y[1] (analytic) = 1.0738543316599019 " " y[1] (numeric) = 1.0738543316599098 " " absolute error = 7.993605777301127000000000000000E-15 " " relative error = 7.4438455399673010000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9727172740893484 " " Order of pole = 4.436743107446574 " " x[1] = -0.9649000000000039 " " y[1] (analytic) = 1.0740769267428216 " " y[1] (numeric) = 1.0740769267428298 " " absolute error = 8.215650382226158000000000000000E-15 " " relative error = 7.649033488821350000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9726164743718191 " " Order of pole = 4.436743107446354 " " x[1] = -0.9648000000000039 " " y[1] (analytic) = 1.0742995910442175 " " y[1] (numeric) = 1.0742995910442257 " " absolute error = 8.215650382226158000000000000000E-15 " " relative error = 7.6474481147670930000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9725156746542996 " " Order of pole = 4.436743107446440 " " x[1] = -0.9647000000000039 " " y[1] (analytic) = 1.074522324592791 " " y[1] (numeric) = 1.0745223245927995 " " absolute error = 8.43769498715119000000000000000E-15 " " relative error = 7.8525078484049190000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9724148749367848 " " Order of pole = 4.43674310744667 " " x[1] = -0.9646000000000039 " " y[1] (analytic) = 1.0747451274172597 " " y[1] (numeric) = 1.0747451274172681 " " absolute error = 8.43769498715119000000000000000E-15 " " relative error = 7.8508799639110470000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.97231407521926 " " Order of pole = 4.436743107446588 " " x[1] = -0.9645000000000039 " " y[1] (analytic) = 1.0749679995463548 " " y[1] (numeric) = 1.0749679995463632 " " absolute error = 8.43769498715119000000000000000E-15 " " relative error = 7.8492522481710760000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9722132755017417 " " Order of pole = 4.436743107446706 " " x[1] = -0.9644000000000039 " " y[1] (analytic) = 1.0751909410088232 " " y[1] (numeric) = 1.0751909410088316 " " absolute error = 8.43769498715119000000000000000E-15 " " relative error = 7.8476247011850040000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9721124757842206 " " Order of pole = 4.436743107446745 " " x[1] = -0.9643000000000039 " " y[1] (analytic) = 1.0754139518334263 " " y[1] (numeric) = 1.075413951833435 " " absolute error = 8.659739592076221000000000000000E-15 " " relative error = 8.052470936714750000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9720116760666939 " " Order of pole = 4.436743107446606 " " x[1] = -0.9642000000000039 " " y[1] (analytic) = 1.0756370320489408 " " y[1] (numeric) = 1.0756370320489494 " " absolute error = 8.659739592076221000000000000000E-15 " " relative error = 8.0508009059344180000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9719108763491742 " " Order of pole = 4.436743107446680 " " x[1] = -0.964100000000004 " " y[1] (analytic) = 1.075860181684158 " " y[1] (numeric) = 1.0758601816841666 " " absolute error = 8.659739592076221000000000000000E-15 " " relative error = 8.0491310483488780000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.97181007663166 " " Order of pole = 4.436743107446926 " " x[1] = -0.964000000000004 " " y[1] (analytic) = 1.0760834007678841 " " y[1] (numeric) = 1.076083400767893 " " absolute error = 8.881784197001252000000000000000E-15 " " relative error = 8.2538065271365450000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9717092769141241 " " Order of pole = 4.436743107446507 " " x[1] = -0.963900000000004 " " y[1] (analytic) = 1.0763066893289408 " " y[1] (numeric) = 1.0763066893289497 " " absolute error = 8.881784197001252000000000000000E-15 " " relative error = 8.2520942079612050000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9716084771966075 " " Order of pole = 4.436743107446680 " " x[1] = -0.963800000000004 " " y[1] (analytic) = 1.076530047396164 " " y[1] (numeric) = 1.076530047396173 " " absolute error = 8.881784197001252000000000000000E-15 " " relative error = 8.2503820664215490000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.971507677479076 " " Order of pole = 4.4367431074463966 " " x[1] = -0.963700000000004 " " y[1] (analytic) = 1.0767534749984053 " " y[1] (numeric) = 1.076753474998414 " " absolute error = 8.659739592076221000000000000000E-15 " " relative error = 8.0424533499546370000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9714068777615636 " " Order of pole = 4.436743107446695 " " x[1] = -0.963600000000004 " " y[1] (analytic) = 1.0769769721645306 " " y[1] (numeric) = 1.076976972164539 " " absolute error = 8.43769498715119000000000000000E-15 " " relative error = 7.8346104004368220000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9713060780440335 " " Order of pole = 4.43674310744645 " " x[1] = -0.963500000000004 " " y[1] (analytic) = 1.0772005389234205 " " y[1] (numeric) = 1.0772005389234294 " " absolute error = 8.881784197001252000000000000000E-15 " " relative error = 8.2452467076166860000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9712052783265168 " " Order of pole = 4.436743107446613 " " x[1] = -0.963400000000004 " " y[1] (analytic) = 1.0774241753039722 " " y[1] (numeric) = 1.077424175303981 " " absolute error = 8.881784197001252000000000000000E-15 " " relative error = 8.2435352766197640000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9711044786089862 " " Order of pole = 4.436743107446361 " " x[1] = -0.963300000000004 " " y[1] (analytic) = 1.0776478813350963 " " y[1] (numeric) = 1.0776478813351051 " " absolute error = 8.881784197001252000000000000000E-15 " " relative error = 8.2418240232585280000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9710036788914701 " " Order of pole = 4.436743107446550 " " x[1] = -0.963200000000004 " " y[1] (analytic) = 1.0778716570457187 " " y[1] (numeric) = 1.0778716570457278 " " absolute error = 9.103828801926284000000000000000E-15 " " relative error = 8.4461157712213020000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9709028791739425 " " Order of pole = 4.436743107446382 " " x[1] = -0.9631000000000041 " " y[1] (analytic) = 1.0780955024647814 " " y[1] (numeric) = 1.0780955024647902 " " absolute error = 8.881784197001252000000000000000E-15 " " relative error = 8.2384020494431090000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9708020794564289 " " Order of pole = 4.436743107446645 " " x[1] = -0.9630000000000041 " " y[1] (analytic) = 1.0783194176212396 " " y[1] (numeric) = 1.0783194176212487 " " absolute error = 9.103828801926284000000000000000E-15 " " relative error = 8.4426086122136480000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9707012797389049 " " Order of pole = 4.436743107446588 " " x[1] = -0.9629000000000041 " " y[1] (analytic) = 1.0785434025440657 " " y[1] (numeric) = 1.0785434025440745 " " absolute error = 8.881784197001252000000000000000E-15 " " relative error = 8.2349807861704230000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9706004800213767 " " Order of pole = 4.436743107446404 " " x[1] = -0.9628000000000041 " " y[1] (analytic) = 1.0787674572622448 " " y[1] (numeric) = 1.0787674572622539 " " absolute error = 9.103828801926284000000000000000E-15 " " relative error = 8.4391021815122970000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9704996803038579 " " Order of pole = 4.43674310744651 " " x[1] = -0.9627000000000041 " " y[1] (analytic) = 1.0789915818047788 " " y[1] (numeric) = 1.078991581804788 " " absolute error = 9.103828801926284000000000000000E-15 " " relative error = 8.4373492392764870000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9703988805863399 " " Order of pole = 4.436743107446645 " " x[1] = -0.9626000000000041 " " y[1] (analytic) = 1.0792157762006842 " " y[1] (numeric) = 1.0792157762006933 " " absolute error = 9.103828801926284000000000000000E-15 " " relative error = 8.4355964791172520000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9702980808688213 " " Order of pole = 4.436743107446752 " " x[1] = -0.9625000000000041 " " y[1] (analytic) = 1.0794400404789921 " " y[1] (numeric) = 1.0794400404790014 " " absolute error = 9.325873406851315000000000000000E-15 " " relative error = 8.6395474108159260000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9701972811512907 " " Order of pole = 4.4367431074464925 " " x[1] = -0.9624000000000041 " " y[1] (analytic) = 1.0796643746687498 " " y[1] (numeric) = 1.0796643746687589 " " absolute error = 9.103828801926284000000000000000E-15 " " relative error = 8.432091505028511000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9700964814337765 " " Order of pole = 4.436743107446741 " " x[1] = -0.9623000000000042 " " y[1] (analytic) = 1.079888778799018 " " y[1] (numeric) = 1.0798887787990272 " " absolute error = 9.325873406851315000000000000000E-15 " " relative error = 8.6359573225892260000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9699956817162443 " " Order of pole = 4.4367431074464285 " " x[1] = -0.9622000000000042 " " y[1] (analytic) = 1.0801132528988744 " " y[1] (numeric) = 1.0801132528988835 " " absolute error = 9.103828801926284000000000000000E-15 " " relative error = 8.4285872592460730000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9698948819987236 " " Order of pole = 4.436743107446478 " " x[1] = -0.9621000000000042 " " y[1] (analytic) = 1.08033779699741 " " y[1] (numeric) = 1.0803377969974193 " " absolute error = 9.325873406851315000000000000000E-15 " " relative error = 8.6323679804323960000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9697940822812021 " " Order of pole = 4.4367431074465 " " x[1] = -0.9620000000000042 " " y[1] (analytic) = 1.0805624111237322 " " y[1] (numeric) = 1.0805624111237417 " " absolute error = 9.547918011776346000000000000000E-15 " " relative error = 8.8360634364904270000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9696932825636821 " " Order of pole = 4.436743107446567 " " x[1] = -0.9619000000000042 " " y[1] (analytic) = 1.0807870953069632 " " y[1] (numeric) = 1.080787095306973 " " absolute error = 9.769962616701378000000000000000E-15 " " relative error = 9.0396736407428420000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9695924828461605 " " Order of pole = 4.436743107446588 " " x[1] = -0.9618000000000042 " " y[1] (analytic) = 1.0810118495762404 " " y[1] (numeric) = 1.08101184957625 " " absolute error = 9.547918011776346000000000000000E-15 " " relative error = 8.8323897795562160000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9694916831286411 " " Order of pole = 4.43674310744667 " " x[1] = -0.9617000000000042 " " y[1] (analytic) = 1.0812366739607158 " " y[1] (numeric) = 1.0812366739607255 " " absolute error = 9.769962616701378000000000000000E-15 " " relative error = 9.0359149407249450000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.96939088341111 " " Order of pole = 4.436743107446393 " " x[1] = -0.9616000000000042 " " y[1] (analytic) = 1.0814615684895574 " " y[1] (numeric) = 1.081461568489567 " " absolute error = 9.547918011776346000000000000000E-15 " " relative error = 8.8287168864554440000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9692900836935885 " " Order of pole = 4.436743107446418 " " x[1] = -0.9615000000000042 " " y[1] (analytic) = 1.0816865331919472 " " y[1] (numeric) = 1.0816865331919572 " " absolute error = 9.992007221626409000000000000000E-15 " " relative error = 9.2374333182655130000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9691892839760723 " " Order of pole = 4.436743107446606 " " x[1] = -0.9614000000000043 " " y[1] (analytic) = 1.081911568097084 " " y[1] (numeric) = 1.0819115680970939 " " absolute error = 9.769962616701378000000000000000E-15 " " relative error = 9.0302783561924920000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9690884842585514 " " Order of pole = 4.436743107446649 " " x[1] = -0.9613000000000043 " " y[1] (analytic) = 1.0821366732341806 " " y[1] (numeric) = 1.0821366732341904 " " absolute error = 9.769962616701378000000000000000E-15 " " relative error = 9.0283998854801780000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9689876845410312 " " Order of pole = 4.436743107446710 " " x[1] = -0.9612000000000043 " " y[1] (analytic) = 1.082361848632465 " " y[1] (numeric) = 1.0823618486324749 " " absolute error = 9.769962616701378000000000000000E-15 " " relative error = 9.0265216101671190000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9688868848235032 " " Order of pole = 4.4367431074465244 " " x[1] = -0.9611000000000043 " " y[1] (analytic) = 1.0825870943211813 " " y[1] (numeric) = 1.082587094321191 " " absolute error = 9.769962616701378000000000000000E-15 " " relative error = 9.024643530253310000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9687860851059777 " " Order of pole = 4.4367431074464285 " " x[1] = -0.9610000000000043 " " y[1] (analytic) = 1.0828124103295877 " " y[1] (numeric) = 1.0828124103295975 " " absolute error = 9.769962616701378000000000000000E-15 " " relative error = 9.0227656457387520000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.968685285388452 " " Order of pole = 4.436743107446318 " " x[1] = -0.9609000000000043 " " y[1] (analytic) = 1.0830377966869582 " " y[1] (numeric) = 1.0830377966869682 " " absolute error = 9.992007221626409000000000000000E-15 " " relative error = 9.22590813745579900000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9685844856709378 " " Order of pole = 4.4367431074465635 " " x[1] = -0.9608000000000043 " " y[1] (analytic) = 1.0832632534225821 " " y[1] (numeric) = 1.0832632534225923 " " absolute error = 1.02140518265514400000000000000E-14 " " relative error = 9.4289654839486450000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9684836859534174 " " Order of pole = 4.43674310744662 " " x[1] = -0.9607000000000043 " " y[1] (analytic) = 1.083488780565764 " " y[1] (numeric) = 1.0834887805657742 " " absolute error = 1.02140518265514400000000000000E-14 " " relative error = 9.4270028538901730000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9683828862358999 " " Order of pole = 4.4367431074467625 " " x[1] = -0.9606000000000043 " " y[1] (analytic) = 1.0837143781458234 " " y[1] (numeric) = 1.0837143781458336 " " absolute error = 1.02140518265514400000000000000E-14 " " relative error = 9.4250404281127380000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9682820865183648 " " Order of pole = 4.436743107446368 " " x[1] = -0.9605000000000044 " " y[1] (analytic) = 1.0839400461920954 " " y[1] (numeric) = 1.0839400461921054 " " absolute error = 9.992007221626409000000000000000E-15 " " relative error = 9.2182286803855480000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.968181286800843 " " Order of pole = 4.436743107446386 " " x[1] = -0.9604000000000044 " " y[1] (analytic) = 1.0841657847339297 " " y[1] (numeric) = 1.0841657847339399 " " absolute error = 1.02140518265514400000000000000E-14 " " relative error = 9.4211161894009770000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9680804870833195 " " Order of pole = 4.43674310744634 " " x[1] = -0.9603000000000044 " " y[1] (analytic) = 1.0843915938006925 " " y[1] (numeric) = 1.0843915938007027 " " absolute error = 1.02140518265514400000000000000E-14 " " relative error = 9.4191543764666510000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9679796873657941 " " Order of pole = 4.43674310744624 " " x[1] = -0.9602000000000044 " " y[1] (analytic) = 1.0846174734217644 " " y[1] (numeric) = 1.0846174734217744 " " absolute error = 9.992007221626409000000000000000E-15 " " relative error = 9.2124711859043740000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9678788876482814 " " Order of pole = 4.4367431074465316 " " x[1] = -0.9601000000000044 " " y[1] (analytic) = 1.084843423626541 " " y[1] (numeric) = 1.0848434236265512 " " absolute error = 1.02140518265514400000000000000E-14 " " relative error = 9.415231363441110000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9677780879307463 " " Order of pole = 4.436743107446137 " " x[1] = -0.9600000000000044 " " y[1] (analytic) = 1.0850694444444344 " " y[1] (numeric) = 1.0850694444444446 " " absolute error = 1.02140518265514400000000000000E-14 " " relative error = 9.4132701633498940000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9676772882132453 " " Order of pole = 4.436743107446791 " " x[1] = -0.9599000000000044 " " y[1] (analytic) = 1.085295535904871 " " y[1] (numeric) = 1.0852955359048813 " " absolute error = 1.02140518265514400000000000000E-14 " " relative error = 9.4113091675397130000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9675764884957162 " " Order of pole = 4.436743107446578 " " x[1] = -0.9598000000000044 " " y[1] (analytic) = 1.085521698037293 " " y[1] (numeric) = 1.0855216980373033 " " absolute error = 1.02140518265514400000000000000E-14 " " relative error = 9.409348376010571000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9674756887781846 " " Order of pole = 4.436743107446286 " " x[1] = -0.9597000000000044 " " y[1] (analytic) = 1.0857479308711575 " " y[1] (numeric) = 1.085747930871168 " " absolute error = 1.043609643147647100000000000000E-14 " " relative error = 9.6118962189529530000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9673748890606668 " " Order of pole = 4.436743107446425 " " x[1] = -0.9596000000000044 " " y[1] (analytic) = 1.0859742344359375 " " y[1] (numeric) = 1.085974234435948 " " absolute error = 1.043609643147647100000000000000E-14 " " relative error = 9.609893218964859000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.967274089343137 " " Order of pole = 4.4367431074461905 " " x[1] = -0.9595000000000045 " " y[1] (analytic) = 1.0862006087611211 " " y[1] (numeric) = 1.0862006087611316 " " absolute error = 1.043609643147647100000000000000E-14 " " relative error = 9.6078904276986950000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.967173289625625 " " Order of pole = 4.436743107446503 " " x[1] = -0.9594000000000045 " " y[1] (analytic) = 1.0864270538762117 " " y[1] (numeric) = 1.0864270538762222 " " absolute error = 1.043609643147647100000000000000E-14 " " relative error = 9.6058878451544580000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9670724899081026 " " Order of pole = 4.436743107446496 " " x[1] = -0.9593000000000045 " " y[1] (analytic) = 1.0866535698107282 " " y[1] (numeric) = 1.0866535698107387 " " absolute error = 1.043609643147647100000000000000E-14 " " relative error = 9.6038854713321520000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9669716901905684 " " Order of pole = 4.436743107446123 " " x[1] = -0.9592000000000045 " " y[1] (analytic) = 1.0868801565942048 " " y[1] (numeric) = 1.0868801565942152 " " absolute error = 1.043609643147647100000000000000E-14 " " relative error = 9.6018833062317740000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9668708904730603 " " Order of pole = 4.4367431074465635 " " x[1] = -0.9591000000000045 " " y[1] (analytic) = 1.0871068142561913 " " y[1] (numeric) = 1.0871068142562017 " " absolute error = 1.043609643147647100000000000000E-14 " " relative error = 9.5998813498533230000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9667700907555382 " " Order of pole = 4.436743107446567 " " x[1] = -0.9590000000000045 " " y[1] (analytic) = 1.0873335428262525 " " y[1] (numeric) = 1.087333542826263 " " absolute error = 1.043609643147647100000000000000E-14 " " relative error = 9.5978796021968030000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.966669291038017 " " Order of pole = 4.436743107446599 " " x[1] = -0.9589000000000045 " " y[1] (analytic) = 1.087560342333969 " " y[1] (numeric) = 1.0875603423339795 " " absolute error = 1.043609643147647100000000000000E-14 " " relative error = 9.5958780632622090000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9665684913204943 " " Order of pole = 4.436743107446581 " " x[1] = -0.9588000000000045 " " y[1] (analytic) = 1.0877872128089365 " " y[1] (numeric) = 1.0877872128089472 " " absolute error = 1.065814103640150300000000000000E-14 " " relative error = 9.798001769922940000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9664676916029784 " " Order of pole = 4.436743107446777 " " x[1] = -0.9587000000000045 " " y[1] (analytic) = 1.0880141542807669 " " y[1] (numeric) = 1.0880141542807773 " " absolute error = 1.043609643147647100000000000000E-14 " " relative error = 9.5918756115588090000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9663668918854401 " " Order of pole = 4.436743107446276 " " x[1] = -0.9586000000000046 " " y[1] (analytic) = 1.088241166779086 " " y[1] (numeric) = 1.0882411667790968 " " absolute error = 1.065814103640150300000000000000E-14 " " relative error = 9.7939145859983020000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9662660921679256 " " Order of pole = 4.43674310744651 " " x[1] = -0.9585000000000046 " " y[1] (analytic) = 1.088468250333537 " " y[1] (numeric) = 1.0884682503335477 " " absolute error = 1.065814103640150300000000000000E-14 " " relative error = 9.7918713137802150000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9661652924503987 " " Order of pole = 4.436743107446375 " " x[1] = -0.9584000000000046 " " y[1] (analytic) = 1.0886954049737771 " " y[1] (numeric) = 1.0886954049737878 " " absolute error = 1.065814103640150300000000000000E-14 " " relative error = 9.7898282547249470000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9660644927328912 " " Order of pole = 4.43674310744683 " " x[1] = -0.9583000000000046 " " y[1] (analytic) = 1.0889226307294797 " " y[1] (numeric) = 1.0889226307294904 " " absolute error = 1.065814103640150300000000000000E-14 " " relative error = 9.78778540883250000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9659636930153603 " " Order of pole = 4.436743107446556 " " x[1] = -0.9582000000000046 " " y[1] (analytic) = 1.0891499276303334 " " y[1] (numeric) = 1.089149927630344 " " absolute error = 1.065814103640150300000000000000E-14 " " relative error = 9.7857427761028740000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.965862893297839 " " Order of pole = 4.436743107446588 " " x[1] = -0.9581000000000046 " " y[1] (analytic) = 1.0893772957060421 " " y[1] (numeric) = 1.0893772957060528 " " absolute error = 1.065814103640150300000000000000E-14 " " relative error = 9.7837003565360690000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9657620935803184 " " Order of pole = 4.436743107446635 " " x[1] = -0.9580000000000046 " " y[1] (analytic) = 1.0896047349863258 " " y[1] (numeric) = 1.0896047349863365 " " absolute error = 1.065814103640150300000000000000E-14 " " relative error = 9.7816581501320840000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9656612938627925 " " Order of pole = 4.436743107446521 " " x[1] = -0.9579000000000046 " " y[1] (analytic) = 1.0898322455009195 " " y[1] (numeric) = 1.0898322455009302 " " absolute error = 1.065814103640150300000000000000E-14 " " relative error = 9.7796161568909180000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9655604941452741 " " Order of pole = 4.436743107446638 " " x[1] = -0.9578000000000046 " " y[1] (analytic) = 1.0900598272795738 " " y[1] (numeric) = 1.0900598272795845 " " absolute error = 1.065814103640150300000000000000E-14 " " relative error = 9.7775743768125760000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9654596944277385 " " Order of pole = 4.4367431074462225 " " x[1] = -0.9577000000000047 " " y[1] (analytic) = 1.090287480352055 " " y[1] (numeric) = 1.0902874803520657 " " absolute error = 1.065814103640150300000000000000E-14 " " relative error = 9.7755328098970540000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9653588947102241 " " Order of pole = 4.436743107446464 " " x[1] = -0.9576000000000047 " " y[1] (analytic) = 1.090515204748145 " " y[1] (numeric) = 1.0905152047481557 " " absolute error = 1.065814103640150300000000000000E-14 " " relative error = 9.7734914561443520000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9652580949927037 " " Order of pole = 4.436743107446517 " " x[1] = -0.9575000000000047 " " y[1] (analytic) = 1.0907430004976408 " " y[1] (numeric) = 1.0907430004976517 " " absolute error = 1.088018564132653400000000000000E-14 " " relative error = 9.9750221971285210000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9651572952751847 " " Order of pole = 4.436743107446617 " " x[1] = -0.9574000000000047 " " y[1] (analytic) = 1.0909708676303556 " " y[1] (numeric) = 1.0909708676303664 " " absolute error = 1.088018564132653400000000000000E-14 " " relative error = 9.9729387503800660000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9650564955576616 " " Order of pole = 4.436743107446592 " " x[1] = -0.9573000000000047 " " y[1] (analytic) = 1.0911988061761178 " " y[1] (numeric) = 1.0911988061761286 " " absolute error = 1.088018564132653400000000000000E-14 " " relative error = 9.970855521235320000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9649556958401355 " " Order of pole = 4.436743107446468 " " x[1] = -0.9572000000000047 " " y[1] (analytic) = 1.0914268161647713 " " y[1] (numeric) = 1.0914268161647822 " " absolute error = 1.088018564132653400000000000000E-14 " " relative error = 9.9687725096942870000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9648548961226101 " " Order of pole = 4.436743107446368 " " x[1] = -0.9571000000000047 " " y[1] (analytic) = 1.0916548976261757 " " y[1] (numeric) = 1.0916548976261868 " " absolute error = 1.110223024625156500000000000000E-14 " " relative error = 1.0170091546690786000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9647540964050921 " " Order of pole = 4.436743107446503 " " x[1] = -0.9570000000000047 " " y[1] (analytic) = 1.0918830505902066 " " y[1] (numeric) = 1.0918830505902175 " " absolute error = 1.088018564132653400000000000000E-14 " " relative error = 9.9646071394233640000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9646532966875666 " " Order of pole = 4.436743107446393 " " x[1] = -0.9569000000000047 " " y[1] (analytic) = 1.0921112750867543 " " y[1] (numeric) = 1.0921112750867654 " " absolute error = 1.110223024625156500000000000000E-14 " " relative error = 1.0165841612952521000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9645524969700537 " " Order of pole = 4.436743107446695 " " x[1] = -0.9568000000000048 " " y[1] (analytic) = 1.0923395711457258 " " y[1] (numeric) = 1.0923395711457369 " " absolute error = 1.110223024625156500000000000000E-14 " " relative error = 1.0163716979150295000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9644516972525281 " " Order of pole = 4.436743107446585 " " x[1] = -0.9567000000000048 " " y[1] (analytic) = 1.0925679387970428 " " y[1] (numeric) = 1.092567938797054 " " absolute error = 1.110223024625156500000000000000E-14 " " relative error = 1.0161592567392674000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9643508975350032 " " Order of pole = 4.4367431074465 " " x[1] = -0.9566000000000048 " " y[1] (analytic) = 1.0927963780706431 " " y[1] (numeric) = 1.0927963780706542 " " absolute error = 1.110223024625156500000000000000E-14 " " relative error = 1.015946837767966000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9642500978174834 " " Order of pole = 4.436743107446570 " " x[1] = -0.9565000000000048 " " y[1] (analytic) = 1.0930248889964802 " " y[1] (numeric) = 1.0930248889964913 " " absolute error = 1.110223024625156500000000000000E-14 " " relative error = 1.015734441001125000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9641492980999675 " " Order of pole = 4.436743107446766 " " x[1] = -0.9564000000000048 " " y[1] (analytic) = 1.093253471604523 " " y[1] (numeric) = 1.0932534716045341 " " absolute error = 1.110223024625156500000000000000E-14 " " relative error = 1.0155220664387446000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9640484983824371 " " Order of pole = 4.436743107446514 " " x[1] = -0.9563000000000048 " " y[1] (analytic) = 1.0934821259247562 " " y[1] (numeric) = 1.0934821259247676 " " absolute error = 1.132427485117659700000000000000E-14 " " relative error = 1.0356159083624412000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9639476986649168 " " Order of pole = 4.436743107446574 " " x[1] = -0.9562000000000048 " " y[1] (analytic) = 1.0937108519871808 " " y[1] (numeric) = 1.0937108519871919 " " absolute error = 1.110223024625156500000000000000E-14 " " relative error = 1.0150973839273648000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9638468989473897 " " Order of pole = 4.436743107446421 " " x[1] = -0.9561000000000048 " " y[1] (analytic) = 1.093939649821812 " " y[1] (numeric) = 1.093939649821823 " " absolute error = 1.110223024625156500000000000000E-14 " " relative error = 1.014885075978365900000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9637460992298658 " " Order of pole = 4.436743107446365 " " x[1] = -0.9560000000000048 " " y[1] (analytic) = 1.0941685194586819 " " y[1] (numeric) = 1.094168519458693 " " absolute error = 1.110223024625156500000000000000E-14 " " relative error = 1.0146727902338275000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9636452995123497 " " Order of pole = 4.436743107446553 " " x[1] = -0.9559000000000049 " " y[1] (analytic) = 1.094397460927838 " " y[1] (numeric) = 1.0943974609278493 " " absolute error = 1.132427485117659700000000000000E-14 " " relative error = 1.0347497372276244000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9635444997948289 " " Order of pole = 4.436743107446606 " " x[1] = -0.9558000000000049 " " y[1] (analytic) = 1.0946264742593437 " " y[1] (numeric) = 1.094626474259355 " " absolute error = 1.132427485117659700000000000000E-14 " " relative error = 1.0345332510652944000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9634437000772974 " " Order of pole = 4.436743107446311 " " x[1] = -0.9557000000000049 " " y[1] (analytic) = 1.0948555594832778 " " y[1] (numeric) = 1.0948555594832892 " " absolute error = 1.132427485117659700000000000000E-14 " " relative error = 1.0343167875515141000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9633429003597803 " " Order of pole = 4.436743107446468 " " x[1] = -0.9556000000000049 " " y[1] (analytic) = 1.095084716629735 " " y[1] (numeric) = 1.0950847166297464 " " absolute error = 1.132427485117659700000000000000E-14 " " relative error = 1.0341003466862836000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9632421006422532 " " Order of pole = 4.436743107446318 " " x[1] = -0.9555000000000049 " " y[1] (analytic) = 1.0953139457288257 " " y[1] (numeric) = 1.095313945728837 " " absolute error = 1.132427485117659700000000000000E-14 " " relative error = 1.0338839284696029000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9631413009247306 " " Order of pole = 4.436743107446304 " " x[1] = -0.9554000000000049 " " y[1] (analytic) = 1.095543246810676 " " y[1] (numeric) = 1.0955432468106874 " " absolute error = 1.132427485117659700000000000000E-14 " " relative error = 1.0336675329014718000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9630405012072136 " " Order of pole = 4.436743107446464 " " x[1] = -0.9553000000000049 " " y[1] (analytic) = 1.0957726199054283 " " y[1] (numeric) = 1.0957726199054394 " " absolute error = 1.110223024625156500000000000000E-14 " " relative error = 1.0131874117469512000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9629397014897022 " " Order of pole = 4.436743107446798 " " x[1] = -0.9552000000000049 " " y[1] (analytic) = 1.0960020650432396 " " y[1] (numeric) = 1.096002065043251 " " absolute error = 1.132427485117659700000000000000E-14 " " relative error = 1.0332348097108586000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.962838901772179 " " Order of pole = 4.436743107446773 " " x[1] = -0.955100000000005 " " y[1] (analytic) = 1.0962315822542839 " " y[1] (numeric) = 1.0962315822542952 " " absolute error = 1.132427485117659700000000000000E-14 " " relative error = 1.0330184820883766000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9627381020546455 " " Order of pole = 4.436743107446418 " " x[1] = -0.955000000000005 " " y[1] (analytic) = 1.0964611715687504 " " y[1] (numeric) = 1.0964611715687618 " " absolute error = 1.132427485117659700000000000000E-14 " " relative error = 1.0328021771144444000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9626373023371261 " " Order of pole = 4.436743107446503 " " x[1] = -0.954900000000005 " " y[1] (analytic) = 1.0966908330168443 " " y[1] (numeric) = 1.0966908330168557 " " absolute error = 1.132427485117659700000000000000E-14 " " relative error = 1.0325858947890616000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9625365026195954 " " Order of pole = 4.43674310744624 " " x[1] = -0.954800000000005 " " y[1] (analytic) = 1.0969205666287867 " " y[1] (numeric) = 1.096920566628798 " " absolute error = 1.132427485117659700000000000000E-14 " " relative error = 1.0323696351122286000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9624357029020797 " " Order of pole = 4.436743107446443 " " x[1] = -0.954700000000005 " " y[1] (analytic) = 1.097150372434814 " " y[1] (numeric) = 1.0971503724348253 " " absolute error = 1.132427485117659700000000000000E-14 " " relative error = 1.0321533980839455000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9623349031845551 " " Order of pole = 4.436743107446368 " " x[1] = -0.954600000000005 " " y[1] (analytic) = 1.0973802504651788 " " y[1] (numeric) = 1.0973802504651904 " " absolute error = 1.154631945610162800000000000000E-14 " " relative error = 1.052171246129785000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9622341034670369 " " Order of pole = 4.4367431074465 " " x[1] = -0.954500000000005 " " y[1] (analytic) = 1.0976102007501503 " " y[1] (numeric) = 1.0976102007501616 " " absolute error = 1.132427485117659700000000000000E-14 " " relative error = 1.0317209919730282000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9621333037495193 " " Order of pole = 4.436743107446638 " " x[1] = -0.954400000000005 " " y[1] (analytic) = 1.097840223320012 " " y[1] (numeric) = 1.0978402233200233 " " absolute error = 1.132427485117659700000000000000E-14 " " relative error = 1.0315048228903942000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.962032504031991 " " Order of pole = 4.43674310744645 " " x[1] = -0.954300000000005 " " y[1] (analytic) = 1.0980703182050642 " " y[1] (numeric) = 1.0980703182050757 " " absolute error = 1.154631945610162800000000000000E-14 " " relative error = 1.0515100230534924000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9619317043144638 " " Order of pole = 4.43674310744629 " " x[1] = -0.954200000000005 " " y[1] (analytic) = 1.0983004854356233 " " y[1] (numeric) = 1.0983004854356349 " " absolute error = 1.154631945610162800000000000000E-14 " " relative error = 1.0512896615466728000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9618309045969479 " " Order of pole = 4.436743107446485 " " x[1] = -0.954100000000005 " " y[1] (analytic) = 1.0985307250420213 " " y[1] (numeric) = 1.0985307250420326 " " absolute error = 1.132427485117659700000000000000E-14 " " relative error = 1.03085645153379010000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9617301048794324 " " Order of pole = 4.4367431074466985 " " x[1] = -0.9540000000000051 " " y[1] (analytic) = 1.0987610370546057 " " y[1] (numeric) = 1.098761037054617 " " absolute error = 1.132427485117659700000000000000E-14 " " relative error = 1.0306403730453548000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9616293051619054 " " Order of pole = 4.436743107446550 " " x[1] = -0.9539000000000051 " " y[1] (analytic) = 1.0989914215037402 " " y[1] (numeric) = 1.0989914215037517 " " absolute error = 1.154631945610162800000000000000E-14 " " relative error = 1.0506287155820473000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9615285054443855 " " Order of pole = 4.43674310744662 " " x[1] = -0.9538000000000051 " " y[1] (analytic) = 1.099221878419805 " " y[1] (numeric) = 1.0992218784198164 " " absolute error = 1.154631945610162800000000000000E-14 " " relative error = 1.0504084464457832000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9614277057268581 " " Order of pole = 4.436743107446457 " " x[1] = -0.9537000000000051 " " y[1] (analytic) = 1.099452407833195 " " y[1] (numeric) = 1.0994524078332069 " " absolute error = 1.17683640610266600000000000000E-14 " " relative error = 1.0703841273329690000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9613269060093356 " " Order of pole = 4.43674310744645 " " x[1] = -0.9536000000000051 " " y[1] (analytic) = 1.0996830097743227 " " y[1] (numeric) = 1.0996830097743344 " " absolute error = 1.17683640610266600000000000000E-14 " " relative error = 1.0701596693252328000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9612261062918129 " " Order of pole = 4.4367431074464285 " " x[1] = -0.9535000000000051 " " y[1] (analytic) = 1.0999136842736148 " " y[1] (numeric) = 1.0999136842736266 " " absolute error = 1.17683640610266600000000000000E-14 " " relative error = 1.069935234854224900000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.961125306574296 " " Order of pole = 4.4367431074465955 " " x[1] = -0.9534000000000051 " " y[1] (analytic) = 1.100144431361515 " " y[1] (numeric) = 1.1001444313615267 " " absolute error = 1.17683640610266600000000000000E-14 " " relative error = 1.0697108239199454000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9610245068567732 " " Order of pole = 4.436743107446581 " " x[1] = -0.9533000000000051 " " y[1] (analytic) = 1.1003752510684828 " " y[1] (numeric) = 1.1003752510684945 " " absolute error = 1.17683640610266600000000000000E-14 " " relative error = 1.0694864365223938000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9609237071392482 " " Order of pole = 4.4367431074464925 " " x[1] = -0.9532000000000052 " " y[1] (analytic) = 1.1006061434249934 " " y[1] (numeric) = 1.1006061434250052 " " absolute error = 1.17683640610266600000000000000E-14 " " relative error = 1.0692620726615704000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9608229074217272 " " Order of pole = 4.4367431074465316 " " x[1] = -0.9531000000000052 " " y[1] (analytic) = 1.1008371084615383 " " y[1] (numeric) = 1.1008371084615503 " " absolute error = 1.19904086659516900000000000000E-14 " " relative error = 1.0892082555891254000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9607221077042069 " " Order of pole = 4.436743107446592 " " x[1] = -0.9530000000000052 " " y[1] (analytic) = 1.1010681462086251 " " y[1] (numeric) = 1.101068146208637 " " absolute error = 1.17683640610266600000000000000E-14 " " relative error = 1.0688134155501076000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9606213079866832 " " Order of pole = 4.436743107446546 " " x[1] = -0.9529000000000052 " " y[1] (analytic) = 1.1012992566967768 " " y[1] (numeric) = 1.1012992566967887 " " absolute error = 1.19904086659516900000000000000E-14 " " relative error = 1.0887511812107795000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9605205082691587 " " Order of pole = 4.436743107446468 " " x[1] = -0.9528000000000052 " " y[1] (analytic) = 1.101530439956533 " " y[1] (numeric) = 1.101530439956545 " " absolute error = 1.19904086659516900000000000000E-14 " " relative error = 1.0885226799928323000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9604197085516387 " " Order of pole = 4.436743107446535 " " x[1] = -0.9527000000000052 " " y[1] (analytic) = 1.101761696018449 " " y[1] (numeric) = 1.1017616960184613 " " absolute error = 1.221245327087672200000000000000E-14 " " relative error = 1.1084477991030306000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9603189088341114 " " Order of pole = 4.436743107446382 " " x[1] = -0.9526000000000052 " " y[1] (analytic) = 1.1019930249130967 " " y[1] (numeric) = 1.101993024913109 " " absolute error = 1.221245327087672200000000000000E-14 " " relative error = 1.1082151152308607000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9602181091165917 " " Order of pole = 4.436743107446453 " " x[1] = -0.9525000000000052 " " y[1] (analytic) = 1.1022244266710635 " " y[1] (numeric) = 1.1022244266710755 " " absolute error = 1.19904086659516900000000000000E-14 " " relative error = 1.0878373202238953000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9601173093990691 " " Order of pole = 4.43674310744645 " " x[1] = -0.9524000000000052 " " y[1] (analytic) = 1.1024559013229527 " " y[1] (numeric) = 1.1024559013229647 " " absolute error = 1.19904086659516900000000000000E-14 " " relative error = 1.0876089149292174000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9600165096815526 " " Order of pole = 4.43674310744662 " " x[1] = -0.9523000000000053 " " y[1] (analytic) = 1.102687448899384 " " y[1] (numeric) = 1.102687448899396 " " absolute error = 1.19904086659516900000000000000E-14 " " relative error = 1.0873805336153572000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9599157099640292 " " Order of pole = 4.436743107446585 " " x[1] = -0.9522000000000053 " " y[1] (analytic) = 1.1029190694309932 " " y[1] (numeric) = 1.1029190694310054 " " absolute error = 1.221245327087672200000000000000E-14 " " relative error = 1.107284623991246000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9598149102465172 " " Order of pole = 4.436743107446901 " " x[1] = -0.9521000000000053 " " y[1] (analytic) = 1.1031507629484323 " " y[1] (numeric) = 1.1031507629484445 " " absolute error = 1.221245327087672200000000000000E-14 " " relative error = 1.1070520622436085000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9597141105289775 " " Order of pole = 4.436743107446354 " " x[1] = -0.9520000000000053 " " y[1] (analytic) = 1.1033825294823691 " " y[1] (numeric) = 1.1033825294823811 " " absolute error = 1.19904086659516900000000000000E-14 " " relative error = 1.08669553355867990000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9596133108114577 " " Order of pole = 4.436743107446432 " " x[1] = -0.9519000000000053 " " y[1] (analytic) = 1.1036143690634872 " " y[1] (numeric) = 1.1036143690634996 " " absolute error = 1.243449787580175300000000000000E-14 " " relative error = 1.1267067758780186000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9595125110939406 " " Order of pole = 4.436743107446585 " " x[1] = -0.9518000000000053 " " y[1] (analytic) = 1.1038462817224877 " " y[1] (numeric) = 1.1038462817224999 " " absolute error = 1.221245327087672200000000000000E-14 " " relative error = 1.1063545235501361000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9594117113764155 " " Order of pole = 4.436743107446503 " " x[1] = -0.9517000000000053 " " y[1] (analytic) = 1.1040782674900862 " " y[1] (numeric) = 1.1040782674900984 " " absolute error = 1.221245327087672200000000000000E-14 " " relative error = 1.106122059502125000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9593109116588984 " " Order of pole = 4.436743107446656 " " x[1] = -0.9516000000000053 " " y[1] (analytic) = 1.1043103263970153 " " y[1] (numeric) = 1.1043103263970275 " " absolute error = 1.221245327087672200000000000000E-14 " " relative error = 1.1058896198790204000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9592101119413685 " " Order of pole = 4.436743107446421 " " x[1] = -0.9515000000000053 " " y[1] (analytic) = 1.1045424584740235 " " y[1] (numeric) = 1.1045424584740358 " " absolute error = 1.221245327087672200000000000000E-14 " " relative error = 1.1056572046808223000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9591093122238515 " " Order of pole = 4.436743107446581 " " x[1] = -0.9514000000000054 " " y[1] (analytic) = 1.1047746637518756 " " y[1] (numeric) = 1.104774663751888 " " absolute error = 1.243449787580175300000000000000E-14 " " relative error = 1.125523446887667900000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.959008512506332 " " Order of pole = 4.43674310744667 " " x[1] = -0.9513000000000054 " " y[1] (analytic) = 1.1050069422613527 " " y[1] (numeric) = 1.105006942261365 " " absolute error = 1.243449787580175300000000000000E-14 " " relative error = 1.125286855696585000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9589077127888015 " " Order of pole = 4.436743107446410 " " x[1] = -0.9512000000000054 " " y[1] (analytic) = 1.1052392940332514 " " y[1] (numeric) = 1.105239294033264 " " absolute error = 1.265654248072678500000000000000E-14 " " relative error = 1.1451404731133283000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9588069130712822 " " Order of pole = 4.436743107446496 " " x[1] = -0.9511000000000054 " " y[1] (analytic) = 1.1054717190983856 " " y[1] (numeric) = 1.105471719098398 " " absolute error = 1.243449787580175300000000000000E-14 " " relative error = 1.1248137479214065000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9587061133537631 " " Order of pole = 4.436743107446599 " " x[1] = -0.9510000000000054 " " y[1] (analytic) = 1.1057042174875844 " " y[1] (numeric) = 1.1057042174875968 " " absolute error = 1.243449787580175300000000000000E-14 " " relative error = 1.1245772313373106000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9586053136362402 " " Order of pole = 4.436743107446574 " " x[1] = -0.9509000000000054 " " y[1] (analytic) = 1.1059367892316934 " " y[1] (numeric) = 1.1059367892317058 " " absolute error = 1.243449787580175300000000000000E-14 " " relative error = 1.1243407396222109000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9585045139187203 " " Order of pole = 4.436743107446645 " " x[1] = -0.9508000000000054 " " y[1] (analytic) = 1.1061694343615744 " " y[1] (numeric) = 1.106169434361587 " " absolute error = 1.265654248072678500000000000000E-14 " " relative error = 1.1441775633613946000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9584037142012006 " " Order of pole = 4.436743107446723 " " x[1] = -0.9507000000000054 " " y[1] (analytic) = 1.1064021529081063 " " y[1] (numeric) = 1.1064021529081187 " " absolute error = 1.243449787580175300000000000000E-14 " " relative error = 1.1238678307989987000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9583029144836698 " " Order of pole = 4.436743107446453 " " x[1] = -0.9506000000000054 " " y[1] (analytic) = 1.1066349449021828 " " y[1] (numeric) = 1.1066349449021953 " " absolute error = 1.243449787580175300000000000000E-14 " " relative error = 1.123631413690885900000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9582021147661547 " " Order of pole = 4.436743107446677 " " x[1] = -0.9505000000000055 " " y[1] (analytic) = 1.1068678103747147 " " y[1] (numeric) = 1.1068678103747271 " " absolute error = 1.243449787580175300000000000000E-14 " " relative error = 1.1233950214517692000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9581013150486257 " " Order of pole = 4.436743107446468 " " x[1] = -0.9504000000000055 " " y[1] (analytic) = 1.107100749356629 " " y[1] (numeric) = 1.1071007493566414 " " absolute error = 1.243449787580175300000000000000E-14 " " relative error = 1.123158654081648100000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9580005153311035 " " Order of pole = 4.436743107446468 " " x[1] = -0.9503000000000055 " " y[1] (analytic) = 1.1073337618788686 " " y[1] (numeric) = 1.1073337618788812 " " absolute error = 1.265654248072678500000000000000E-14 " " relative error = 1.1429744957158894000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9578997156135797 " " Order of pole = 4.436743107446414 " " x[1] = -0.9502000000000055 " " y[1] (analytic) = 1.1075668479723935 " " y[1] (numeric) = 1.107566847972406 " " absolute error = 1.243449787580175300000000000000E-14 " " relative error = 1.1226859939483931000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9577989158960608 " " Order of pole = 4.436743107446517 " " x[1] = -0.9501000000000055 " " y[1] (analytic) = 1.1078000076681789 " " y[1] (numeric) = 1.1078000076681913 " " absolute error = 1.243449787580175300000000000000E-14 " " relative error = 1.1224497011852592000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9576981161785442 " " Order of pole = 4.436743107446695 " " x[1] = -0.9500000000000055 " " y[1] (analytic) = 1.1080332409972171 " " y[1] (numeric) = 1.1080332409972296 " " absolute error = 1.243449787580175300000000000000E-14 " " relative error = 1.1222134332911211000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9575973164610141 " " Order of pole = 4.436743107446446 " " x[1] = -0.9499000000000055 " " y[1] (analytic) = 1.1082665479905165 " " y[1] (numeric) = 1.108266547990529 " " absolute error = 1.243449787580175300000000000000E-14 " " relative error = 1.121977190265978900000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9574965167434973 " " Order of pole = 4.436743107446617 " " x[1] = -0.9498000000000055 " " y[1] (analytic) = 1.1084999286791015 " " y[1] (numeric) = 1.1084999286791142 " " absolute error = 1.265654248072678500000000000000E-14 " " relative error = 1.141772060897508100000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9573957170259759 " " Order of pole = 4.436743107446645 " " x[1] = -0.9497000000000055 " " y[1] (analytic) = 1.1087333830940136 " " y[1] (numeric) = 1.1087333830940262 " " absolute error = 1.265654248072678500000000000000E-14 " " relative error = 1.1415316498730868000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9572949173084545 " " Order of pole = 4.436743107446667 " " x[1] = -0.9496000000000056 " " y[1] (analytic) = 1.1089669112663103 " " y[1] (numeric) = 1.1089669112663225 " " absolute error = 1.221245327087672200000000000000E-14 " " relative error = 1.1012459566473026000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9571941175909247 " " Order of pole = 4.436743107446425 " " x[1] = -0.9495000000000056 " " y[1] (analytic) = 1.1092005132270644 " " y[1] (numeric) = 1.1092005132270768 " " absolute error = 1.243449787580175300000000000000E-14 " " relative error = 1.1210324668553671000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9570933178734126 " " Order of pole = 4.436743107446741 " " x[1] = -0.9494000000000056 " " y[1] (analytic) = 1.109434189007367 " " y[1] (numeric) = 1.1094341890073793 " " absolute error = 1.243449787580175300000000000000E-14 " " relative error = 1.1207963481752035000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9569925181558836 " " Order of pole = 4.436743107446528 " " x[1] = -0.9493000000000056 " " y[1] (analytic) = 1.109667938638324 " " y[1] (numeric) = 1.1096679386383363 " " absolute error = 1.243449787580175300000000000000E-14 " " relative error = 1.1205602543640357000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9568917184383618 " " Order of pole = 4.436743107446546 " " x[1] = -0.9492000000000056 " " y[1] (analytic) = 1.109901762151058 " " y[1] (numeric) = 1.1099017621510707 " " absolute error = 1.265654248072678500000000000000E-14 " " relative error = 1.1403299744472542000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9567909187208261 " " Order of pole = 4.436743107446116 " " x[1] = -0.9491000000000056 " " y[1] (analytic) = 1.1101356595767093 " " y[1] (numeric) = 1.1101356595767218 " " absolute error = 1.243449787580175300000000000000E-14 " " relative error = 1.1200881413486873000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.956690119003314 " " Order of pole = 4.436743107446436 " " x[1] = -0.9490000000000056 " " y[1] (analytic) = 1.1103696309464326 " " y[1] (numeric) = 1.1103696309464453 " " absolute error = 1.265654248072678500000000000000E-14 " " relative error = 1.1398494814685158000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9565893192858024 " " Order of pole = 4.43674310744677 " " x[1] = -0.9489000000000056 " " y[1] (analytic) = 1.1106036762914004 " " y[1] (numeric) = 1.110603676291413 " " absolute error = 1.265654248072678500000000000000E-14 " " relative error = 1.139609272948774000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9564885195682707 " " Order of pole = 4.436743107446471 " " x[1] = -0.9488000000000056 " " y[1] (analytic) = 1.110837795642801 " " y[1] (numeric) = 1.1108377956428137 " " absolute error = 1.265654248072678500000000000000E-14 " " relative error = 1.1393690897421174000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9563877198507531 " " Order of pole = 4.43674310744661 " " x[1] = -0.9487000000000056 " " y[1] (analytic) = 1.1110719890318395 " " y[1] (numeric) = 1.1110719890318523 " " absolute error = 1.287858708565181600000000000000E-14 " " relative error = 1.1591136499511519000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9562869201332388 " " Order of pole = 4.436743107446862 " " x[1] = -0.9486000000000057 " " y[1] (analytic) = 1.1113062564897374 " " y[1] (numeric) = 1.1113062564897502 " " absolute error = 1.287858708565181600000000000000E-14 " " relative error = 1.1588693045183757000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9561861204157078 " " Order of pole = 4.436743107446592 " " x[1] = -0.9485000000000057 " " y[1] (analytic) = 1.1115405980477322 " " y[1] (numeric) = 1.1115405980477453 " " absolute error = 1.310063169057684700000000000000E-14 " " relative error = 1.1786012776848907000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9560853206981832 " " Order of pole = 4.43674310744651 " " x[1] = -0.9484000000000057 " " y[1] (analytic) = 1.1117750137370788 " " y[1] (numeric) = 1.1117750137370916 " " absolute error = 1.287858708565181600000000000000E-14 " " relative error = 1.158380690924345900000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9559845209806663 " " Order of pole = 4.436743107446680 " " x[1] = -0.9483000000000057 " " y[1] (analytic) = 1.1120095035890474 " " y[1] (numeric) = 1.1120095035890603 " " absolute error = 1.287858708565181600000000000000E-14 " " relative error = 1.1581364227630925000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9558837212631461 " " Order of pole = 4.436743107446738 " " x[1] = -0.9482000000000057 " " y[1] (analytic) = 1.1122440676349254 " " y[1] (numeric) = 1.1122440676349383 " " absolute error = 1.287858708565181600000000000000E-14 " " relative error = 1.1578921803590132000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.955782921545618 " " Order of pole = 4.436743107446550 " " x[1] = -0.9481000000000057 " " y[1] (analytic) = 1.112478705906017 " " y[1] (numeric) = 1.11247870590603 " " absolute error = 1.287858708565181600000000000000E-14 " " relative error = 1.1576479637121079000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.955682121828092 " " Order of pole = 4.436743107446440 " " x[1] = -0.9480000000000057 " " y[1] (analytic) = 1.112713418433642 " " y[1] (numeric) = 1.1127134184336551 " " absolute error = 1.310063169057684700000000000000E-14 " " relative error = 1.177359010284831900000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9555813221105774 " " Order of pole = 4.436743107446680 " " x[1] = -0.9479000000000057 " " y[1] (analytic) = 1.1129482052491377 " " y[1] (numeric) = 1.1129482052491508 " " absolute error = 1.310063169057684700000000000000E-14 " " relative error = 1.1771106354086101000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9554805223930388 " " Order of pole = 4.436743107446162 " " x[1] = -0.9478000000000057 " " y[1] (analytic) = 1.1131830663838573 " " y[1] (numeric) = 1.1131830663838702 " " absolute error = 1.287858708565181600000000000000E-14 " " relative error = 1.1569154683144373000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9553797226755382 " " Order of pole = 4.436743107446837 " " x[1] = -0.9477000000000058 " " y[1] (analytic) = 1.1134180018691704 " " y[1] (numeric) = 1.1134180018691835 " " absolute error = 1.310063169057684700000000000000E-14 " " relative error = 1.1766139642599568000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9552789229580141 " " Order of pole = 4.43674310744678 " " x[1] = -0.9476000000000058 " " y[1] (analytic) = 1.1136530117364638 " " y[1] (numeric) = 1.113653011736477 " " absolute error = 1.310063169057684700000000000000E-14 " " relative error = 1.1763656679875253000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9551781232404909 " " Order of pole = 4.436743107446745 " " x[1] = -0.9475000000000058 " " y[1] (analytic) = 1.1138880960171402 " " y[1] (numeric) = 1.1138880960171536 " " absolute error = 1.332267629550187800000000000000E-14 " " relative error = 1.1960515911013804000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9550773235229642 " " Order of pole = 4.436743107446603 " " x[1] = -0.9474000000000058 " " y[1] (analytic) = 1.1141232547426196 " " y[1] (numeric) = 1.114123254742633 " " absolute error = 1.332267629550187800000000000000E-14 " " relative error = 1.1957991397082571000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9549765238054403 " " Order of pole = 4.436743107446556 " " x[1] = -0.9473000000000058 " " y[1] (analytic) = 1.114358487944338 " " y[1] (numeric) = 1.1143584879443513 " " absolute error = 1.332267629550187800000000000000E-14 " " relative error = 1.1955467149604860000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9548757240879165 " " Order of pole = 4.436743107446507 " " x[1] = -0.9472000000000058 " " y[1] (analytic) = 1.1145937956537482 " " y[1] (numeric) = 1.1145937956537615 " " absolute error = 1.332267629550187800000000000000E-14 " " relative error = 1.1952943168580678000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9547749243703971 " " Order of pole = 4.436743107446592 " " x[1] = -0.9471000000000058 " " y[1] (analytic) = 1.1148291779023196 " " y[1] (numeric) = 1.1148291779023327 " " absolute error = 1.310063169057684700000000000000E-14 " " relative error = 1.1751245796443185000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.954674124652873 " " Order of pole = 4.436743107446535 " " x[1] = -0.9470000000000058 " " y[1] (analytic) = 1.1150646347215378 " " y[1] (numeric) = 1.1150646347215512 " " absolute error = 1.332267629550187800000000000000E-14 " " relative error = 1.1947896005892893000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9545733249353582 " " Order of pole = 4.4367431074467625 " " x[1] = -0.9469000000000058 " " y[1] (analytic) = 1.115300166142906 " " y[1] (numeric) = 1.1153001661429194 " " absolute error = 1.332267629550187800000000000000E-14 " " relative error = 1.1945372824229288000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9544725252178295 " " Order of pole = 4.43674310744656 " " x[1] = -0.9468000000000059 " " y[1] (analytic) = 1.1155357721979433 " " y[1] (numeric) = 1.1155357721979566 " " absolute error = 1.332267629550187800000000000000E-14 " " relative error = 1.1942849909019207000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9543717255003106 " " Order of pole = 4.4367431074466595 " " x[1] = -0.9467000000000059 " " y[1] (analytic) = 1.1157714529181855 " " y[1] (numeric) = 1.1157714529181988 " " absolute error = 1.332267629550187800000000000000E-14 " " relative error = 1.1940327260262655000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.95427092578278 " " Order of pole = 4.4367431074464 " " x[1] = -0.9466000000000059 " " y[1] (analytic) = 1.116007208335185 " " y[1] (numeric) = 1.1160072083351984 " " absolute error = 1.332267629550187800000000000000E-14 " " relative error = 1.1937804877959628000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9541701260652631 " " Order of pole = 4.436743107446567 " " x[1] = -0.9465000000000059 " " y[1] (analytic) = 1.1162430384805115 " " y[1] (numeric) = 1.1162430384805249 " " absolute error = 1.332267629550187800000000000000E-14 " " relative error = 1.1935282762110125000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9540693263477364 " " Order of pole = 4.436743107446425 " " x[1] = -0.9464000000000059 " " y[1] (analytic) = 1.1164789433857503 " " y[1] (numeric) = 1.1164789433857638 " " absolute error = 1.35447209004269100000000000000E-14 " " relative error = 1.213164026125939000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.953968526630223 " " Order of pole = 4.4367431074466985 " " x[1] = -0.9463000000000059 " " y[1] (analytic) = 1.1167149230825046 " " y[1] (numeric) = 1.1167149230825182 " " absolute error = 1.35447209004269100000000000000E-14 " " relative error = 1.2129076651934564000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9538677269126893 " " Order of pole = 4.43674310744634 " " x[1] = -0.9462000000000059 " " y[1] (analytic) = 1.1169509776023934 " " y[1] (numeric) = 1.1169509776024071 " " absolute error = 1.376676550535194000000000000000E-14 " " relative error = 1.232530861372554000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.953766927195164 " " Order of pole = 4.436743107446244 " " x[1] = -0.9461000000000059 " " y[1] (analytic) = 1.117187106977053 " " y[1] (numeric) = 1.1171871069770665 " " absolute error = 1.35447209004269100000000000000E-14 " " relative error = 1.212395024596817100000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9536661274776548 " " Order of pole = 4.436743107446649 " " x[1] = -0.946000000000006 " " y[1] (analytic) = 1.1174233112381355 " " y[1] (numeric) = 1.1174233112381493 " " absolute error = 1.376676550535194000000000000000E-14 " " relative error = 1.2320098718987695000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.953565327760137 " " Order of pole = 4.436743107446791 " " x[1] = -0.945900000000006 " " y[1] (analytic) = 1.1176595904173112 " " y[1] (numeric) = 1.1176595904173248 " " absolute error = 1.35447209004269100000000000000E-14 " " relative error = 1.2118824923579448000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9534645280426162 " " Order of pole = 4.43674310744683 " " x[1] = -0.945800000000006 " " y[1] (analytic) = 1.1178959445462657 " " y[1] (numeric) = 1.1178959445462793 " " absolute error = 1.35447209004269100000000000000E-14 " " relative error = 1.2116262668726716000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9533637283250811 " " Order of pole = 4.436743107446425 " " x[1] = -0.945700000000006 " " y[1] (analytic) = 1.1181323736567021 " " y[1] (numeric) = 1.1181323736567157 " " absolute error = 1.35447209004269100000000000000E-14 " " relative error = 1.2113700684768401000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9532629286075628 " " Order of pole = 4.436743107446553 " " x[1] = -0.945600000000006 " " y[1] (analytic) = 1.1183688777803404 " " y[1] (numeric) = 1.118368877780354 " " absolute error = 1.35447209004269100000000000000E-14 " " relative error = 1.21111389717045000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.953162128890036 " " Order of pole = 4.436743107446407 " " x[1] = -0.945500000000006 " " y[1] (analytic) = 1.1186054569489168 " " y[1] (numeric) = 1.1186054569489303 " " absolute error = 1.35447209004269100000000000000E-14 " " relative error = 1.2108577529535022000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9530613291725258 " " Order of pole = 4.436743107446777 " " x[1] = -0.945400000000006 " " y[1] (analytic) = 1.1188421111941846 " " y[1] (numeric) = 1.1188421111941982 " " absolute error = 1.35447209004269100000000000000E-14 " " relative error = 1.2106016358259960000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9529605294549968 " " Order of pole = 4.436743107446570 " " x[1] = -0.945300000000006 " " y[1] (analytic) = 1.119078840547914 " " y[1] (numeric) = 1.1190788405479277 " " absolute error = 1.376676550535194000000000000000E-14 " " relative error = 1.2301872760467505000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9528597297374757 " " Order of pole = 4.436743107446603 " " x[1] = -0.945200000000006 " " y[1] (analytic) = 1.119315645041892 " " y[1] (numeric) = 1.1193156450419057 " " absolute error = 1.376676550535194000000000000000E-14 " " relative error = 1.2299270153448717000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9527589300199488 " " Order of pole = 4.436743107446453 " " x[1] = -0.945100000000006 " " y[1] (analytic) = 1.119552524707922 " " y[1] (numeric) = 1.1195525247079359 " " absolute error = 1.376676550535194000000000000000E-14 " " relative error = 1.2296667821765242000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9526581303024289 " " Order of pole = 4.436743107446528 " " x[1] = -0.9450000000000061 " " y[1] (analytic) = 1.1197894795778252 " " y[1] (numeric) = 1.1197894795778387 " " absolute error = 1.35447209004269100000000000000E-14 " " relative error = 1.2095774382103895000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9525573305849039 " " Order of pole = 4.436743107446440 " " x[1] = -0.9449000000000061 " " y[1] (analytic) = 1.1200265096834379 " " y[1] (numeric) = 1.1200265096834516 " " absolute error = 1.376676550535194000000000000000E-14 " " relative error = 1.229146398440422000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9524565308673884 " " Order of pole = 4.436743107446656 " " x[1] = -0.9448000000000061 " " y[1] (analytic) = 1.1202636150566154 " " y[1] (numeric) = 1.120263615056629 " " absolute error = 1.35447209004269100000000000000E-14 " " relative error = 1.2090655019392371000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9523557311498564 " " Order of pole = 4.436743107446347 " " x[1] = -0.9447000000000061 " " y[1] (analytic) = 1.1205007957292281 " " y[1] (numeric) = 1.1205007957292419 " " absolute error = 1.376676550535194000000000000000E-14 " " relative error = 1.2286261248384436000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9522549314323401 " " Order of pole = 4.4367431074465316 " " x[1] = -0.9446000000000061 " " y[1] (analytic) = 1.1207380517331642 " " y[1] (numeric) = 1.1207380517331782 " " absolute error = 1.398881011027697200000000000000E-14 " " relative error = 1.2481783846496504000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9521541317148232 " " Order of pole = 4.436743107446688 " " x[1] = -0.9445000000000061 " " y[1] (analytic) = 1.1209753831003288 " " y[1] (numeric) = 1.1209753831003426 " " absolute error = 1.376676550535194000000000000000E-14 " " relative error = 1.2281059613705894000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9520533319972964 " " Order of pole = 4.436743107446550 " " x[1] = -0.9444000000000061 " " y[1] (analytic) = 1.1212127898626432 " " y[1] (numeric) = 1.1212127898626572 " " absolute error = 1.398881011027697200000000000000E-14 " " relative error = 1.2476498874036841000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9519525322797686 " " Order of pole = 4.436743107446375 " " x[1] = -0.9443000000000061 " " y[1] (analytic) = 1.121450272052046 " " y[1] (numeric) = 1.1214502720520603 " " absolute error = 1.421085471520200400000000000000E-14 " " relative error = 1.2671854534574034000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9518517325622521 " " Order of pole = 4.436743107446556 " " x[1] = -0.9442000000000061 " " y[1] (analytic) = 1.1216878297004933 " " y[1] (numeric) = 1.1216878297005075 " " absolute error = 1.421085471520200400000000000000E-14 " " relative error = 1.2669170814661068000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9517509328447342 " " Order of pole = 4.436743107446684 " " x[1] = -0.9441000000000062 " " y[1] (analytic) = 1.1219254628399573 " " y[1] (numeric) = 1.1219254628399713 " " absolute error = 1.398881011027697200000000000000E-14 " " relative error = 1.2468573513668864000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9516501331272093 " " Order of pole = 4.436743107446606 " " x[1] = -0.9440000000000062 " " y[1] (analytic) = 1.1221631715024272 " " y[1] (numeric) = 1.1221631715024412 " " absolute error = 1.398881011027697200000000000000E-14 " " relative error = 1.2465932286431942000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9515493334096822 " " Order of pole = 4.43674310744645 " " x[1] = -0.9439000000000062 " " y[1] (analytic) = 1.1224009557199095 " " y[1] (numeric) = 1.1224009557199235 " " absolute error = 1.398881011027697200000000000000E-14 " " relative error = 1.2463291338971225000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9514485336921606 " " Order of pole = 4.436743107446464 " " x[1] = -0.9438000000000062 " " y[1] (analytic) = 1.1226388155244276 " " y[1] (numeric) = 1.1226388155244416 " " absolute error = 1.398881011027697200000000000000E-14 " " relative error = 1.2460650671286708000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9513477339746476 " " Order of pole = 4.436743107446755 " " x[1] = -0.9437000000000062 " " y[1] (analytic) = 1.1228767509480218 " " y[1] (numeric) = 1.1228767509480357 " " absolute error = 1.398881011027697200000000000000E-14 " " relative error = 1.2458010283378392000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9512469342571095 " " Order of pole = 4.436743107446258 " " x[1] = -0.9436000000000062 " " y[1] (analytic) = 1.123114762022749 " " y[1] (numeric) = 1.123114762022763 " " absolute error = 1.398881011027697200000000000000E-14 " " relative error = 1.2455370175246282000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9511461345395903 " " Order of pole = 4.43674310744635 " " x[1] = -0.9435000000000062 " " y[1] (analytic) = 1.1233528487806839 " " y[1] (numeric) = 1.123352848780698 " " absolute error = 1.421085471520200400000000000000E-14 " " relative error = 1.265039273334895000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.951045334822066 " " Order of pole = 4.43674310744629 " " x[1] = -0.9434000000000062 " " y[1] (analytic) = 1.1235910112539176 " " y[1] (numeric) = 1.1235910112539318 " " absolute error = 1.421085471520200400000000000000E-14 " " relative error = 1.2647711287172736000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9509445351045551 " " Order of pole = 4.436743107446645 " " x[1] = -0.9433000000000062 " " y[1] (analytic) = 1.1238292494745585 " " y[1] (numeric) = 1.1238292494745725 " " absolute error = 1.398881011027697200000000000000E-14 " " relative error = 1.2447451529507156000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9508437353870237 " " Order of pole = 4.436743107446354 " " x[1] = -0.9432000000000063 " " y[1] (analytic) = 1.1240675634747315 " " y[1] (numeric) = 1.1240675634747457 " " absolute error = 1.421085471520200400000000000000E-14 " " relative error = 1.2642349247471600000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9507429356695037 " " Order of pole = 4.436743107446421 " " x[1] = -0.9431000000000063 " " y[1] (analytic) = 1.1243059532865793 " " y[1] (numeric) = 1.1243059532865936 " " absolute error = 1.421085471520200400000000000000E-14 " " relative error = 1.2639668653946667000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9506421359519945 " " Order of pole = 4.4367431074468335 " " x[1] = -0.9430000000000063 " " y[1] (analytic) = 1.124544418942261 " " y[1] (numeric) = 1.1245444189422753 " " absolute error = 1.421085471520200400000000000000E-14 " " relative error = 1.2636988344638833000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9505413362344711 " " Order of pole = 4.4367431074467945 " " x[1] = -0.9429000000000063 " " y[1] (analytic) = 1.1247829604739532 " " y[1] (numeric) = 1.1247829604739676 " " absolute error = 1.443289932012703500000000000000E-14 " " relative error = 1.2831719387041035000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9504405365169466 " " Order of pole = 4.43674310744672 " " x[1] = -0.9428000000000063 " " y[1] (analytic) = 1.1250215779138493 " " y[1] (numeric) = 1.1250215779138637 " " absolute error = 1.443289932012703500000000000000E-14 " " relative error = 1.282899777521624000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9503397367994211 " " Order of pole = 4.436743107446617 " " x[1] = -0.9427000000000063 " " y[1] (analytic) = 1.12526027129416 " " y[1] (numeric) = 1.1252602712941744 " " absolute error = 1.443289932012703500000000000000E-14 " " relative error = 1.2826276452049430000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9502389370818939 " " Order of pole = 4.4367431074464605 " " x[1] = -0.9426000000000063 " " y[1] (analytic) = 1.1254990406471126 " " y[1] (numeric) = 1.125499040647127 " " absolute error = 1.443289932012703500000000000000E-14 " " relative error = 1.2823555417540605000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9501381373643829 " " Order of pole = 4.436743107446809 " " x[1] = -0.9425000000000063 " " y[1] (analytic) = 1.125737886004952 " " y[1] (numeric) = 1.1257378860049667 " " absolute error = 1.465494392505206600000000000000E-14 " " relative error = 1.3018078282023457000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9500373376468538 " " Order of pole = 4.436743107446603 " " x[1] = -0.9424000000000063 " " y[1] (analytic) = 1.1259768073999403 " " y[1] (numeric) = 1.125976807399955 " " absolute error = 1.465494392505206600000000000000E-14 " " relative error = 1.3015315971643027000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9499365379293303 " " Order of pole = 4.436743107446553 " " x[1] = -0.9423000000000064 " " y[1] (analytic) = 1.1262158048643565 " " y[1] (numeric) = 1.126215804864371 " " absolute error = 1.443289932012703500000000000000E-14 " " relative error = 1.2815394045962053000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9498357382118113 " " Order of pole = 4.436743107446652 " " x[1] = -0.9422000000000064 " " y[1] (analytic) = 1.1264548784304962 " " y[1] (numeric) = 1.1264548784305106 " " absolute error = 1.443289932012703500000000000000E-14 " " relative error = 1.2812674166085175000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9497349384942754 " " Order of pole = 4.436743107446219 " " x[1] = -0.9421000000000064 " " y[1] (analytic) = 1.126694028130673 " " y[1] (numeric) = 1.1266940281306874 " " absolute error = 1.443289932012703500000000000000E-14 " " relative error = 1.2809954574866284000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9496341387767704 " " Order of pole = 4.4367431074467625 " " x[1] = -0.9420000000000064 " " y[1] (analytic) = 1.126933253997217 " " y[1] (numeric) = 1.1269332539972317 " " absolute error = 1.465494392505206600000000000000E-14 " " relative error = 1.3004269661110077000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9495333390592335 " " Order of pole = 4.436743107446300 " " x[1] = -0.9419000000000064 " " y[1] (analytic) = 1.1271725560624761 " " y[1] (numeric) = 1.1271725560624908 " " absolute error = 1.465494392505206600000000000000E-14 " " relative error = 1.3001508816224036000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9494325393417226 " " Order of pole = 4.4367431074466595 " " x[1] = -0.9418000000000064 " " y[1] (analytic) = 1.1274119343588147 " " y[1] (numeric) = 1.1274119343588296 " " absolute error = 1.487698852997709800000000000000E-14 " " relative error = 1.3195698995716226000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9493317396242038 " " Order of pole = 4.4367431074467625 " " x[1] = -0.9417000000000064 " " y[1] (analytic) = 1.1276513889186153 " " y[1] (numeric) = 1.12765138891863 " " absolute error = 1.465494392505206600000000000000E-14 " " relative error = 1.2995988005748593000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9492309399066703 " " Order of pole = 4.436743107446407 " " x[1] = -0.9416000000000064 " " y[1] (analytic) = 1.1278909197742764 " " y[1] (numeric) = 1.127890919774291 " " absolute error = 1.465494392505206600000000000000E-14 " " relative error = 1.299322804015919000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9491301401891532 " " Order of pole = 4.436743107446570 " " x[1] = -0.9415000000000064 " " y[1] (analytic) = 1.1281305269582147 " " y[1] (numeric) = 1.1281305269582294 " " absolute error = 1.465494392505206600000000000000E-14 " " relative error = 1.2990468367668662000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9490293404716276 " " Order of pole = 4.4367431074464605 " " x[1] = -0.9414000000000065 " " y[1] (analytic) = 1.1283702105028635 " " y[1] (numeric) = 1.1283702105028781 " " absolute error = 1.465494392505206600000000000000E-14 " " relative error = 1.2987708988277014000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9489285407541108 " " Order of pole = 4.436743107446631 " " x[1] = -0.9413000000000065 " " y[1] (analytic) = 1.1286099704406738 " " y[1] (numeric) = 1.1286099704406882 " " absolute error = 1.443289932012703500000000000000E-14 " " relative error = 1.2788208236802664000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.948827741036584 " " Order of pole = 4.436743107446485 " " x[1] = -0.9412000000000065 " " y[1] (analytic) = 1.128849806804113 " " y[1] (numeric) = 1.1288498068041277 " " absolute error = 1.465494392505206600000000000000E-14 " " relative error = 1.2982191108790356000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9487269413190623 " " Order of pole = 4.436743107446503 " " x[1] = -0.9411000000000065 " " y[1] (analytic) = 1.129089719625667 " " y[1] (numeric) = 1.129089719625682 " " absolute error = 1.487698852997709800000000000000E-14 " " relative error = 1.3176090678524060000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9486261416015327 " " Order of pole = 4.436743107446269 " " x[1] = -0.9410000000000065 " " y[1] (analytic) = 1.1293297089378385 " " y[1] (numeric) = 1.1293297089378533 " " absolute error = 1.487698852997709800000000000000E-14 " " relative error = 1.3173290680512834000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9485253418840123 " " Order of pole = 4.4367431074463255 " " x[1] = -0.9409000000000065 " " y[1] (analytic) = 1.1295697747731466 " " y[1] (numeric) = 1.1295697747731615 " " absolute error = 1.487698852997709800000000000000E-14 " " relative error = 1.3170490980041377000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9484245421664937 " " Order of pole = 4.436743107446446 " " x[1] = -0.9408000000000065 " " y[1] (analytic) = 1.129809917164129 " " y[1] (numeric) = 1.1298099171641436 " " absolute error = 1.465494392505206600000000000000E-14 " " relative error = 1.2971158867003577000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9483237424489728 " " Order of pole = 4.436743107446485 " " x[1] = -0.9407000000000065 " " y[1] (analytic) = 1.1300501361433393 " " y[1] (numeric) = 1.1300501361433541 " " absolute error = 1.487698852997709800000000000000E-14 " " relative error = 1.3164892471717776000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9482229427314518 " " Order of pole = 4.436743107446521 " " x[1] = -0.9406000000000065 " " y[1] (analytic) = 1.13029043174335 " " y[1] (numeric) = 1.1302904317433649 " " absolute error = 1.487698852997709800000000000000E-14 " " relative error = 1.3162093663865634000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9481221430139282 " " Order of pole = 4.436743107446475 " " x[1] = -0.9405000000000066 " " y[1] (analytic) = 1.1305308039967499 " " y[1] (numeric) = 1.1305308039967645 " " absolute error = 1.465494392505206600000000000000E-14 " " relative error = 1.2962887763201716000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9480213432964025 " " Order of pole = 4.436743107446372 " " x[1] = -0.9404000000000066 " " y[1] (analytic) = 1.1307712529361449 " " y[1] (numeric) = 1.1307712529361595 " " absolute error = 1.465494392505206600000000000000E-14 " " relative error = 1.2960131314798853000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9479205435788938 " " Order of pole = 4.436743107446791 " " x[1] = -0.9403000000000066 " " y[1] (analytic) = 1.131011778594159 " " y[1] (numeric) = 1.1310117785941736 " " absolute error = 1.465494392505206600000000000000E-14 " " relative error = 1.295737515949487000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9478197438613613 " " Order of pole = 4.436743107446464 " " x[1] = -0.9402000000000066 " " y[1] (analytic) = 1.131252381003433 " " y[1] (numeric) = 1.1312523810034478 " " absolute error = 1.487698852997709800000000000000E-14 " " relative error = 1.3150901407854762000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9477189441438454 " " Order of pole = 4.436743107446667 " " x[1] = -0.9401000000000066 " " y[1] (analytic) = 1.1314930601966258 " " y[1] (numeric) = 1.1314930601966404 " " absolute error = 1.465494392505206600000000000000E-14 " " relative error = 1.2951863728183535000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9476181444263193 " " Order of pole = 4.436743107446542 " " x[1] = -0.9400000000000066 " " y[1] (analytic) = 1.1317338162064123 " " y[1] (numeric) = 1.1317338162064272 " " absolute error = 1.487698852997709800000000000000E-14 " " relative error = 1.314530706508795000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9475173447087901 " " Order of pole = 4.436743107446322 " " x[1] = -0.9399000000000066 " " y[1] (analytic) = 1.1319746490654863 " " y[1] (numeric) = 1.1319746490655012 " " absolute error = 1.487698852997709800000000000000E-14 " " relative error = 1.31425103400142000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9474165449912758 " " Order of pole = 4.436743107446567 " " x[1] = -0.9398000000000066 " " y[1] (analytic) = 1.1322155588065583 " " y[1] (numeric) = 1.132215558806573 " " absolute error = 1.465494392505206600000000000000E-14 " " relative error = 1.2943598779458124000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9473157452737581 " " Order of pole = 4.436743107446710 " " x[1] = -0.9397000000000066 " " y[1] (analytic) = 1.1324565454623556 " " y[1] (numeric) = 1.1324565454623705 " " absolute error = 1.487698852997709800000000000000E-14 " " relative error = 1.313691778248601000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9472149455562296 " " Order of pole = 4.436743107446517 " " x[1] = -0.9396000000000067 " " y[1] (analytic) = 1.1326976090656242 " " y[1] (numeric) = 1.132697609065639 " " absolute error = 1.487698852997709800000000000000E-14 " " relative error = 1.3134121950031574000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9471141458387131 " " Order of pole = 4.436743107446695 " " x[1] = -0.9395000000000067 " " y[1] (analytic) = 1.132938749649127 " " y[1] (numeric) = 1.1329387496491417 " " absolute error = 1.465494392505206600000000000000E-14 " " relative error = 1.2935336468622620000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9470133461211835 " " Order of pole = 4.4367431074464605 " " x[1] = -0.9394000000000067 " " y[1] (analytic) = 1.1331799672456435 " " y[1] (numeric) = 1.1331799672456584 " " absolute error = 1.487698852997709800000000000000E-14 " " relative error = 1.3128531177742006000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9469125464036579 " " Order of pole = 4.43674310744635 " " x[1] = -0.9393000000000067 " " y[1] (analytic) = 1.133421261887972 " " y[1] (numeric) = 1.1334212618879869 " " absolute error = 1.487698852997709800000000000000E-14 " " relative error = 1.312573623790688000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9468117466861362 " " Order of pole = 4.436743107446365 " " x[1] = -0.9392000000000067 " " y[1] (analytic) = 1.1336626336089273 " " y[1] (numeric) = 1.1336626336089421 " " absolute error = 1.487698852997709800000000000000E-14 " " relative error = 1.3122941595611523000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9467109469686182 " " Order of pole = 4.4367431074465 " " x[1] = -0.9391000000000067 " " y[1] (analytic) = 1.1339040824413418 " " y[1] (numeric) = 1.1339040824413569 " " absolute error = 1.50990331349021300000000000000E-14 " " relative error = 1.3315970344152298000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9466101472511022 " " Order of pole = 4.436743107446695 " " x[1] = -0.9390000000000067 " " y[1] (analytic) = 1.134145608418066 " " y[1] (numeric) = 1.1341456084180812 " " absolute error = 1.50990331349021300000000000000E-14 " " relative error = 1.331313459473923000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9465093475335777 " " Order of pole = 4.436743107446624 " " x[1] = -0.9389000000000067 " " y[1] (analytic) = 1.1343872115719675 " " y[1] (numeric) = 1.1343872115719826 " " absolute error = 1.50990331349021300000000000000E-14 " " relative error = 1.3310299147306828000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9464085478160451 " " Order of pole = 4.436743107446297 " " x[1] = -0.9388000000000067 " " y[1] (analytic) = 1.134628891935931 " " y[1] (numeric) = 1.1346288919359462 " " absolute error = 1.50990331349021300000000000000E-14 " " relative error = 1.3307464001855088000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9463077480985272 " " Order of pole = 4.436743107446436 " " x[1] = -0.9387000000000068 " " y[1] (analytic) = 1.1348706495428595 " " y[1] (numeric) = 1.1348706495428746 " " absolute error = 1.50990331349021300000000000000E-14 " " relative error = 1.3304629158384007000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9462069483810146 " " Order of pole = 4.4367431074467305 " " x[1] = -0.9386000000000068 " " y[1] (analytic) = 1.1351124844256728 " " y[1] (numeric) = 1.135112484425688 " " absolute error = 1.50990331349021300000000000000E-14 " " relative error = 1.3301794616893595000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.946106148663497 " " Order of pole = 4.436743107446876 " " x[1] = -0.9385000000000068 " " y[1] (analytic) = 1.1353543966173087 " " y[1] (numeric) = 1.1353543966173238 " " absolute error = 1.50990331349021300000000000000E-14 " " relative error = 1.3298960377383842000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.946005348945963 " " Order of pole = 4.436743107446507 " " x[1] = -0.9384000000000068 " " y[1] (analytic) = 1.1355963861507226 " " y[1] (numeric) = 1.1355963861507377 " " absolute error = 1.50990331349021300000000000000E-14 " " relative error = 1.3296126439854752000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9459045492284434 " " Order of pole = 4.436743107446581 " " x[1] = -0.9383000000000068 " " y[1] (analytic) = 1.135838453058887 " " y[1] (numeric) = 1.135838453058902 " " absolute error = 1.50990331349021300000000000000E-14 " " relative error = 1.3293292804306325000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9458037495109131 " " Order of pole = 4.436743107446333 " " x[1] = -0.9382000000000068 " " y[1] (analytic) = 1.136080597374792 " " y[1] (numeric) = 1.1360805973748074 " " absolute error = 1.53210777398271600000000000000E-14 " " relative error = 1.3485907404131778000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9457029497933969 " " Order of pole = 4.4367431074465244 " " x[1] = -0.9381000000000068 " " y[1] (analytic) = 1.1363228191314463 " " y[1] (numeric) = 1.1363228191314616 " " absolute error = 1.53210777398271600000000000000E-14 " " relative error = 1.3483032710315454000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9456021500758681 " " Order of pole = 4.436743107446318 " " x[1] = -0.9380000000000068 " " y[1] (analytic) = 1.1365651183618748 " " y[1] (numeric) = 1.1365651183618903 " " absolute error = 1.55431223447521920000000000000E-14 " " relative error = 1.3675522936296347000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9455013503583534 " " Order of pole = 4.436743107446550 " " x[1] = -0.9379000000000068 " " y[1] (analytic) = 1.136807495099121 " " y[1] (numeric) = 1.1368074950991365 " " absolute error = 1.55431223447521920000000000000E-14 " " relative error = 1.3672607201975698000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.945400550640828 " " Order of pole = 4.43674310744645 " " x[1] = -0.9378000000000069 " " y[1] (analytic) = 1.1370499493762454 " " y[1] (numeric) = 1.137049949376261 " " absolute error = 1.55431223447521920000000000000E-14 " " relative error = 1.366969177851749000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9452997509233128 " " Order of pole = 4.43674310744667 " " x[1] = -0.9377000000000069 " " y[1] (analytic) = 1.1372924812263268 " " y[1] (numeric) = 1.137292481226342 " " absolute error = 1.53210777398271600000000000000E-14 " " relative error = 1.3471536999265707000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9451989512057851 " " Order of pole = 4.4367431074465 " " x[1] = -0.9376000000000069 " " y[1] (analytic) = 1.1375350906824608 " " y[1] (numeric) = 1.1375350906824762 " " absolute error = 1.53210777398271600000000000000E-14 " " relative error = 1.3468663837557154000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9450981514882756 " " Order of pole = 4.436743107446901 " " x[1] = -0.9375000000000069 " " y[1] (analytic) = 1.1377777777777611 " " y[1] (numeric) = 1.1377777777777767 " " absolute error = 1.55431223447521920000000000000E-14 " " relative error = 1.3660947373317556000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9449973517707442 " " Order of pole = 4.436743107446606 " " x[1] = -0.9374000000000069 " " y[1] (analytic) = 1.1380205425453591 " " y[1] (numeric) = 1.1380205425453749 " " absolute error = 1.576516694967722300000000000000E-14 " " relative error = 1.3853147953213557000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9448965520532233 " " Order of pole = 4.436743107446652 " " x[1] = -0.9373000000000069 " " y[1] (analytic) = 1.138263385018404 " " y[1] (numeric) = 1.1382633850184198 " " absolute error = 1.576516694967722300000000000000E-14 " " relative error = 1.38501924573655000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9447957523356943 " " Order of pole = 4.436743107446440 " " x[1] = -0.9372000000000069 " " y[1] (analytic) = 1.1385063052300626 " " y[1] (numeric) = 1.1385063052300783 " " absolute error = 1.576516694967722300000000000000E-14 " " relative error = 1.3847237276820784000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9446949526181765 " " Order of pole = 4.436743107446574 " " x[1] = -0.9371000000000069 " " y[1] (analytic) = 1.138749303213519 " " y[1] (numeric) = 1.1387493032135347 " " absolute error = 1.576516694967722300000000000000E-14 " " relative error = 1.3844282411579406000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9445941529006451 " " Order of pole = 4.436743107446280 " " x[1] = -0.9370000000000069 " " y[1] (analytic) = 1.1389923790019754 " " y[1] (numeric) = 1.1389923790019911 " " absolute error = 1.576516694967722300000000000000E-14 " " relative error = 1.3841327861641364000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9444933531831253 " " Order of pole = 4.4367431074463575 " " x[1] = -0.936900000000007 " " y[1] (analytic) = 1.1392355326286514 " " y[1] (numeric) = 1.1392355326286674 " " absolute error = 1.598721155460225400000000000000E-14 " " relative error = 1.4033280297809578000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9443925534656062 " " Order of pole = 4.4367431074464605 " " x[1] = -0.936800000000007 " " y[1] (analytic) = 1.139478764126785 " " y[1] (numeric) = 1.139478764126801 " " absolute error = 1.598721155460225400000000000000E-14 " " relative error = 1.4030284773980592000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9442917537480878 " " Order of pole = 4.436743107446578 " " x[1] = -0.936700000000007 " " y[1] (analytic) = 1.1397220735296314 " " y[1] (numeric) = 1.1397220735296472 " " absolute error = 1.576516694967722300000000000000E-14 " " relative error = 1.3832466103647284000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9441909540305612 " " Order of pole = 4.436743107446436 " " x[1] = -0.936600000000007 " " y[1] (analytic) = 1.1399654608704632 " " y[1] (numeric) = 1.1399654608704792 " " absolute error = 1.598721155460225400000000000000E-14 " " relative error = 1.4024294685555316000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9440901543130438 " " Order of pole = 4.436743107446588 " " x[1] = -0.936500000000007 " " y[1] (analytic) = 1.140208926182572 " " y[1] (numeric) = 1.1402089261825878 " " absolute error = 1.576516694967722300000000000000E-14 " " relative error = 1.3826559841501257000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9439893545955133 " " Order of pole = 4.4367431074463255 " " x[1] = -0.936400000000007 " " y[1] (analytic) = 1.140452469499266 " " y[1] (numeric) = 1.1404524694992817 " " absolute error = 1.576516694967722300000000000000E-14 " " relative error = 1.3823607183383255000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9438885548780046 " " Order of pole = 4.436743107446755 " " x[1] = -0.936300000000007 " " y[1] (analytic) = 1.1406960908538715 " " y[1] (numeric) = 1.1406960908538872 " " absolute error = 1.576516694967722300000000000000E-14 " " relative error = 1.3820654840568586000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.943787755160482 " " Order of pole = 4.436743107446745 " " x[1] = -0.936200000000007 " " y[1] (analytic) = 1.1409397902797327 " " y[1] (numeric) = 1.1409397902797485 " " absolute error = 1.576516694967722300000000000000E-14 " " relative error = 1.381770281305726200000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9436869554429399 " " Order of pole = 4.436743107446109 " " x[1] = -0.936100000000007 " " y[1] (analytic) = 1.1411835678102116 " " y[1] (numeric) = 1.1411835678102276 " " absolute error = 1.598721155460225400000000000000E-14 " " relative error = 1.4009325060016167000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9435861557254335 " " Order of pole = 4.43674310744661 " " x[1] = -0.936000000000007 " " y[1] (analytic) = 1.1414274234786883 " " y[1] (numeric) = 1.1414274234787043 " " absolute error = 1.598721155460225400000000000000E-14 " " relative error = 1.4006332094141027000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9434853560079052 " " Order of pole = 4.436743107446418 " " x[1] = -0.9359000000000071 " " y[1] (analytic) = 1.1416713573185604 " " y[1] (numeric) = 1.1416713573185762 " " absolute error = 1.576516694967722300000000000000E-14 " " relative error = 1.3808848622343312000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.943384556290385 " " Order of pole = 4.436743107446482 " " x[1] = -0.9358000000000071 " " y[1] (analytic) = 1.1419153693632431 " " y[1] (numeric) = 1.1419153693632589 " " absolute error = 1.576516694967722300000000000000E-14 " " relative error = 1.3805897856045340000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.94328375657286 " " Order of pole = 4.436743107446393 " " x[1] = -0.9357000000000071 " " y[1] (analytic) = 1.1421594596461697 " " y[1] (numeric) = 1.1421594596461857 " " absolute error = 1.598721155460225400000000000000E-14 " " relative error = 1.3997355114981003000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.943182956855343 " " Order of pole = 4.43674310744656 " " x[1] = -0.9356000000000071 " " y[1] (analytic) = 1.142403628200792 " " y[1] (numeric) = 1.1424036282008079 " " absolute error = 1.576516694967722300000000000000E-14 " " relative error = 1.3799997269359418000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9430821571378268 " " Order of pole = 4.436743107446752 " " x[1] = -0.9355000000000071 " " y[1] (analytic) = 1.1426478750605786 " " y[1] (numeric) = 1.1426478750605946 " " absolute error = 1.598721155460225400000000000000E-14 " " relative error = 1.3991372060928810000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9429813574202957 " " Order of pole = 4.436743107446464 " " x[1] = -0.9354000000000071 " " y[1] (analytic) = 1.142892200259017 " " y[1] (numeric) = 1.1428922002590327 " " absolute error = 1.576516694967722300000000000000E-14 " " relative error = 1.379409794388685000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.942880557702775 " " Order of pole = 4.43674310744651 " " x[1] = -0.9353000000000071 " " y[1] (analytic) = 1.1431366038296114 " " y[1] (numeric) = 1.1431366038296273 " " absolute error = 1.598721155460225400000000000000E-14 " " relative error = 1.398539028585354000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9427797579852549 " " Order of pole = 4.436743107446581 " " x[1] = -0.9352000000000071 " " y[1] (analytic) = 1.143381085805885 " " y[1] (numeric) = 1.143381085805901 " " absolute error = 1.598721155460225400000000000000E-14 " " relative error = 1.3982399877932253000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9426789582677285 " " Order of pole = 4.43674310744645 " " x[1] = -0.9351000000000071 " " y[1] (analytic) = 1.1436256462213787 " " y[1] (numeric) = 1.1436256462213947 " " absolute error = 1.598721155460225400000000000000E-14 " " relative error = 1.3979409789755196000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9425781585502071 " " Order of pole = 4.436743107446478 " " x[1] = -0.9350000000000072 " " y[1] (analytic) = 1.1438702851096512 " " y[1] (numeric) = 1.143870285109667 " " absolute error = 1.576516694967722300000000000000E-14 " " relative error = 1.378230307658177800000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9424773588326897 " " Order of pole = 4.436743107446624 " " x[1] = -0.9349000000000072 " " y[1] (analytic) = 1.1441150025042786 " " y[1] (numeric) = 1.1441150025042945 " " absolute error = 1.598721155460225400000000000000E-14 " " relative error = 1.3973430572633774000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9423765591151703 " " Order of pole = 4.436743107446713 " " x[1] = -0.9348000000000072 " " y[1] (analytic) = 1.144359798438856 " " y[1] (numeric) = 1.144359798438872 " " absolute error = 1.598721155460225400000000000000E-14 " " relative error = 1.397044144368941000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9422757593976461 " " Order of pole = 4.436743107446649 " " x[1] = -0.9347000000000072 " " y[1] (analytic) = 1.1446046729469956 " " y[1] (numeric) = 1.1446046729470118 " " absolute error = 1.620925615952728500000000000000E-14 " " relative error = 1.416144503219052000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.942174959680125 " " Order of pole = 4.436743107446688 " " x[1] = -0.9346000000000072 " " y[1] (analytic) = 1.1448496260623284 " " y[1] (numeric) = 1.1448496260623446 " " absolute error = 1.620925615952728500000000000000E-14 " " relative error = 1.4158415035936617000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9420741599625984 " " Order of pole = 4.436743107446542 " " x[1] = -0.9345000000000072 " " y[1] (analytic) = 1.1450946578185024 " " y[1] (numeric) = 1.1450946578185188 " " absolute error = 1.643130076445231700000000000000E-14 " " relative error = 1.434929475241398000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.94197336024508 " " Order of pole = 4.436743107446667 " " x[1] = -0.9344000000000072 " " y[1] (analytic) = 1.1453397682491848 " " y[1] (numeric) = 1.145339768249201 " " absolute error = 1.620925615952728500000000000000E-14 " " relative error = 1.4152356015984188000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9418725605275596 " " Order of pole = 4.436743107446723 " " x[1] = -0.9343000000000072 " " y[1] (analytic) = 1.1455849573880597 " " y[1] (numeric) = 1.1455849573880759 " " absolute error = 1.620925615952728500000000000000E-14 " " relative error = 1.4149326992285657000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9417717608100338 " " Order of pole = 4.436743107446613 " " x[1] = -0.9342000000000072 " " y[1] (analytic) = 1.1458302252688295 " " y[1] (numeric) = 1.145830225268846 " " absolute error = 1.643130076445231700000000000000E-14 " " relative error = 1.4340083200892420000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9416709610925174 " " Order of pole = 4.4367431074467945 " " x[1] = -0.9341000000000073 " " y[1] (analytic) = 1.1460755719252154 " " y[1] (numeric) = 1.1460755719252318 " " absolute error = 1.643130076445231700000000000000E-14 " " relative error = 1.4337013340970595000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9415701613749975 " " Order of pole = 4.436743107446862 " " x[1] = -0.9340000000000073 " " y[1] (analytic) = 1.1463209973909556 " " y[1] (numeric) = 1.146320997390972 " " absolute error = 1.643130076445231700000000000000E-14 " " relative error = 1.4333943809674787000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9414693616574603 " " Order of pole = 4.436743107446393 " " x[1] = -0.9339000000000073 " " y[1] (analytic) = 1.1465665016998072 " " y[1] (numeric) = 1.1465665016998237 " " absolute error = 1.643130076445231700000000000000E-14 " " relative error = 1.4330874607004995000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9413685619399451 " " Order of pole = 4.436743107446613 " " x[1] = -0.9338000000000073 " " y[1] (analytic) = 1.1468120848855448 " " y[1] (numeric) = 1.1468120848855612 " " absolute error = 1.643130076445231700000000000000E-14 " " relative error = 1.4327805732961219000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9412677622224133 " " Order of pole = 4.436743107446308 " " x[1] = -0.9337000000000073 " " y[1] (analytic) = 1.1470577469819614 " " y[1] (numeric) = 1.1470577469819778 " " absolute error = 1.643130076445231700000000000000E-14 " " relative error = 1.4324737187543457000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9411669625048906 " " Order of pole = 4.43674310744629 " " x[1] = -0.9336000000000073 " " y[1] (analytic) = 1.1473034880228679 " " y[1] (numeric) = 1.1473034880228845 " " absolute error = 1.665334536937734800000000000000E-14 " " relative error = 1.4515205037924034000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9410661627873752 " " Order of pole = 4.436743107446507 " " x[1] = -0.9335000000000073 " " y[1] (analytic) = 1.1475493080420935 " " y[1] (numeric) = 1.1475493080421102 " " absolute error = 1.665334536937734800000000000000E-14 " " relative error = 1.4512095691810117000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9409653630698529 " " Order of pole = 4.436743107446503 " " x[1] = -0.9334000000000073 " " y[1] (analytic) = 1.1477952070734858 " " y[1] (numeric) = 1.1477952070735022 " " absolute error = 1.643130076445231700000000000000E-14 " " relative error = 1.4315533523046264000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9408645633523238 " " Order of pole = 4.436743107446283 " " x[1] = -0.9333000000000073 " " y[1] (analytic) = 1.1480411851509096 " " y[1] (numeric) = 1.1480411851509262 " " absolute error = 1.665334536937734800000000000000E-14 " " relative error = 1.4505877998783007000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9407637636348066 " " Order of pole = 4.436743107446446 " " x[1] = -0.9332000000000074 " " y[1] (analytic) = 1.1482872423082489 " " y[1] (numeric) = 1.1482872423082653 " " absolute error = 1.643130076445231700000000000000E-14 " " relative error = 1.430939938984488000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9406629639172881 " " Order of pole = 4.43674310744656 " " x[1] = -0.9331000000000074 " " y[1] (analytic) = 1.1485333785794047 " " y[1] (numeric) = 1.1485333785794214 " " absolute error = 1.665334536937734800000000000000E-14 " " relative error = 1.4499661638023528000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9405621641997544 " " Order of pole = 4.436743107446194 " " x[1] = -0.9330000000000074 " " y[1] (analytic) = 1.1487795939982979 " " y[1] (numeric) = 1.1487795939983143 " " absolute error = 1.643130076445231700000000000000E-14 " " relative error = 1.4303266571147558000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9404613644822407 " " Order of pole = 4.436743107446464 " " x[1] = -0.9329000000000074 " " y[1] (analytic) = 1.1490258885988656 " " y[1] (numeric) = 1.149025888598882 " " absolute error = 1.643130076445231700000000000000E-14 " " relative error = 1.4300200654737918000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9403605647647122 " " Order of pole = 4.4367431074462615 " " x[1] = -0.9328000000000074 " " y[1] (analytic) = 1.1492722624150644 " " y[1] (numeric) = 1.1492722624150808 " " absolute error = 1.643130076445231700000000000000E-14 " " relative error = 1.4297135066954295000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9402597650471909 " " Order of pole = 4.436743107446297 " " x[1] = -0.9327000000000074 " " y[1] (analytic) = 1.1495187154808688 " " y[1] (numeric) = 1.1495187154808852 " " absolute error = 1.643130076445231700000000000000E-14 " " relative error = 1.4294069807796686000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9401589653296822 " " Order of pole = 4.436743107446723 " " x[1] = -0.9326000000000074 " " y[1] (analytic) = 1.1497652478302711 " " y[1] (numeric) = 1.1497652478302878 " " absolute error = 1.665334536937734800000000000000E-14 " " relative error = 1.4484126564795705000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9400581656121606 " " Order of pole = 4.436743107446745 " " x[1] = -0.9325000000000074 " " y[1] (analytic) = 1.1500118594972826 " " y[1] (numeric) = 1.1500118594972992 " " absolute error = 1.665334536937734800000000000000E-14 " " relative error = 1.4481020549350865000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9399573658946336 " " Order of pole = 4.436743107446588 " " x[1] = -0.9324000000000074 " " y[1] (analytic) = 1.1502585505159324 " " y[1] (numeric) = 1.1502585505159488 " " absolute error = 1.643130076445231700000000000000E-14 " " relative error = 1.4284876002079955000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9398565661771162 " " Order of pole = 4.436743107446741 " " x[1] = -0.9323000000000075 " " y[1] (analytic) = 1.1505053209202676 " " y[1] (numeric) = 1.150505320920284 " " absolute error = 1.643130076445231700000000000000E-14 " " relative error = 1.4281812057426407000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9397557664595836 " " Order of pole = 4.436743107446410 " " x[1] = -0.9322000000000075 " " y[1] (analytic) = 1.1507521707443538 " " y[1] (numeric) = 1.1507521707443704 " " absolute error = 1.665334536937734800000000000000E-14 " " relative error = 1.4471704501417781000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9396549667420603 " " Order of pole = 4.436743107446375 " " x[1] = -0.9321000000000075 " " y[1] (analytic) = 1.1509991000222752 " " y[1] (numeric) = 1.1509991000222919 " " absolute error = 1.665334536937734800000000000000E-14 " " relative error = 1.4468599818240568000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9395541670245431 " " Order of pole = 4.436743107446535 " " x[1] = -0.9320000000000075 " " y[1] (analytic) = 1.1512461087881338 " " y[1] (numeric) = 1.1512461087881505 " " absolute error = 1.665334536937734800000000000000E-14 " " relative error = 1.4465495468130263000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.939453367307024 " " Order of pole = 4.436743107446635 " " x[1] = -0.9319000000000075 " " y[1] (analytic) = 1.15149319707605 " " y[1] (numeric) = 1.1514931970760667 " " absolute error = 1.665334536937734800000000000000E-14 " " relative error = 1.4462391451086865000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9393525675895019 " " Order of pole = 4.436743107446638 " " x[1] = -0.9318000000000075 " " y[1] (analytic) = 1.151740364920163 " " y[1] (numeric) = 1.1517403649201794 " " absolute error = 1.643130076445231700000000000000E-14 " " relative error = 1.42664972635489000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.939251767871979 " " Order of pole = 4.436743107446617 " " x[1] = -0.9317000000000075 " " y[1] (analytic) = 1.1519876123546293 " " y[1] (numeric) = 1.1519876123546458 " " absolute error = 1.643130076445231700000000000000E-14 " " relative error = 1.4263435290651447000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9391509681544559 " " Order of pole = 4.436743107446588 " " x[1] = -0.9316000000000075 " " y[1] (analytic) = 1.1522349394136246 " " y[1] (numeric) = 1.1522349394136413 " " absolute error = 1.665334536937734800000000000000E-14 " " relative error = 1.4453081398358117000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9390501684369293 " " Order of pole = 4.43674310744645 " " x[1] = -0.9315000000000075 " " y[1] (analytic) = 1.152482346131343 " " y[1] (numeric) = 1.1524823461313596 " " absolute error = 1.665334536937734800000000000000E-14 " " relative error = 1.4449978713582348000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9389493687194024 " " Order of pole = 4.436743107446300 " " x[1] = -0.9314000000000076 " " y[1] (analytic) = 1.1527298325419963 " " y[1] (numeric) = 1.152729832542013 " " absolute error = 1.665334536937734800000000000000E-14 " " relative error = 1.4446876361873487000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9388485690018891 " " Order of pole = 4.436743107446581 " " x[1] = -0.9313000000000076 " " y[1] (analytic) = 1.1529773986798153 " " y[1] (numeric) = 1.152977398679832 " " absolute error = 1.665334536937734800000000000000E-14 " " relative error = 1.4443774343231533000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9387477692843639 " " Order of pole = 4.436743107446485 " " x[1] = -0.9312000000000076 " " y[1] (analytic) = 1.1532250445790486 " " y[1] (numeric) = 1.1532250445790653 " " absolute error = 1.665334536937734800000000000000E-14 " " relative error = 1.4440672657656484000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.938646969566847 " " Order of pole = 4.436743107446656 " " x[1] = -0.9311000000000076 " " y[1] (analytic) = 1.1534727702739638 " " y[1] (numeric) = 1.1534727702739804 " " absolute error = 1.665334536937734800000000000000E-14 " " relative error = 1.4437571305148345000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9385461698493227 " " Order of pole = 4.436743107446592 " " x[1] = -0.9310000000000076 " " y[1] (analytic) = 1.153720575798846 " " y[1] (numeric) = 1.153720575798863 " " absolute error = 1.68753899743023800000000000000E-14 " " relative error = 1.4626929889516546000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9384453701317942 " " Order of pole = 4.4367431074463894 " " x[1] = -0.9309000000000076 " " y[1] (analytic) = 1.1539684611880001 " " y[1] (numeric) = 1.153968461188017 " " absolute error = 1.68753899743023800000000000000E-14 " " relative error = 1.462378786065722800000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9383445704142748 " " Order of pole = 4.436743107446478 " " x[1] = -0.9308000000000076 " " y[1] (analytic) = 1.1542164264757484 " " y[1] (numeric) = 1.1542164264757653 " " absolute error = 1.68753899743023800000000000000E-14 " " relative error = 1.4620646169305712000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9382437706967468 " " Order of pole = 4.436743107446286 " " x[1] = -0.9307000000000076 " " y[1] (analytic) = 1.1544644716964316 " " y[1] (numeric) = 1.1544644716964485 " " absolute error = 1.68753899743023800000000000000E-14 " " relative error = 1.4617504815461996000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9381429709792257 " " Order of pole = 4.436743107446329 " " x[1] = -0.9306000000000076 " " y[1] (analytic) = 1.1547125968844094 " " y[1] (numeric) = 1.1547125968844263 " " absolute error = 1.68753899743023800000000000000E-14 " " relative error = 1.461436379912608200000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9380421712617113 " " Order of pole = 4.436743107446581 " " x[1] = -0.9305000000000077 " " y[1] (analytic) = 1.1549608020740594 " " y[1] (numeric) = 1.1549608020740765 " " absolute error = 1.70974345792274100000000000000E-14 " " relative error = 1.480347605609136000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9379413715441833 " " Order of pole = 4.436743107446393 " " x[1] = -0.9304000000000077 " " y[1] (analytic) = 1.1552090872997784 " " y[1] (numeric) = 1.1552090872997955 " " absolute error = 1.70974345792274100000000000000E-14 " " relative error = 1.4800294394490512000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9378405718266664 " " Order of pole = 4.436743107446556 " " x[1] = -0.9303000000000077 " " y[1] (analytic) = 1.1554574525959813 " " y[1] (numeric) = 1.1554574525959982 " " absolute error = 1.68753899743023800000000000000E-14 " " relative error = 1.4604942775165128000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9377397721091462 " " Order of pole = 4.436743107446617 " " x[1] = -0.9302000000000077 " " y[1] (analytic) = 1.1557058979971009 " " y[1] (numeric) = 1.155705897997118 " " absolute error = 1.70974345792274100000000000000E-14 " " relative error = 1.4793932097134888000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.937638972391619 " " Order of pole = 4.436743107446464 " " x[1] = -0.9301000000000077 " " y[1] (analytic) = 1.1559544235375896 " " y[1] (numeric) = 1.1559544235376067 " " absolute error = 1.70974345792274100000000000000E-14 " " relative error = 1.4790751461380114000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9375381726741034 " " Order of pole = 4.436743107446674 " " x[1] = -0.9300000000000077 " " y[1] (analytic) = 1.1562030292519174 " " y[1] (numeric) = 1.1562030292519345 " " absolute error = 1.70974345792274100000000000000E-14 " " relative error = 1.4787571167574032000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9374373729565714 " " Order of pole = 4.436743107446361 " " x[1] = -0.9299000000000077 " " y[1] (analytic) = 1.1564517151745737 " " y[1] (numeric) = 1.1564517151745908 " " absolute error = 1.70974345792274100000000000000E-14 " " relative error = 1.4784391215716640000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9373365732390548 " " Order of pole = 4.436743107446539 " " x[1] = -0.9298000000000077 " " y[1] (analytic) = 1.1567004813400656 " " y[1] (numeric) = 1.1567004813400827 " " absolute error = 1.70974345792274100000000000000E-14 " " relative error = 1.4781211605807942000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9372357735215392 " " Order of pole = 4.436743107446748 " " x[1] = -0.9297000000000077 " " y[1] (analytic) = 1.1569493277829193 " " y[1] (numeric) = 1.1569493277829364 " " absolute error = 1.70974345792274100000000000000E-14 " " relative error = 1.4778032337847935000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9371349738040093 " " Order of pole = 4.4367431074465 " " x[1] = -0.9296000000000078 " " y[1] (analytic) = 1.157198254537679 " " y[1] (numeric) = 1.1571982545376964 " " absolute error = 1.731947918415244200000000000000E-14 " " relative error = 1.4966734624977357000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9370341740864871 " " Order of pole = 4.436743107446507 " " x[1] = -0.9295000000000078 " " y[1] (analytic) = 1.1574472616389087 " " y[1] (numeric) = 1.157447261638926 " " absolute error = 1.731947918415244200000000000000E-14 " " relative error = 1.496351476060223000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9369333743689596 " " Order of pole = 4.436743107446343 " " x[1] = -0.9294000000000078 " " y[1] (analytic) = 1.1576963491211896 " " y[1] (numeric) = 1.157696349121207 " " absolute error = 1.731947918415244200000000000000E-14 " " relative error = 1.496029524261669000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9368325746514434 " " Order of pole = 4.436743107446528 " " x[1] = -0.9293000000000078 " " y[1] (analytic) = 1.1579455170191222 " " y[1] (numeric) = 1.1579455170191395 " " absolute error = 1.731947918415244200000000000000E-14 " " relative error = 1.4957076071020730000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9367317749339201 " " Order of pole = 4.436743107446496 " " x[1] = -0.9292000000000078 " " y[1] (analytic) = 1.1581947653673257 " " y[1] (numeric) = 1.158194765367343 " " absolute error = 1.731947918415244200000000000000E-14 " " relative error = 1.4953857245814356000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9366309752163969 " " Order of pole = 4.436743107446457 " " x[1] = -0.9291000000000078 " " y[1] (analytic) = 1.1584440942004375 " " y[1] (numeric) = 1.1584440942004548 " " absolute error = 1.731947918415244200000000000000E-14 " " relative error = 1.4950638766997568000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.936530175498873 " " Order of pole = 4.436743107446404 " " x[1] = -0.9290000000000078 " " y[1] (analytic) = 1.158693503553114 " " y[1] (numeric) = 1.1586935035531314 " " absolute error = 1.731947918415244200000000000000E-14 " " relative error = 1.494742063457036000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.936429375781354 " " Order of pole = 4.43674310744651 " " x[1] = -0.9289000000000078 " " y[1] (analytic) = 1.1589429934600304 " " y[1] (numeric) = 1.1589429934600477 " " absolute error = 1.731947918415244200000000000000E-14 " " relative error = 1.4944202848532737000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9363285760638224 " " Order of pole = 4.436743107446205 " " x[1] = -0.9288000000000078 " " y[1] (analytic) = 1.1591925639558798 " " y[1] (numeric) = 1.1591925639558973 " " absolute error = 1.754152378907747300000000000000E-14 " " relative error = 1.5132536503870397000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9362277763463163 " " Order of pole = 4.43674310744672 " " x[1] = -0.9287000000000079 " " y[1] (analytic) = 1.159442215075375 " " y[1] (numeric) = 1.1594422150753925 " " absolute error = 1.754152378907747300000000000000E-14 " " relative error = 1.5129278165826580000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9361269766287824 " " Order of pole = 4.43674310744635 " " x[1] = -0.9286000000000079 " " y[1] (analytic) = 1.1596919468532467 " " y[1] (numeric) = 1.1596919468532643 " " absolute error = 1.754152378907747300000000000000E-14 " " relative error = 1.512602017861323000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9360261769112727 " " Order of pole = 4.436743107446748 " " x[1] = -0.9285000000000079 " " y[1] (analytic) = 1.1599417593242445 " " y[1] (numeric) = 1.1599417593242622 " " absolute error = 1.776356839400250500000000000000E-14 " " relative error = 1.5314189916182650000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.935925377193751 " " Order of pole = 4.43674310744677 " " x[1] = -0.9284000000000079 " " y[1] (analytic) = 1.1601916525231373 " " y[1] (numeric) = 1.1601916525231548 " " absolute error = 1.754152378907747300000000000000E-14 " " relative error = 1.5119505256677968000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9358245774762224 " " Order of pole = 4.43674310744656 " " x[1] = -0.9283000000000079 " " y[1] (analytic) = 1.1604416264847117 " " y[1] (numeric) = 1.1604416264847293 " " absolute error = 1.754152378907747300000000000000E-14 " " relative error = 1.5116248321956052000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9357237777587061 " " Order of pole = 4.436743107446752 " " x[1] = -0.9282000000000079 " " y[1] (analytic) = 1.1606916812437738 " " y[1] (numeric) = 1.1606916812437913 " " absolute error = 1.754152378907747300000000000000E-14 " " relative error = 1.511299173806461000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9356229780411789 " " Order of pole = 4.436743107446588 " " x[1] = -0.9281000000000079 " " y[1] (analytic) = 1.1609418168351482 " " y[1] (numeric) = 1.1609418168351657 " " absolute error = 1.754152378907747300000000000000E-14 " " relative error = 1.510973550500364000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9355221783236509 " " Order of pole = 4.436743107446404 " " x[1] = -0.9280000000000079 " " y[1] (analytic) = 1.161192033293678 " " y[1] (numeric) = 1.1611920332936958 " " absolute error = 1.776356839400250500000000000000E-14 " " relative error = 1.5297700883820914000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9354213786061469 " " Order of pole = 4.436743107446986 " " x[1] = -0.9279000000000079 " " y[1] (analytic) = 1.161442330654226 " " y[1] (numeric) = 1.1614423306542438 " " absolute error = 1.776356839400250500000000000000E-14 " " relative error = 1.5294404143162670000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9353205788886146 " " Order of pole = 4.436743107446663 " " x[1] = -0.927800000000008 " " y[1] (analytic) = 1.1616927089516729 " " y[1] (numeric) = 1.1616927089516906 " " absolute error = 1.776356839400250500000000000000E-14 " " relative error = 1.5291107757775796000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9352197791710886 " " Order of pole = 4.436743107446539 " " x[1] = -0.927700000000008 " " y[1] (analytic) = 1.161943168220918 " " y[1] (numeric) = 1.161943168220936 " " absolute error = 1.798561299892753600000000000000E-14 " " relative error = 1.5478909374256045000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9351189794535605 " " Order of pole = 4.436743107446354 " " x[1] = -0.927600000000008 " " y[1] (analytic) = 1.1621937084968805 " " y[1] (numeric) = 1.1621937084968985 " " absolute error = 1.798561299892753600000000000000E-14 " " relative error = 1.5475572503476354000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9350181797360408 " " Order of pole = 4.436743107446436 " " x[1] = -0.927500000000008 " " y[1] (analytic) = 1.1624443298144975 " " y[1] (numeric) = 1.1624443298145155 " " absolute error = 1.798561299892753600000000000000E-14 " " relative error = 1.5472235992408923000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9349173800185235 " " Order of pole = 4.4367431074465955 " " x[1] = -0.927400000000008 " " y[1] (analytic) = 1.1626950322087253 " " y[1] (numeric) = 1.1626950322087433 " " absolute error = 1.798561299892753600000000000000E-14 " " relative error = 1.546889984105375100000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9348165803010058 " " Order of pole = 4.436743107446734 " " x[1] = -0.927300000000008 " " y[1] (analytic) = 1.1629458157145387 " " y[1] (numeric) = 1.162945815714557 " " absolute error = 1.820765760385256700000000000000E-14 " " relative error = 1.565649693890974000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9347157805834767 " " Order of pole = 4.436743107446514 " " x[1] = -0.927200000000008 " " y[1] (analytic) = 1.163196680366932 " " y[1] (numeric) = 1.1631966803669502 " " absolute error = 1.820765760385256700000000000000E-14 " " relative error = 1.5653120328807107000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9346149808659584 " " Order of pole = 4.436743107446642 " " x[1] = -0.927100000000008 " " y[1] (analytic) = 1.1634476262009181 " " y[1] (numeric) = 1.1634476262009363 " " absolute error = 1.820765760385256700000000000000E-14 " " relative error = 1.5649744082857625000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9345141811484344 " " Order of pole = 4.436743107446578 " " x[1] = -0.927000000000008 " " y[1] (analytic) = 1.1636986532515283 " " y[1] (numeric) = 1.1636986532515468 " " absolute error = 1.8429702208777599000000000000E-14 " " relative error = 1.5837177569366923000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9344133814309141 " " Order of pole = 4.436743107446642 " " x[1] = -0.926900000000008 " " y[1] (analytic) = 1.1639497615538135 " " y[1] (numeric) = 1.163949761553832 " " absolute error = 1.8429702208777599000000000000E-14 " " relative error = 1.5833760886874437000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9343125817134024 " " Order of pole = 4.436743107446972 " " x[1] = -0.9268000000000081 " " y[1] (analytic) = 1.1642009511428433 " " y[1] (numeric) = 1.1642009511428615 " " absolute error = 1.820765760385256700000000000000E-14 " " relative error = 1.563961752992809000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9342117819958692 " " Order of pole = 4.436743107446624 " " x[1] = -0.9267000000000081 " " y[1] (analytic) = 1.1644522220537057 " " y[1] (numeric) = 1.164452222053724 " " absolute error = 1.820765760385256700000000000000E-14 " " relative error = 1.5636242740591216000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9341109822783442 " " Order of pole = 4.436743107446535 " " x[1] = -0.9266000000000081 " " y[1] (analytic) = 1.1647035743215084 " " y[1] (numeric) = 1.1647035743215266 " " absolute error = 1.820765760385256700000000000000E-14 " " relative error = 1.5632868315407494000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9340101825608227 " " Order of pole = 4.436743107446553 " " x[1] = -0.9265000000000081 " " y[1] (analytic) = 1.1649550079813775 " " y[1] (numeric) = 1.164955007981396 " " absolute error = 1.8429702208777599000000000000E-14 " " relative error = 1.5820097842844938000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9339093828432987 " " Order of pole = 4.4367431074465 " " x[1] = -0.9264000000000081 " " y[1] (analytic) = 1.1652065230684587 " " y[1] (numeric) = 1.165206523068477 " " absolute error = 1.820765760385256700000000000000E-14 " " relative error = 1.5626120557499510000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9338085831257734 " " Order of pole = 4.4367431074464 " " x[1] = -0.9263000000000081 " " y[1] (analytic) = 1.1654581196179157 " " y[1] (numeric) = 1.165458119617934 " " absolute error = 1.8429702208777599000000000000E-14 " " relative error = 1.5813268532394456000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9337077834082508 " " Order of pole = 4.436743107446393 " " x[1] = -0.9262000000000081 " " y[1] (analytic) = 1.1657097976649324 " " y[1] (numeric) = 1.1657097976649506 " " absolute error = 1.820765760385256700000000000000E-14 " " relative error = 1.5619374256204127000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9336069836907307 " " Order of pole = 4.436743107446453 " " x[1] = -0.9261000000000081 " " y[1] (analytic) = 1.1659615572447102 " " y[1] (numeric) = 1.1659615572447286 " " absolute error = 1.8429702208777599000000000000E-14 " " relative error = 1.5806440696320145000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9335061839732117 " " Order of pole = 4.43674310744656 " " x[1] = -0.9260000000000081 " " y[1] (analytic) = 1.166213398392471 " " y[1] (numeric) = 1.1662133983924894 " " absolute error = 1.8429702208777599000000000000E-14 " " relative error = 1.5803027331174058000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9334053842556922 " " Order of pole = 4.436743107446649 " " x[1] = -0.9259000000000082 " " y[1] (analytic) = 1.1664653211434546 " " y[1] (numeric) = 1.1664653211434732 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 1.598997113383433000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9333045845381732 " " Order of pole = 4.436743107446748 " " x[1] = -0.9258000000000082 " " y[1] (analytic) = 1.1667173255329206 " " y[1] (numeric) = 1.1667173255329393 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 1.5986517389876836000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9332037848206514 " " Order of pole = 4.436743107446759 " " x[1] = -0.9257000000000082 " " y[1] (analytic) = 1.1669694115961473 " " y[1] (numeric) = 1.166969411596166 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 1.598306401895428000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9331029851031303 " " Order of pole = 4.4367431074467945 " " x[1] = -0.9256000000000082 " " y[1] (analytic) = 1.1672215793684322 " " y[1] (numeric) = 1.1672215793684508 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 1.5979611021066660000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9330021853856013 " " Order of pole = 4.436743107446578 " " x[1] = -0.9255000000000082 " " y[1] (analytic) = 1.1674738288850914 " " y[1] (numeric) = 1.16747382888511 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 1.5976158396213974000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9329013856680778 " " Order of pole = 4.436743107446535 " " x[1] = -0.9254000000000082 " " y[1] (analytic) = 1.1677261601814608 " " y[1] (numeric) = 1.1677261601814795 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 1.5972706144396226000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9328005859505536 " " Order of pole = 4.436743107446471 " " x[1] = -0.9253000000000082 " " y[1] (analytic) = 1.1679785732928947 " " y[1] (numeric) = 1.1679785732929135 " " absolute error = 1.88737914186276600000000000000E-14 " " relative error = 1.6159364435442147000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9326997862330367 " " Order of pole = 4.436743107446645 " " x[1] = -0.9252000000000082 " " y[1] (analytic) = 1.1682310682547672 " " y[1] (numeric) = 1.168231068254786 " " absolute error = 1.88737914186276600000000000000E-14 " " relative error = 1.615587184034013000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9325989865155196 " " Order of pole = 4.436743107446809 " " x[1] = -0.9251000000000082 " " y[1] (analytic) = 1.168483645102471 " " y[1] (numeric) = 1.1684836451024898 " " absolute error = 1.88737914186276600000000000000E-14 " " relative error = 1.6152379622713942000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9324981867979862 " " Order of pole = 4.436743107446443 " " x[1] = -0.9250000000000083 " " y[1] (analytic) = 1.168736303871418 " " y[1] (numeric) = 1.168736303871437 " " absolute error = 1.88737914186276600000000000000E-14 " " relative error = 1.6148887782563584000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9323973870804653 " " Order of pole = 4.436743107446489 " " x[1] = -0.9249000000000083 " " y[1] (analytic) = 1.16898904459704 " " y[1] (numeric) = 1.1689890445970585 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 1.5955450480831530000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9322965873629467 " " Order of pole = 4.436743107446603 " " x[1] = -0.9248000000000083 " " y[1] (analytic) = 1.169241867314786 " " y[1] (numeric) = 1.169241867314805 " " absolute error = 1.909583602355269200000000000000E-14 " " relative error = 1.6331810002157293000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9321957876454279 " " Order of pole = 4.436743107446710 " " x[1] = -0.9247000000000083 " " y[1] (analytic) = 1.1694947720601268 " " y[1] (numeric) = 1.1694947720601456 " " absolute error = 1.88737914186276600000000000000E-14 " " relative error = 1.613841452696747000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9320949879278935 " " Order of pole = 4.436743107446322 " " x[1] = -0.9246000000000083 " " y[1] (analytic) = 1.1697477588685503 " " y[1] (numeric) = 1.1697477588685692 " " absolute error = 1.88737914186276600000000000000E-14 " " relative error = 1.6134924196720424000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9319941882103806 " " Order of pole = 4.436743107446617 " " x[1] = -0.9245000000000083 " " y[1] (analytic) = 1.1700008277755645 " " y[1] (numeric) = 1.1700008277755836 " " absolute error = 1.909583602355269200000000000000E-14 " " relative error = 1.6321215823289786000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9318933884928577 " " Order of pole = 4.4367431074465955 " " x[1] = -0.9244000000000083 " " y[1] (analytic) = 1.1702539788166966 " " y[1] (numeric) = 1.1702539788167157 " " absolute error = 1.909583602355269200000000000000E-14 " " relative error = 1.6317685194167394000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9317925887753304 " " Order of pole = 4.436743107446436 " " x[1] = -0.9243000000000083 " " y[1] (analytic) = 1.1705072120274929 " " y[1] (numeric) = 1.170507212027512 " " absolute error = 1.909583602355269200000000000000E-14 " " relative error = 1.631415494696172000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9316917890578073 " " Order of pole = 4.436743107446404 " " x[1] = -0.9242000000000083 " " y[1] (analytic) = 1.1707605274435187 " " y[1] (numeric) = 1.1707605274435378 " " absolute error = 1.909583602355269200000000000000E-14 " " relative error = 1.6310625081672767000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9315909893402846 " " Order of pole = 4.4367431074463894 " " x[1] = -0.9241000000000084 " " y[1] (analytic) = 1.171013925100359 " " y[1] (numeric) = 1.171013925100378 " " absolute error = 1.88737914186276600000000000000E-14 " " relative error = 1.6117478207622615000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9314901896227659 " " Order of pole = 4.436743107446496 " " x[1] = -0.9240000000000084 " " y[1] (analytic) = 1.1712674050336176 " " y[1] (numeric) = 1.1712674050336365 " " absolute error = 1.88737914186276600000000000000E-14 " " relative error = 1.6113990142230541000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9313893899052462 " " Order of pole = 4.436743107446581 " " x[1] = -0.9239000000000084 " " y[1] (analytic) = 1.171520967278918 " " y[1] (numeric) = 1.1715209672789366 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 1.592096713132235800000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9312885901877277 " " Order of pole = 4.4367431074466985 " " x[1] = -0.9238000000000084 " " y[1] (analytic) = 1.1717746118719023 " " y[1] (numeric) = 1.171774611871921 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 1.5917520848063593000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9311877904701963 " " Order of pole = 4.4367431074464 " " x[1] = -0.9237000000000084 " " y[1] (analytic) = 1.1720283388482329 " " y[1] (numeric) = 1.1720283388482515 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 1.5914074937839762000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9310869907526753 " " Order of pole = 4.436743107446443 " " x[1] = -0.9236000000000084 " " y[1] (analytic) = 1.1722821482435906 " " y[1] (numeric) = 1.1722821482436092 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 1.5910629400650866000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9309861910351533 " " Order of pole = 4.43674310744645 " " x[1] = -0.9235000000000084 " " y[1] (analytic) = 1.172536040093676 " " y[1] (numeric) = 1.1725360400936946 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 1.5907184236496907000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9308853913176295 " " Order of pole = 4.4367431074463966 " " x[1] = -0.9234000000000084 " " y[1] (analytic) = 1.172790014434209 " " y[1] (numeric) = 1.1727900144342276 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 1.5903739445377887000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9307845916001098 " " Order of pole = 4.436743107446478 " " x[1] = -0.9233000000000084 " " y[1] (analytic) = 1.1730440713009287 " " y[1] (numeric) = 1.1730440713009473 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 1.59002950272937980000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.930683791882596 " " Order of pole = 4.436743107446752 " " x[1] = -0.9232000000000085 " " y[1] (analytic) = 1.1732982107295935 " " y[1] (numeric) = 1.1732982107296122 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 1.5896850982244650000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9305829921650699 " " Order of pole = 4.436743107446624 " " x[1] = -0.9231000000000085 " " y[1] (analytic) = 1.1735524327559816 " " y[1] (numeric) = 1.173552432756 " " absolute error = 1.8429702208777599000000000000E-14 " " relative error = 1.570420008034674000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9304821924475432 " " Order of pole = 4.436743107446478 " " x[1] = -0.9230000000000085 " " y[1] (analytic) = 1.1738067374158898 " " y[1] (numeric) = 1.1738067374159085 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 1.588996401125116000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9303813927300304 " " Order of pole = 4.43674310744678 " " x[1] = -0.9229000000000085 " " y[1] (analytic) = 1.1740611247451351 " " y[1] (numeric) = 1.1740611247451538 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 1.588652108530682000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9302805930124964 " " Order of pole = 4.4367431074464 " " x[1] = -0.9228000000000085 " " y[1] (analytic) = 1.1743155947795536 " " y[1] (numeric) = 1.1743155947795723 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 1.5883078532397416000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9301797932949735 " " Order of pole = 4.436743107446375 " " x[1] = -0.9227000000000085 " " y[1] (analytic) = 1.1745701475550008 " " y[1] (numeric) = 1.1745701475550194 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 1.5879636352522944000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9300789935774587 " " Order of pole = 4.436743107446617 " " x[1] = -0.9226000000000085 " " y[1] (analytic) = 1.1748247831073513 " " y[1] (numeric) = 1.17482478310737 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 1.5876194545683414000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9299781938599267 " " Order of pole = 4.436743107446304 " " x[1] = -0.9225000000000085 " " y[1] (analytic) = 1.1750795014724997 " " y[1] (numeric) = 1.1750795014725184 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 1.5872753111878818000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9298773941424187 " " Order of pole = 4.436743107446755 " " x[1] = -0.9224000000000085 " " y[1] (analytic) = 1.1753343026863599 " " y[1] (numeric) = 1.1753343026863785 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 1.5869312051109158000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.929776594424881 " " Order of pole = 4.436743107446258 " " x[1] = -0.9223000000000086 " " y[1] (analytic) = 1.1755891867848651 " " y[1] (numeric) = 1.1755891867848838 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 1.5865871363374434000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9296757947073687 " " Order of pole = 4.436743107446578 " " x[1] = -0.9222000000000086 " " y[1] (analytic) = 1.1758441538039681 " " y[1] (numeric) = 1.1758441538039868 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 1.5862431048674647000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9295749949898423 " " Order of pole = 4.436743107446443 " " x[1] = -0.9221000000000086 " " y[1] (analytic) = 1.176099203779641 " " y[1] (numeric) = 1.1760992037796598 " " absolute error = 1.88737914186276600000000000000E-14 " " relative error = 1.6047788620188486000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.929474195272325 " " Order of pole = 4.436743107446603 " " x[1] = -0.9220000000000086 " " y[1] (analytic) = 1.176354336747876 " " y[1] (numeric) = 1.1763543367478948 " " absolute error = 1.88737914186276600000000000000E-14 " " relative error = 1.6044308104312976000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9293733955547949 " " Order of pole = 4.436743107446347 " " x[1] = -0.9219000000000086 " " y[1] (analytic) = 1.1766095527446838 " " y[1] (numeric) = 1.176609552744703 " " absolute error = 1.909583602355269200000000000000E-14 " " relative error = 1.6229543589041690000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9292725958372776 " " Order of pole = 4.436743107446503 " " x[1] = -0.9218000000000086 " " y[1] (analytic) = 1.176864851806096 " " y[1] (numeric) = 1.1768648518061149 " " absolute error = 1.88737914186276600000000000000E-14 " " relative error = 1.6037348204989443000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9291717961197611 " " Order of pole = 4.436743107446691 " " x[1] = -0.9217000000000086 " " y[1] (analytic) = 1.1771202339681623 " " y[1] (numeric) = 1.1771202339681814 " " absolute error = 1.909583602355269200000000000000E-14 " " relative error = 1.6222502572383085000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9290709964022323 " " Order of pole = 4.436743107446475 " " x[1] = -0.9216000000000086 " " y[1] (analytic) = 1.177375699266953 " " y[1] (numeric) = 1.1773756992669722 " " absolute error = 1.909583602355269200000000000000E-14 " " relative error = 1.6218982636928866000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9289701966847116 " " Order of pole = 4.4367431074465244 " " x[1] = -0.9215000000000086 " " y[1] (analytic) = 1.177631247738558 " " y[1] (numeric) = 1.1776312477385769 " " absolute error = 1.88737914186276600000000000000E-14 " " relative error = 1.6026911187072856000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.928869396967192 " " Order of pole = 4.43674310744661 " " x[1] = -0.9214000000000087 " " y[1] (analytic) = 1.1778868794190855 " " y[1] (numeric) = 1.1778868794191044 " " absolute error = 1.88737914186276600000000000000E-14 " " relative error = 1.6023432936052318000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9287685972496663 " " Order of pole = 4.436743107446496 " " x[1] = -0.9213000000000087 " " y[1] (analytic) = 1.1781425943446646 " " y[1] (numeric) = 1.1781425943446837 " " absolute error = 1.909583602355269200000000000000E-14 " " relative error = 1.6208425122066525000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9286677975321489 " " Order of pole = 4.436743107446645 " " x[1] = -0.9212000000000087 " " y[1] (analytic) = 1.1783983925514443 " " y[1] (numeric) = 1.178398392551463 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 1.582804841859827000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9285669978146237 " " Order of pole = 4.436743107446550 " " x[1] = -0.9211000000000087 " " y[1] (analytic) = 1.1786542740755914 " " y[1] (numeric) = 1.1786542740756103 " " absolute error = 1.88737914186276600000000000000E-14 " " relative error = 1.6013000447845670000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9284661980971 " " Order of pole = 4.436743107446503 " " x[1] = -0.9210000000000087 " " y[1] (analytic) = 1.1789102389532942 " " y[1] (numeric) = 1.178910238953313 " " absolute error = 1.88737914186276600000000000000E-14 " " relative error = 1.6009523706728446000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9283653983795791 " " Order of pole = 4.436743107446546 " " x[1] = -0.9209000000000087 " " y[1] (analytic) = 1.1791662872207596 " " y[1] (numeric) = 1.1791662872207784 " " absolute error = 1.88737914186276600000000000000E-14 " " relative error = 1.600604734308705100000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9282645986620468 " " Order of pole = 4.436743107446215 " " x[1] = -0.9208000000000087 " " y[1] (analytic) = 1.1794224189142144 " " y[1] (numeric) = 1.1794224189142335 " " absolute error = 1.909583602355269200000000000000E-14 " " relative error = 1.6190836902297032000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9281637989445328 " " Order of pole = 4.436743107446482 " " x[1] = -0.9207000000000087 " " y[1] (analytic) = 1.179678634069906 " " y[1] (numeric) = 1.1796786340699248 " " absolute error = 1.88737914186276600000000000000E-14 " " relative error = 1.5999095748231743000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9280629992270141 " " Order of pole = 4.4367431074465955 " " x[1] = -0.9206000000000087 " " y[1] (analytic) = 1.1799349327240995 " " y[1] (numeric) = 1.1799349327241184 " " absolute error = 1.88737914186276600000000000000E-14 " " relative error = 1.5995620517017833000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9279621995094932 " " Order of pole = 4.436743107446638 " " x[1] = -0.9205000000000088 " " y[1] (analytic) = 1.1801913149130814 " " y[1] (numeric) = 1.1801913149131005 " " absolute error = 1.909583602355269200000000000000E-14 " " relative error = 1.6180288553435984000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9278613997919756 " " Order of pole = 4.436743107446787 " " x[1] = -0.9204000000000088 " " y[1] (analytic) = 1.1804477806731575 " " y[1] (numeric) = 1.1804477806731766 " " absolute error = 1.909583602355269200000000000000E-14 " " relative error = 1.6176773200982406000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9277606000744512 " " Order of pole = 4.43674310744672 " " x[1] = -0.9203000000000088 " " y[1] (analytic) = 1.1807043300406532 " " y[1] (numeric) = 1.180704330040672 " " absolute error = 1.88737914186276600000000000000E-14 " " relative error = 1.5985197088231065000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9276598003569169 " " Order of pole = 4.436743107446329 " " x[1] = -0.9202000000000088 " " y[1] (analytic) = 1.1809609630519131 " " y[1] (numeric) = 1.1809609630519322 " " absolute error = 1.909583602355269200000000000000E-14 " " relative error = 1.6169743641825418000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9275590006394099 " " Order of pole = 4.436743107446820 " " x[1] = -0.9201000000000088 " " y[1] (analytic) = 1.1812176797433025 " " y[1] (numeric) = 1.1812176797433216 " " absolute error = 1.909583602355269200000000000000E-14 " " relative error = 1.6166229435122000000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9274582009218774 " " Order of pole = 4.436743107446478 " " x[1] = -0.9200000000000088 " " y[1] (analytic) = 1.181474480151206 " " y[1] (numeric) = 1.1814744801512251 " " absolute error = 1.909583602355269200000000000000E-14 " " relative error = 1.616271561033531000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9273574012043513 " " Order of pole = 4.436743107446361 " " x[1] = -0.9199000000000088 " " y[1] (analytic) = 1.1817313643120282 " " y[1] (numeric) = 1.181731364312047 " " absolute error = 1.88737914186276600000000000000E-14 " " relative error = 1.5971304467843644000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9272566014868336 " " Order of pole = 4.436743107446507 " " x[1] = -0.9198000000000088 " " y[1] (analytic) = 1.1819883322621927 " " y[1] (numeric) = 1.1819883322622118 " " absolute error = 1.909583602355269200000000000000E-14 " " relative error = 1.6155689106512083000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9271558017693068 " " Order of pole = 4.4367431074463575 " " x[1] = -0.9197000000000088 " " y[1] (analytic) = 1.1822453840381442 " " y[1] (numeric) = 1.1822453840381633 " " absolute error = 1.909583602355269200000000000000E-14 " " relative error = 1.6152176427475550000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9270550020517825 " " Order of pole = 4.4367431074462935 " " x[1] = -0.9196000000000089 " " y[1] (analytic) = 1.1825025196763461 " " y[1] (numeric) = 1.1825025196763652 " " absolute error = 1.909583602355269200000000000000E-14 " " relative error = 1.614866413035574000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9269542023342718 " " Order of pole = 4.436743107446663 " " x[1] = -0.9195000000000089 " " y[1] (analytic) = 1.1827597392132823 " " y[1] (numeric) = 1.1827597392133014 " " absolute error = 1.909583602355269200000000000000E-14 " " relative error = 1.6145152215152647000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9268534026167443 " " Order of pole = 4.436743107446489 " " x[1] = -0.9194000000000089 " " y[1] (analytic) = 1.1830170426854563 " " y[1] (numeric) = 1.1830170426854751 " " absolute error = 1.88737914186276600000000000000E-14 " " relative error = 1.5953947185565504000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9267526028992247 " " Order of pole = 4.436743107446567 " " x[1] = -0.9193000000000089 " " y[1] (analytic) = 1.183274430129391 " " y[1] (numeric) = 1.18327443012941 " " absolute error = 1.909583602355269200000000000000E-14 " " relative error = 1.6138129530496628000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9266518031816997 " " Order of pole = 4.436743107446482 " " x[1] = -0.9192000000000089 " " y[1] (analytic) = 1.1835319015816301 " " y[1] (numeric) = 1.1835319015816492 " " absolute error = 1.909583602355269200000000000000E-14 " " relative error = 1.6134618761043698000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9265510034641781 " " Order of pole = 4.4367431074465 " " x[1] = -0.9191000000000089 " " y[1] (analytic) = 1.1837894570787368 " " y[1] (numeric) = 1.1837894570787557 " " absolute error = 1.88737914186276600000000000000E-14 " " relative error = 1.5943537345908562000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9264502037466492 " " Order of pole = 4.436743107446286 " " x[1] = -0.9190000000000089 " " y[1] (analytic) = 1.1840470966572938 " " y[1] (numeric) = 1.1840470966573127 " " absolute error = 1.88737914186276600000000000000E-14 " " relative error = 1.5940068154307904000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9263494040291278 " " Order of pole = 4.436743107446311 " " x[1] = -0.9189000000000089 " " y[1] (analytic) = 1.184304820353904 " " y[1] (numeric) = 1.1843048203539228 " " absolute error = 1.88737914186276600000000000000E-14 " " relative error = 1.5936599340183075000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9262486043116097 " " Order of pole = 4.436743107446440 " " x[1] = -0.9188000000000089 " " y[1] (analytic) = 1.1845626282051902 " " y[1] (numeric) = 1.184562628205209 " " absolute error = 1.88737914186276600000000000000E-14 " " relative error = 1.5933130903534076000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9261478045940935 " " Order of pole = 4.436743107446635 " " x[1] = -0.918700000000009 " " y[1] (analytic) = 1.1848205202477955 " " y[1] (numeric) = 1.1848205202478144 " " absolute error = 1.88737914186276600000000000000E-14 " " relative error = 1.5929662844360900000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9260470048765624 " " Order of pole = 4.43674310744635 " " x[1] = -0.918600000000009 " " y[1] (analytic) = 1.1850784965183823 " " y[1] (numeric) = 1.1850784965184011 " " absolute error = 1.88737914186276600000000000000E-14 " " relative error = 1.5926195162663556000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.925946205159055 " " Order of pole = 4.43674310744683 " " x[1] = -0.918500000000009 " " y[1] (analytic) = 1.1853365570536332 " " y[1] (numeric) = 1.1853365570536523 " " absolute error = 1.909583602355269200000000000000E-14 " " relative error = 1.611005406854136000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9258454054415235 " " Order of pole = 4.436743107446528 " " x[1] = -0.918400000000009 " " y[1] (analytic) = 1.185594701890251 " " y[1] (numeric) = 1.1855947018902702 " " absolute error = 1.909583602355269200000000000000E-14 " " relative error = 1.6106546354422194000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9257446057240052 " " Order of pole = 4.436743107446652 " " x[1] = -0.918300000000009 " " y[1] (analytic) = 1.1858529310649584 " " y[1] (numeric) = 1.1858529310649775 " " absolute error = 1.909583602355269200000000000000E-14 " " relative error = 1.610303902221975000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.925643806006481 " " Order of pole = 4.436743107446585 " " x[1] = -0.918200000000009 " " y[1] (analytic) = 1.186111244614498 " " y[1] (numeric) = 1.186111244614517 " " absolute error = 1.909583602355269200000000000000E-14 " " relative error = 1.6099532071934025000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.925543006288957 " " Order of pole = 4.4367431074465316 " " x[1] = -0.918100000000009 " " y[1] (analytic) = 1.186369642575632 " " y[1] (numeric) = 1.1863696425756514 " " absolute error = 1.931788062847772400000000000000E-14 " " relative error = 1.6283188590815778000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9254422065714429 " " Order of pole = 4.436743107446787 " " x[1] = -0.918000000000009 " " y[1] (analytic) = 1.1866281249851438 " " y[1] (numeric) = 1.1866281249851631 " " absolute error = 1.931788062847772400000000000000E-14 " " relative error = 1.627964163475358000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.925341406853914 " " Order of pole = 4.436743107446574 " " x[1] = -0.917900000000009 " " y[1] (analytic) = 1.1868866918798355 " " y[1] (numeric) = 1.1868866918798548 " " absolute error = 1.931788062847772400000000000000E-14 " " relative error = 1.6276095065048998000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9252406071363858 " " Order of pole = 4.436743107446382 " " x[1] = -0.917800000000009 " " y[1] (analytic) = 1.18714534329653 " " y[1] (numeric) = 1.1871453432965495 " " absolute error = 1.953992523340275500000000000000E-14 " " relative error = 1.6459589673445732000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9251398074188661 " " Order of pole = 4.436743107446464 " " x[1] = -0.9177000000000091 " " y[1] (analytic) = 1.1874040792720704 " " y[1] (numeric) = 1.1874040792720897 " " absolute error = 1.931788062847772400000000000000E-14 " " relative error = 1.6269003084712674000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9250390077013473 " " Order of pole = 4.436743107446570 " " x[1] = -0.9176000000000091 " " y[1] (analytic) = 1.187662899843319 " " y[1] (numeric) = 1.1876628998433385 " " absolute error = 1.953992523340275500000000000000E-14 " " relative error = 1.6452416957691057000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9249382079838281 " " Order of pole = 4.436743107446667 " " x[1] = -0.9175000000000091 " " y[1] (analytic) = 1.1879218050471592 " " y[1] (numeric) = 1.1879218050471787 " " absolute error = 1.953992523340275500000000000000E-14 " " relative error = 1.6448831186011473000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9248374082663035 " " Order of pole = 4.436743107446592 " " x[1] = -0.9174000000000091 " " y[1] (analytic) = 1.188180794920494 " " y[1] (numeric) = 1.1881807949205134 " " absolute error = 1.931788062847772400000000000000E-14 " " relative error = 1.6258368011890278000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9247366085487787 " " Order of pole = 4.43674310744651 " " x[1] = -0.9173000000000091 " " y[1] (analytic) = 1.1884398695002465 " " y[1] (numeric) = 1.188439869500266 " " absolute error = 1.953992523340275500000000000000E-14 " " relative error = 1.6441660815047826000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9246358088312585 " " Order of pole = 4.436743107446570 " " x[1] = -0.9172000000000091 " " y[1] (analytic) = 1.18869902882336 " " y[1] (numeric) = 1.1886990288233796 " " absolute error = 1.953992523340275500000000000000E-14 " " relative error = 1.6438076215763758000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.924535009113736 " " Order of pole = 4.436743107446567 " " x[1] = -0.9171000000000091 " " y[1] (analytic) = 1.1889582729267982 " " y[1] (numeric) = 1.1889582729268178 " " absolute error = 1.953992523340275500000000000000E-14 " " relative error = 1.6434492007278198000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9244342093962148 " " Order of pole = 4.436743107446592 " " x[1] = -0.9170000000000091 " " y[1] (analytic) = 1.1892176018475447 " " y[1] (numeric) = 1.1892176018475642 " " absolute error = 1.953992523340275500000000000000E-14 " " relative error = 1.6430908189591137000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9243334096786903 " " Order of pole = 4.436743107446521 " " x[1] = -0.9169000000000092 " " y[1] (analytic) = 1.1894770156226029 " " y[1] (numeric) = 1.1894770156226224 " " absolute error = 1.953992523340275500000000000000E-14 " " relative error = 1.6427324762702586000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9242326099611688 " " Order of pole = 4.436743107446542 " " x[1] = -0.9168000000000092 " " y[1] (analytic) = 1.1897365142889973 " " y[1] (numeric) = 1.1897365142890166 " " absolute error = 1.931788062847772400000000000000E-14 " " relative error = 1.6237108297901030000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9241318102436449 " " Order of pole = 4.4367431074464925 " " x[1] = -0.9167000000000092 " " y[1] (analytic) = 1.1899960978837716 " " y[1] (numeric) = 1.189996097883791 " " absolute error = 1.931788062847772400000000000000E-14 " " relative error = 1.6233566364487798000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9240310105261234 " " Order of pole = 4.436743107446514 " " x[1] = -0.9166000000000092 " " y[1] (analytic) = 1.1902557664439903 " " y[1] (numeric) = 1.1902557664440097 " " absolute error = 1.931788062847772400000000000000E-14 " " relative error = 1.623002481743218200000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9239302108086014 " " Order of pole = 4.436743107446521 " " x[1] = -0.9165000000000092 " " y[1] (analytic) = 1.1905155200067383 " " y[1] (numeric) = 1.1905155200067574 " " absolute error = 1.909583602355269200000000000000E-14 " " relative error = 1.6039972350334930000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9238294110910865 " " Order of pole = 4.436743107446755 " " x[1] = -0.9164000000000092 " " y[1] (analytic) = 1.1907753586091199 " " y[1] (numeric) = 1.1907753586091392 " " absolute error = 1.931788062847772400000000000000E-14 " " relative error = 1.622294288239378200000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9237286113735599 " " Order of pole = 4.43674310744661 " " x[1] = -0.9163000000000092 " " y[1] (analytic) = 1.1910352822882606 " " y[1] (numeric) = 1.19103528228828 " " absolute error = 1.931788062847772400000000000000E-14 " " relative error = 1.6219402494411000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9236278116560354 " " Order of pole = 4.436743107446542 " " x[1] = -0.9162000000000092 " " y[1] (analytic) = 1.1912952910813057 " " y[1] (numeric) = 1.191295291081325 " " absolute error = 1.931788062847772400000000000000E-14 " " relative error = 1.621586249278583000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9235270119385115 " " Order of pole = 4.436743107446482 " " x[1] = -0.9161000000000092 " " y[1] (analytic) = 1.1915553850254206 " " y[1] (numeric) = 1.19155538502544 " " absolute error = 1.931788062847772400000000000000E-14 " " relative error = 1.6212322877518276000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9234262122209862 " " Order of pole = 4.436743107446379 " " x[1] = -0.9160000000000093 " " y[1] (analytic) = 1.1918155641577914 " " y[1] (numeric) = 1.1918155641578108 " " absolute error = 1.931788062847772400000000000000E-14 " " relative error = 1.6208783648608333000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9233254125034679 " " Order of pole = 4.436743107446514 " " x[1] = -0.9159000000000093 " " y[1] (analytic) = 1.192075828515624 " " y[1] (numeric) = 1.1920758285156436 " " absolute error = 1.953992523340275500000000000000E-14 " " relative error = 1.6391511987734808000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9232246127859463 " " Order of pole = 4.436743107446521 " " x[1] = -0.9158000000000093 " " y[1] (analytic) = 1.1923361781361455 " " y[1] (numeric) = 1.192336178136165 " " absolute error = 1.953992523340275500000000000000E-14 " " relative error = 1.6387932859629806000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9231238130684136 " " Order of pole = 4.4367431074461905 " " x[1] = -0.9157000000000093 " " y[1] (analytic) = 1.1925966130566021 " " y[1] (numeric) = 1.1925966130566217 " " absolute error = 1.953992523340275500000000000000E-14 " " relative error = 1.638435412232331000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9230230133508992 " " Order of pole = 4.436743107446443 " " x[1] = -0.9156000000000093 " " y[1] (analytic) = 1.1928571333142615 " " y[1] (numeric) = 1.192857133314281 " " absolute error = 1.953992523340275500000000000000E-14 " " relative error = 1.6380775775815315000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9229222136333797 " " Order of pole = 4.4367431074465244 " " x[1] = -0.9155000000000093 " " y[1] (analytic) = 1.1931177389464112 " " y[1] (numeric) = 1.1931177389464305 " " absolute error = 1.931788062847772400000000000000E-14 " " relative error = 1.6191093299422804000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9228214139158607 " " Order of pole = 4.436743107446635 " " x[1] = -0.9154000000000093 " " y[1] (analytic) = 1.1933784299903585 " " y[1] (numeric) = 1.193378429990378 " " absolute error = 1.953992523340275500000000000000E-14 " " relative error = 1.6373620255194843000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9227206141983441 " " Order of pole = 4.436743107446809 " " x[1] = -0.9153000000000093 " " y[1] (analytic) = 1.1936392064834325 " " y[1] (numeric) = 1.1936392064834518 " " absolute error = 1.931788062847772400000000000000E-14 " " relative error = 1.618401986425188000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.922619814480812 " " Order of pole = 4.436743107446489 " " x[1] = -0.9152000000000093 " " y[1] (analytic) = 1.1939000684629812 " " y[1] (numeric) = 1.1939000684630006 " " absolute error = 1.931788062847772400000000000000E-14 " " relative error = 1.618048372620284000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9225190147632908 " " Order of pole = 4.4367431074465244 " " x[1] = -0.9151000000000094 " " y[1] (analytic) = 1.1941610159663743 " " y[1] (numeric) = 1.1941610159663936 " " absolute error = 1.931788062847772400000000000000E-14 " " relative error = 1.6176947974511408000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9224182150457731 " " Order of pole = 4.43674310744667 " " x[1] = -0.9150000000000094 " " y[1] (analytic) = 1.1944220490310007 " " y[1] (numeric) = 1.1944220490310202 " " absolute error = 1.953992523340275500000000000000E-14 " " relative error = 1.6359313903535957000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.922317415328251 " " Order of pole = 4.436743107446667 " " x[1] = -0.9149000000000094 " " y[1] (analytic) = 1.1946831676942709 " " y[1] (numeric) = 1.1946831676942904 " " absolute error = 1.953992523340275500000000000000E-14 " " relative error = 1.6355738292617497000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.922216615610723 " " Order of pole = 4.436743107446485 " " x[1] = -0.9148000000000094 " " y[1] (analytic) = 1.1949443719936148 " " y[1] (numeric) = 1.1949443719936346 " " absolute error = 1.976196983832778600000000000000E-14 " " relative error = 1.6537983107412288000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.922115815893206 " " Order of pole = 4.436743107446652 " " x[1] = -0.9147000000000094 " " y[1] (analytic) = 1.195205661966484 " " y[1] (numeric) = 1.1952056619665035 " " absolute error = 1.953992523340275500000000000000E-14 " " relative error = 1.634858824317609000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9220150161756795 " " Order of pole = 4.436743107446514 " " x[1] = -0.9146000000000094 " " y[1] (analytic) = 1.1954670376503491 " " y[1] (numeric) = 1.1954670376503687 " " absolute error = 1.953992523340275500000000000000E-14 " " relative error = 1.6345013804653144000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9219142164581515 " " Order of pole = 4.4367431074463255 " " x[1] = -0.9145000000000094 " " y[1] (analytic) = 1.1957284990827022 " " y[1] (numeric) = 1.1957284990827217 " " absolute error = 1.953992523340275500000000000000E-14 " " relative error = 1.6341439756928702000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.92181341674063 " " Order of pole = 4.43674310744635 " " x[1] = -0.9144000000000094 " " y[1] (analytic) = 1.1959900463010555 " " y[1] (numeric) = 1.195990046301075 " " absolute error = 1.953992523340275500000000000000E-14 " " relative error = 1.6337866100002765000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9217126170231186 " " Order of pole = 4.4367431074466985 " " x[1] = -0.9143000000000094 " " y[1] (analytic) = 1.1962516793429423 " " y[1] (numeric) = 1.1962516793429616 " " absolute error = 1.931788062847772400000000000000E-14 " " relative error = 1.6148675869854020000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9216118173055869 " " Order of pole = 4.436743107446393 " " x[1] = -0.9142000000000094 " " y[1] (analytic) = 1.1965133982459153 " " y[1] (numeric) = 1.1965133982459348 " " absolute error = 1.953992523340275500000000000000E-14 " " relative error = 1.6330719958546408000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9215110175880635 " " Order of pole = 4.43674310744635 " " x[1] = -0.9141000000000095 " " y[1] (analytic) = 1.196775203047549 " " y[1] (numeric) = 1.1967752030475685 " " absolute error = 1.953992523340275500000000000000E-14 " " relative error = 1.6327147474015985000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9214102178705503 " " Order of pole = 4.436743107446645 " " x[1] = -0.9140000000000095 " " y[1] (analytic) = 1.1970370937854373 " " y[1] (numeric) = 1.197037093785457 " " absolute error = 1.976196983832778600000000000000E-14 " " relative error = 1.6509070555060024000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9213094181530267 " " Order of pole = 4.4367431074465955 " " x[1] = -0.9139000000000095 " " y[1] (analytic) = 1.1972990704971957 " " y[1] (numeric) = 1.1972990704972155 " " absolute error = 1.976196983832778600000000000000E-14 " " relative error = 1.6505458264593276000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.921208618435501 " " Order of pole = 4.436743107446478 " " x[1] = -0.9138000000000095 " " y[1] (analytic) = 1.1975611332204599 " " y[1] (numeric) = 1.1975611332204796 " " absolute error = 1.976196983832778600000000000000E-14 " " relative error = 1.6501846369365922000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9211078187179773 " " Order of pole = 4.436743107446436 " " x[1] = -0.9137000000000095 " " y[1] (analytic) = 1.1978232819928858 " " y[1] (numeric) = 1.1978232819929056 " " absolute error = 1.976196983832778600000000000000E-14 " " relative error = 1.6498234869377967000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9210070190004447 " " Order of pole = 4.436743107446095 " " x[1] = -0.9136000000000095 " " y[1] (analytic) = 1.19808551685215 " " y[1] (numeric) = 1.19808551685217 " " absolute error = 1.998401444325281800000000000000E-14 " " relative error = 1.6679956615917385000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9209062192829355 " " Order of pole = 4.4367431074465244 " " x[1] = -0.9135000000000095 " " y[1] (analytic) = 1.1983478378359504 " " y[1] (numeric) = 1.1983478378359704 " " absolute error = 1.998401444325281800000000000000E-14 " " relative error = 1.6676305336638458000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9208054195654157 " " Order of pole = 4.436743107446603 " " x[1] = -0.9134000000000095 " " y[1] (analytic) = 1.198610244982005 " " y[1] (numeric) = 1.198610244982025 " " absolute error = 1.998401444325281800000000000000E-14 " " relative error = 1.667265445703982000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9207046198478874 " " Order of pole = 4.436743107446404 " " x[1] = -0.9133000000000095 " " y[1] (analytic) = 1.1988727383280526 " " y[1] (numeric) = 1.1988727383280726 " " absolute error = 1.998401444325281800000000000000E-14 " " relative error = 1.666900397712147000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9206038201303631 " " Order of pole = 4.43674310744634 " " x[1] = -0.9132000000000096 " " y[1] (analytic) = 1.1991353179118525 " " y[1] (numeric) = 1.1991353179118724 " " absolute error = 1.998401444325281800000000000000E-14 " " relative error = 1.666535389688341100000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9205030204128515 " " Order of pole = 4.436743107446677 " " x[1] = -0.9131000000000096 " " y[1] (analytic) = 1.1993979837711848 " " y[1] (numeric) = 1.1993979837712045 " " absolute error = 1.976196983832778600000000000000E-14 " " relative error = 1.6476574169477573000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9204022206953199 " " Order of pole = 4.436743107446368 " " x[1] = -0.9130000000000096 " " y[1] (analytic) = 1.1996607359438498 " " y[1] (numeric) = 1.1996607359438698 " " absolute error = 1.998401444325281800000000000000E-14 " " relative error = 1.665805493544816000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9203014209778161 " " Order of pole = 4.436743107446972 " " x[1] = -0.9129000000000096 " " y[1] (analytic) = 1.1999235744676697 " " y[1] (numeric) = 1.1999235744676897 " " absolute error = 1.998401444325281800000000000000E-14 " " relative error = 1.6654406054250964000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9202006212602848 " " Order of pole = 4.436743107446674 " " x[1] = -0.9128000000000096 " " y[1] (analytic) = 1.2001864993804865 " " y[1] (numeric) = 1.2001864993805065 " " absolute error = 1.998401444325281800000000000000E-14 " " relative error = 1.665075757273406000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9200998215427582 " " Order of pole = 4.4367431074465316 " " x[1] = -0.9127000000000096 " " y[1] (analytic) = 1.2004495107201627 " " y[1] (numeric) = 1.200449510720183 " " absolute error = 2.02060590481778500000000000000E-14 " " relative error = 1.683207737412964000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9199990218252384 " " Order of pole = 4.43674310744661 " " x[1] = -0.9126000000000096 " " y[1] (analytic) = 1.2007126085245827 " " y[1] (numeric) = 1.2007126085246027 " " absolute error = 1.998401444325281800000000000000E-14 " " relative error = 1.6643461808741117000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9198982221077162 " " Order of pole = 4.436743107446613 " " x[1] = -0.9125000000000096 " " y[1] (analytic) = 1.2009757928316502 " " y[1] (numeric) = 1.2009757928316704 " " absolute error = 2.02060590481778500000000000000E-14 " " relative error = 1.6824701354334695000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9197974223901931 " " Order of pole = 4.436743107446578 " " x[1] = -0.9124000000000096 " " y[1] (analytic) = 1.2012390636792911 " " y[1] (numeric) = 1.201239063679311 " " absolute error = 1.998401444325281800000000000000E-14 " " relative error = 1.663616764346933000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9196966226726735 " " Order of pole = 4.436743107446663 " " x[1] = -0.9123000000000097 " " y[1] (analytic) = 1.2015024211054508 " " y[1] (numeric) = 1.2015024211054708 " " absolute error = 1.998401444325281800000000000000E-14 " " relative error = 1.6632521160353872000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.919595822955154 " " Order of pole = 4.436743107446752 " " x[1] = -0.9122000000000097 " " y[1] (analytic) = 1.2017658651480962 " " y[1] (numeric) = 1.2017658651481162 " " absolute error = 1.998401444325281800000000000000E-14 " " relative error = 1.66288750769187000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9194950232376381 " " Order of pole = 4.436743107446958 " " x[1] = -0.9121000000000097 " " y[1] (analytic) = 1.2020293958452153 " " y[1] (numeric) = 1.2020293958452353 " " absolute error = 1.998401444325281800000000000000E-14 " " relative error = 1.6625229393163818000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9193942235201034 " " Order of pole = 4.436743107446546 " " x[1] = -0.9120000000000097 " " y[1] (analytic) = 1.202293013234816 " " y[1] (numeric) = 1.2022930132348362 " " absolute error = 2.02060590481778500000000000000E-14 " " relative error = 1.6806268376967995000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9192934238025962 " " Order of pole = 4.436743107447036 " " x[1] = -0.9119000000000097 " " y[1] (analytic) = 1.2025567173549279 " " y[1] (numeric) = 1.202556717354948 " " absolute error = 2.02060590481778500000000000000E-14 " " relative error = 1.6802582993858195000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.919192624085071 " " Order of pole = 4.43674310744694 " " x[1] = -0.9118000000000097 " " y[1] (analytic) = 1.202820508243601 " " y[1] (numeric) = 1.2028205082436212 " " absolute error = 2.02060590481778500000000000000E-14 " " relative error = 1.679889801486958200000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9190918243675403 " " Order of pole = 4.436743107446667 " " x[1] = -0.9117000000000097 " " y[1] (analytic) = 1.2030843859389064 " " y[1] (numeric) = 1.2030843859389266 " " absolute error = 2.02060590481778500000000000000E-14 " " relative error = 1.6795213440002146000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9189910246500166 " " Order of pole = 4.436743107446617 " " x[1] = -0.9116000000000097 " " y[1] (analytic) = 1.2033483504789357 " " y[1] (numeric) = 1.2033483504789562 " " absolute error = 2.04281036531028800000000000000E-14 " " relative error = 1.6976051568918046000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9188902249325038 " " Order of pole = 4.436743107446922 " " x[1] = -0.9115000000000097 " " y[1] (analytic) = 1.2036124019018022 " " y[1] (numeric) = 1.2036124019018226 " " absolute error = 2.04281036531028800000000000000E-14 " " relative error = 1.6972327321341050000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9187894252149694 " " Order of pole = 4.436743107446521 " " x[1] = -0.9114000000000098 " " y[1] (analytic) = 1.203876540245639 " " y[1] (numeric) = 1.2038765402456597 " " absolute error = 2.065014825802791200000000000000E-14 " " relative error = 1.7153044824525324000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9186886254974459 " " Order of pole = 4.436743107446482 " " x[1] = -0.9113000000000098 " " y[1] (analytic) = 1.2041407655486014 " " y[1] (numeric) = 1.2041407655486218 " " absolute error = 2.04281036531028800000000000000E-14 " " relative error = 1.6964880051873274000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.918587825779918 " " Order of pole = 4.4367431074462935 " " x[1] = -0.9112000000000098 " " y[1] (analytic) = 1.2044050778488642 " " y[1] (numeric) = 1.2044050778488848 " " absolute error = 2.065014825802791200000000000000E-14 " " relative error = 1.7145517432482307000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9184870260623992 " " Order of pole = 4.436743107446410 " " x[1] = -0.9111000000000098 " " y[1] (analytic) = 1.2046694771846245 " " y[1] (numeric) = 1.2046694771846451 " " absolute error = 2.065014825802791200000000000000E-14 " " relative error = 1.7141754355965247000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9183862263448803 " " Order of pole = 4.436743107446521 " " x[1] = -0.9110000000000098 " " y[1] (analytic) = 1.2049339635940992 " " y[1] (numeric) = 1.20493396359412 " " absolute error = 2.087219286295294300000000000000E-14 " " relative error = 1.7322271173015144000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9182854266273595 " " Order of pole = 4.436743107446556 " " x[1] = -0.9109000000000098 " " y[1] (analytic) = 1.2051985371155274 " " y[1] (numeric) = 1.205198537115548 " " absolute error = 2.065014825802791200000000000000E-14 " " relative error = 1.713422944194002000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9181846269098374 " " Order of pole = 4.4367431074465635 " " x[1] = -0.9108000000000098 " " y[1] (analytic) = 1.2054631977871677 " " y[1] (numeric) = 1.2054631977871886 " " absolute error = 2.087219286295294300000000000000E-14 " " relative error = 1.73146661808235990000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.918083827192304 " " Order of pole = 4.436743107446201 " " x[1] = -0.9107000000000098 " " y[1] (analytic) = 1.2057279456473016 " " y[1] (numeric) = 1.2057279456473222 " " absolute error = 2.065014825802791200000000000000E-14 " " relative error = 1.7126706179926657000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9179830274747959 " " Order of pole = 4.436743107446656 " " x[1] = -0.9106000000000098 " " y[1] (analytic) = 1.2059927807342294 " " y[1] (numeric) = 1.2059927807342503 " " absolute error = 2.087219286295294300000000000000E-14 " " relative error = 1.7307062858407485000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9178822277572762 " " Order of pole = 4.436743107446741 " " x[1] = -0.9105000000000099 " " y[1] (analytic) = 1.2062577030862747 " " y[1] (numeric) = 1.2062577030862953 " " absolute error = 2.065014825802791200000000000000E-14 " " relative error = 1.7119184569925155000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9177814280397443 " " Order of pole = 4.4367431074464285 " " x[1] = -0.9104000000000099 " " y[1] (analytic) = 1.2065227127417804 " " y[1] (numeric) = 1.206522712741801 " " absolute error = 2.065014825802791200000000000000E-14 " " relative error = 1.711542438442884800000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9176806283222244 " " Order of pole = 4.436743107446503 " " x[1] = -0.9103000000000099 " " y[1] (analytic) = 1.2067878097391112 " " y[1] (numeric) = 1.2067878097391318 " " absolute error = 2.065014825802791200000000000000E-14 " " relative error = 1.711166461193551200000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.917579828604704 " " Order of pole = 4.43674310744656 " " x[1] = -0.9102000000000099 " " y[1] (analytic) = 1.2070529941166526 " " y[1] (numeric) = 1.2070529941166734 " " absolute error = 2.087219286295294300000000000000E-14 " " relative error = 1.729186122290154000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9174790288871736 " " Order of pole = 4.4367431074462935 " " x[1] = -0.9101000000000099 " " y[1] (analytic) = 1.2073182659128119 " " y[1] (numeric) = 1.2073182659128325 " " absolute error = 2.065014825802791200000000000000E-14 " " relative error = 1.7104146305957730000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9173782291696564 " " Order of pole = 4.436743107446453 " " x[1] = -0.9100000000000099 " " y[1] (analytic) = 1.2075836251660166 " " y[1] (numeric) = 1.2075836251660372 " " absolute error = 2.065014825802791200000000000000E-14 " " relative error = 1.7100387772473286000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.917277429452131 " " Order of pole = 4.43674310744635 " " x[1] = -0.9099000000000099 " " y[1] (analytic) = 1.2078490719147157 " " y[1] (numeric) = 1.2078490719147363 " " absolute error = 2.065014825802791200000000000000E-14 " " relative error = 1.7096629651991804000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9171766297346194 " " Order of pole = 4.4367431074466985 " " x[1] = -0.9098000000000099 " " y[1] (analytic) = 1.2081146061973793 " " y[1] (numeric) = 1.2081146061974 " " absolute error = 2.065014825802791200000000000000E-14 " " relative error = 1.7092871944513294000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9170758300170889 " " Order of pole = 4.436743107446421 " " x[1] = -0.90970000000001 " " y[1] (analytic) = 1.2083802280524987 " " y[1] (numeric) = 1.2083802280525195 " " absolute error = 2.087219286295294300000000000000E-14 " " relative error = 1.7272868571005898000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9169750302995752 " " Order of pole = 4.436743107446702 " " x[1] = -0.90960000000001 " " y[1] (analytic) = 1.2086459375185867 " " y[1] (numeric) = 1.2086459375186074 " " absolute error = 2.065014825802791200000000000000E-14 " " relative error = 1.7085357768565163000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9168742305820479 " " Order of pole = 4.436743107446535 " " x[1] = -0.90950000000001 " " y[1] (analytic) = 1.2089117346341764 " " y[1] (numeric) = 1.208911734634197 " " absolute error = 2.065014825802791200000000000000E-14 " " relative error = 1.7081601300095547000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9167734308645238 " " Order of pole = 4.436743107446475 " " x[1] = -0.90940000000001 " " y[1] (analytic) = 1.209177619437823 " " y[1] (numeric) = 1.2091776194378436 " " absolute error = 2.065014825802791200000000000000E-14 " " relative error = 1.7077845244628895000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9166726311469974 " " Order of pole = 4.436743107446333 " " x[1] = -0.90930000000001 " " y[1] (analytic) = 1.2094435919681021 " " y[1] (numeric) = 1.2094435919681228 " " absolute error = 2.065014825802791200000000000000E-14 " " relative error = 1.7074089602165207000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9165718314294807 " " Order of pole = 4.436743107446521 " " x[1] = -0.90920000000001 " " y[1] (analytic) = 1.209709652263611 " " y[1] (numeric) = 1.209709652263632 " " absolute error = 2.087219286295294300000000000000E-14 " " relative error = 1.7253886355206685000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9164710317119602 " " Order of pole = 4.436743107446574 " " x[1] = -0.90910000000001 " " y[1] (analytic) = 1.2099758003629686 " " y[1] (numeric) = 1.2099758003629892 " " absolute error = 2.065014825802791200000000000000E-14 " " relative error = 1.7066579556246728000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9163702319944436 " " Order of pole = 4.436743107446748 " " x[1] = -0.90900000000001 " " y[1] (analytic) = 1.2102420363048139 " " y[1] (numeric) = 1.2102420363048347 " " absolute error = 2.087219286295294300000000000000E-14 " " relative error = 1.7246296390994004000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.916269432276916 " " Order of pole = 4.436743107446578 " " x[1] = -0.90890000000001 " " y[1] (analytic) = 1.2105083601278084 " " y[1] (numeric) = 1.210508360127829 " " absolute error = 2.065014825802791200000000000000E-14 " " relative error = 1.705907116234011000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9161686325593955 " " Order of pole = 4.436743107446631 " " x[1] = -0.90880000000001 " " y[1] (analytic) = 1.2107747718706339 " " y[1] (numeric) = 1.2107747718706545 " " absolute error = 2.065014825802791200000000000000E-14 " " relative error = 1.705531758489125000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9160678328418702 " " Order of pole = 4.436743107446535 " " x[1] = -0.90870000000001 " " y[1] (analytic) = 1.211041271571994 " " y[1] (numeric) = 1.2110412715720147 " " absolute error = 2.065014825802791200000000000000E-14 " " relative error = 1.7051564420445353000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9159670331243426 " " Order of pole = 4.43674310744635 " " x[1] = -0.9086000000000101 " " y[1] (analytic) = 1.2113078592706137 " " y[1] (numeric) = 1.2113078592706343 " " absolute error = 2.065014825802791200000000000000E-14 " " relative error = 1.7047811669002422000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.915866233406818 " " Order of pole = 4.436743107446283 " " x[1] = -0.9085000000000101 " " y[1] (analytic) = 1.211574535005239 " " y[1] (numeric) = 1.2115745350052596 " " absolute error = 2.065014825802791200000000000000E-14 " " relative error = 1.7044059330562455000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.915765433689302 " " Order of pole = 4.436743107446478 " " x[1] = -0.9084000000000101 " " y[1] (analytic) = 1.2118412988146372 " " y[1] (numeric) = 1.2118412988146579 " " absolute error = 2.065014825802791200000000000000E-14 " " relative error = 1.7040307405125454000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9156646339717845 " " Order of pole = 4.436743107446635 " " x[1] = -0.9083000000000101 " " y[1] (analytic) = 1.2121081507375973 " " y[1] (numeric) = 1.212108150737618 " " absolute error = 2.065014825802791200000000000000E-14 " " relative error = 1.703655589269141800000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9155638342542481 " " Order of pole = 4.436743107446170 " " x[1] = -0.9082000000000101 " " y[1] (analytic) = 1.2123750908129292 " " y[1] (numeric) = 1.2123750908129498 " " absolute error = 2.065014825802791200000000000000E-14 " " relative error = 1.703280479326035000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9154630345367295 " " Order of pole = 4.43674310744629 " " x[1] = -0.9081000000000101 " " y[1] (analytic) = 1.2126421190794645 " " y[1] (numeric) = 1.2126421190794852 " " absolute error = 2.065014825802791200000000000000E-14 " " relative error = 1.7029054106832245000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9153622348192214 " " Order of pole = 4.436743107446745 " " x[1] = -0.9080000000000101 " " y[1] (analytic) = 1.2129092355760562 " " y[1] (numeric) = 1.2129092355760769 " " absolute error = 2.065014825802791200000000000000E-14 " " relative error = 1.7025303833407104000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9152614351016904 " " Order of pole = 4.436743107446457 " " x[1] = -0.9079000000000101 " " y[1] (analytic) = 1.2131764403415786 " " y[1] (numeric) = 1.2131764403415992 " " absolute error = 2.065014825802791200000000000000E-14 " " relative error = 1.702155397298493000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9151606353841721 " " Order of pole = 4.436743107446588 " " x[1] = -0.9078000000000102 " " y[1] (analytic) = 1.2134437334149273 " " y[1] (numeric) = 1.213443733414948 " " absolute error = 2.065014825802791200000000000000E-14 " " relative error = 1.7017804525565720000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9150598356666506 " " Order of pole = 4.436743107446613 " " x[1] = -0.9077000000000102 " " y[1] (analytic) = 1.2137111148350193 " " y[1] (numeric) = 1.2137111148350401 " " absolute error = 2.087219286295294300000000000000E-14 " " relative error = 1.7197002324387645000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9149590359491242 " " Order of pole = 4.436743107446475 " " x[1] = -0.9076000000000102 " " y[1] (analytic) = 1.2139785846407936 " " y[1] (numeric) = 1.2139785846408142 " " absolute error = 2.065014825802791200000000000000E-14 " " relative error = 1.7010306869736194000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9148582362316017 " " Order of pole = 4.4367431074464605 " " x[1] = -0.9075000000000102 " " y[1] (analytic) = 1.2142461428712095 " " y[1] (numeric) = 1.2142461428712303 " " absolute error = 2.087219286295294300000000000000E-14 " " relative error = 1.7189424883490675000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9147574365140769 " " Order of pole = 4.436743107446379 " " x[1] = -0.9074000000000102 " " y[1] (analytic) = 1.2145137895652491 " " y[1] (numeric) = 1.21451378956527 " " absolute error = 2.087219286295294300000000000000E-14 " " relative error = 1.718563678920797800000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.914656636796558 " " Order of pole = 4.436743107446482 " " x[1] = -0.9073000000000102 " " y[1] (analytic) = 1.2147815247619154 " " y[1] (numeric) = 1.2147815247619362 " " absolute error = 2.087219286295294300000000000000E-14 " " relative error = 1.7181849112369138000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9145558370790413 " " Order of pole = 4.436743107446667 " " x[1] = -0.9072000000000102 " " y[1] (analytic) = 1.2150493485002325 " " y[1] (numeric) = 1.2150493485002534 " " absolute error = 2.087219286295294300000000000000E-14 " " relative error = 1.7178061852974155000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9144550373615091 " " Order of pole = 4.436743107446336 " " x[1] = -0.9071000000000102 " " y[1] (analytic) = 1.2153172608192464 " " y[1] (numeric) = 1.2153172608192675 " " absolute error = 2.109423746787797400000000000000E-14 " " relative error = 1.7356980064331787000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9143542376439933 " " Order of pole = 4.436743107446546 " " x[1] = -0.9070000000000102 " " y[1] (analytic) = 1.215585261758025 " " y[1] (numeric) = 1.215585261758046 " " absolute error = 2.109423746787797400000000000000E-14 " " relative error = 1.735315335871274000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9142534379264714 " " Order of pole = 4.43674310744656 " " x[1] = -0.9069000000000103 " " y[1] (analytic) = 1.2158533513556569 " " y[1] (numeric) = 1.2158533513556782 " " absolute error = 2.131628207280300600000000000000E-14 " " relative error = 1.753195157050453000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9141526382089531 " " Order of pole = 4.436743107446684 " " x[1] = -0.9068000000000103 " " y[1] (analytic) = 1.2161215296512529 " " y[1] (numeric) = 1.2161215296512744 " " absolute error = 2.153832667772803700000000000000E-14 " " relative error = 1.7710669659721082000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9140518384914259 " " Order of pole = 4.436743107446521 " " x[1] = -0.9067000000000103 " " y[1] (analytic) = 1.2163897966839454 " " y[1] (numeric) = 1.216389796683967 " " absolute error = 2.153832667772803700000000000000E-14 " " relative error = 1.7706763684178073000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9139510387739024 " " Order of pole = 4.436743107446482 " " x[1] = -0.9066000000000103 " " y[1] (analytic) = 1.216658152492888 " " y[1] (numeric) = 1.2166581524929094 " " absolute error = 2.153832667772803700000000000000E-14 " " relative error = 1.7702858139401603000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9138502390563802 " " Order of pole = 4.436743107446478 " " x[1] = -0.9065000000000103 " " y[1] (analytic) = 1.2169265971172558 " " y[1] (numeric) = 1.2169265971172774 " " absolute error = 2.153832667772803700000000000000E-14 " " relative error = 1.7698953025391662000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9137494393388674 " " Order of pole = 4.436743107446787 " " x[1] = -0.9064000000000103 " " y[1] (analytic) = 1.217195130596246 " " y[1] (numeric) = 1.2171951305962676 " " absolute error = 2.153832667772803700000000000000E-14 " " relative error = 1.7695048342148260000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.913648639621332 " " Order of pole = 4.4367431074463575 " " x[1] = -0.9063000000000103 " " y[1] (analytic) = 1.217463752969077 " " y[1] (numeric) = 1.2174637529690988 " " absolute error = 2.176037128265306800000000000000E-14 " " relative error = 1.7873527018430888000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9135478399038139 " " Order of pole = 4.4367431074464925 " " x[1] = -0.9062000000000103 " " y[1] (analytic) = 1.2177324642749896 " " y[1] (numeric) = 1.2177324642750111 " " absolute error = 2.153832667772803700000000000000E-14 " " relative error = 1.768724026796105000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9134470401862913 " " Order of pole = 4.436743107446478 " " x[1] = -0.9061000000000103 " " y[1] (analytic) = 1.218001264553245 " " y[1] (numeric) = 1.2180012645532667 " " absolute error = 2.176037128265306800000000000000E-14 " " relative error = 1.7865639319048354000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9133462404687743 " " Order of pole = 4.436743107446652 " " x[1] = -0.9060000000000104 " " y[1] (analytic) = 1.2182701538431273 " " y[1] (numeric) = 1.2182701538431489 " " absolute error = 2.153832667772803700000000000000E-14 " " relative error = 1.7679433916839973000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9132454407512512 " " Order of pole = 4.436743107446624 " " x[1] = -0.9059000000000104 " " y[1] (analytic) = 1.2185391321839412 " " y[1] (numeric) = 1.218539132183963 " " absolute error = 2.176037128265306800000000000000E-14 " " relative error = 1.785775336049552000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9131446410337316 " " Order of pole = 4.4367431074466985 " " x[1] = -0.9058000000000104 " " y[1] (analytic) = 1.218808199615014 " " y[1] (numeric) = 1.2188081996150357 " " absolute error = 2.176037128265306800000000000000E-14 " " relative error = 1.7853811034030240000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9130438413162136 " " Order of pole = 4.436743107446844 " " x[1] = -0.9057000000000104 " " y[1] (analytic) = 1.2190773561756942 " " y[1] (numeric) = 1.219077356175716 " " absolute error = 2.176037128265306800000000000000E-14 " " relative error = 1.7849869142772387000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9129430415986809 " " Order of pole = 4.436743107446496 " " x[1] = -0.9056000000000104 " " y[1] (analytic) = 1.2193466019053523 " " y[1] (numeric) = 1.219346601905374 " " absolute error = 2.176037128265306800000000000000E-14 " " relative error = 1.7845927686721960000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9128422418811561 " " Order of pole = 4.436743107446414 " " x[1] = -0.9055000000000104 " " y[1] (analytic) = 1.2196159368433803 " " y[1] (numeric) = 1.219615936843402 " " absolute error = 2.176037128265306800000000000000E-14 " " relative error = 1.7841986665878962000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9127414421636333 " " Order of pole = 4.4367431074463894 " " x[1] = -0.9054000000000104 " " y[1] (analytic) = 1.2198853610291922 " " y[1] (numeric) = 1.219885361029214 " " absolute error = 2.176037128265306800000000000000E-14 " " relative error = 1.7838046080243386000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9126406424461125 " " Order of pole = 4.436743107446436 " " x[1] = -0.9053000000000104 " " y[1] (analytic) = 1.2201548745022235 " " y[1] (numeric) = 1.2201548745022452 " " absolute error = 2.176037128265306800000000000000E-14 " " relative error = 1.7834105929815236000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9125398427285977 " " Order of pole = 4.436743107446680 " " x[1] = -0.9052000000000104 " " y[1] (analytic) = 1.2204244773019317 " " y[1] (numeric) = 1.2204244773019535 " " absolute error = 2.176037128265306800000000000000E-14 " " relative error = 1.7830166214594512000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9124390430110815 " " Order of pole = 4.436743107446876 " " x[1] = -0.9051000000000105 " " y[1] (analytic) = 1.2206941694677957 " " y[1] (numeric) = 1.2206941694678177 " " absolute error = 2.1982415887578100000000000000E-14 " " relative error = 1.8008127209423883000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9123382432935523 " " Order of pole = 4.436743107446649 " " x[1] = -0.9050000000000105 " " y[1] (analytic) = 1.2209639510393173 " " y[1] (numeric) = 1.220963951039339 " " absolute error = 2.176037128265306800000000000000E-14 " " relative error = 1.782228808977534000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9122374435760273 " " Order of pole = 4.436743107446556 " " x[1] = -0.9049000000000105 " " y[1] (analytic) = 1.2212338220560186 " " y[1] (numeric) = 1.2212338220560406 " " absolute error = 2.1982415887578100000000000000E-14 " " relative error = 1.800016957487258000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9121366438585018 " " Order of pole = 4.436743107446453 " " x[1] = -0.9048000000000105 " " y[1] (analytic) = 1.2215037825574449 " " y[1] (numeric) = 1.2215037825574668 " " absolute error = 2.1982415887578100000000000000E-14 " " relative error = 1.7996191417069404000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9120358441409849 " " Order of pole = 4.43674310744662 " " x[1] = -0.9047000000000105 " " y[1] (analytic) = 1.2217738325831624 " " y[1] (numeric) = 1.2217738325831842 " " absolute error = 2.176037128265306800000000000000E-14 " " relative error = 1.7810474166602278000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9119350444234638 " " Order of pole = 4.4367431074466595 " " x[1] = -0.9046000000000105 " " y[1] (analytic) = 1.2220439721727594 " " y[1] (numeric) = 1.2220439721727814 " " absolute error = 2.1982415887578100000000000000E-14 " " relative error = 1.7988236420408008000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9118342447059434 " " Order of pole = 4.436743107446723 " " x[1] = -0.9045000000000105 " " y[1] (analytic) = 1.2223142013658466 " " y[1] (numeric) = 1.2223142013658685 " " absolute error = 2.1982415887578100000000000000E-14 " " relative error = 1.7984259581549786000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9117334449884248 " " Order of pole = 4.436743107446840 " " x[1] = -0.9044000000000105 " " y[1] (analytic) = 1.222584520202056 " " y[1] (numeric) = 1.222584520202078 " " absolute error = 2.1982415887578100000000000000E-14 " " relative error = 1.7980283182339882000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9116326452709014 " " Order of pole = 4.436743107446791 " " x[1] = -0.9043000000000105 " " y[1] (analytic) = 1.2228549287210417 " " y[1] (numeric) = 1.2228549287210637 " " absolute error = 2.1982415887578100000000000000E-14 " " relative error = 1.7976307222778296000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.911531845553377 " " Order of pole = 4.436743107446723 " " x[1] = -0.9042000000000106 " " y[1] (analytic) = 1.22312542696248 " " y[1] (numeric) = 1.2231254269625018 " " absolute error = 2.176037128265306800000000000000E-14 " " relative error = 1.779079299879568000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9114310458358552 " " Order of pole = 4.436743107446738 " " x[1] = -0.9041000000000106 " " y[1] (analytic) = 1.2233960149660685 " " y[1] (numeric) = 1.2233960149660905 " " absolute error = 2.1982415887578100000000000000E-14 " " relative error = 1.7968356622600076000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9113302461183321 " " Order of pole = 4.436743107446706 " " x[1] = -0.9040000000000106 " " y[1] (analytic) = 1.2236666927715274 " " y[1] (numeric) = 1.2236666927715496 " " absolute error = 2.22044604925031300000000000000E-14 " " relative error = 1.8145840385841863000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9112294464008034 " " Order of pole = 4.4367431074464925 " " x[1] = -0.9039000000000106 " " y[1] (analytic) = 1.2239374604185989 " " y[1] (numeric) = 1.223937460418621 " " absolute error = 2.22044604925031300000000000000E-14 " " relative error = 1.8141826041429424000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9111286466832824 " " Order of pole = 4.436743107446528 " " x[1] = -0.9038000000000106 " " y[1] (analytic) = 1.2242083179470464 " " y[1] (numeric) = 1.2242083179470686 " " absolute error = 2.22044604925031300000000000000E-14 " " relative error = 1.8137812141106194000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9110278469657642 " " Order of pole = 4.436743107446663 " " x[1] = -0.9037000000000106 " " y[1] (analytic) = 1.224479265396656 " " y[1] (numeric) = 1.2244792653966785 " " absolute error = 2.242650509742816200000000000000E-14 " " relative error = 1.83151366717209000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9109270472482328 " " Order of pole = 4.436743107446365 " " x[1] = -0.9036000000000106 " " y[1] (analytic) = 1.2247503028072362 " " y[1] (numeric) = 1.2247503028072584 " " absolute error = 2.22044604925031300000000000000E-14 " " relative error = 1.8129785672727364000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9108262475307185 " " Order of pole = 4.43674310744662 " " x[1] = -0.9035000000000106 " " y[1] (analytic) = 1.2250214302186162 " " y[1] (numeric) = 1.2250214302186384 " " absolute error = 2.22044604925031300000000000000E-14 " " relative error = 1.8125773104671764000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.910725447813201 " " Order of pole = 4.436743107446773 " " x[1] = -0.9034000000000106 " " y[1] (analytic) = 1.225292647670648 " " y[1] (numeric) = 1.2252926476706705 " " absolute error = 2.242650509742816200000000000000E-14 " " relative error = 1.830297859051242800000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9106246480956669 " " Order of pole = 4.436743107446386 " " x[1] = -0.9033000000000106 " " y[1] (analytic) = 1.2255639552032065 " " y[1] (numeric) = 1.2255639552032287 " " absolute error = 2.22044604925031300000000000000E-14 " " relative error = 1.8117749300828193000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9105238483781493 " " Order of pole = 4.436743107446535 " " x[1] = -0.9032000000000107 " " y[1] (analytic) = 1.225835352856187 " " y[1] (numeric) = 1.2258353528562094 " " absolute error = 2.242650509742816200000000000000E-14 " " relative error = 1.829487544569062800000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9104230486606268 " " Order of pole = 4.4367431074465244 " " x[1] = -0.9031000000000107 " " y[1] (analytic) = 1.2261068406695081 " " y[1] (numeric) = 1.2261068406695306 " " absolute error = 2.242650509742816200000000000000E-14 " " relative error = 1.829082454607488000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9103222489431103 " " Order of pole = 4.436743107446713 " " x[1] = -0.9030000000000107 " " y[1] (analytic) = 1.2263784186831104 " " y[1] (numeric) = 1.2263784186831328 " " absolute error = 2.242650509742816200000000000000E-14 " " relative error = 1.8286774094989233000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9102214492255744 " " Order of pole = 4.436743107446265 " " x[1] = -0.9029000000000107 " " y[1] (analytic) = 1.2266500869369559 " " y[1] (numeric) = 1.2266500869369783 " " absolute error = 2.242650509742816200000000000000E-14 " " relative error = 1.828272409243369000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9101206495080615 " " Order of pole = 4.436743107446567 " " x[1] = -0.9028000000000107 " " y[1] (analytic) = 1.2269218454710293 " " y[1] (numeric) = 1.2269218454710518 " " absolute error = 2.242650509742816200000000000000E-14 " " relative error = 1.8278674538408246000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.910019849790542 " " Order of pole = 4.436743107446656 " " x[1] = -0.9027000000000107 " " y[1] (analytic) = 1.2271936943253374 " " y[1] (numeric) = 1.22719369432536 " " absolute error = 2.264854970235319300000000000000E-14 " " relative error = 1.8455562318387295000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9099190500730183 " " Order of pole = 4.436743107446606 " " x[1] = -0.9026000000000107 " " y[1] (analytic) = 1.2274656335399095 " " y[1] (numeric) = 1.227465633539932 " " absolute error = 2.264854970235319300000000000000E-14 " " relative error = 1.845147357570953000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9098182503554925 " " Order of pole = 4.436743107446489 " " x[1] = -0.9025000000000107 " " y[1] (analytic) = 1.227737663154796 " " y[1] (numeric) = 1.2277376631548187 " " absolute error = 2.264854970235319300000000000000E-14 " " relative error = 1.8447385286002757000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9097174506379662 " " Order of pole = 4.4367431074463575 " " x[1] = -0.9024000000000107 " " y[1] (analytic) = 1.2280097832100707 " " y[1] (numeric) = 1.2280097832100934 " " absolute error = 2.264854970235319300000000000000E-14 " " relative error = 1.844329744926698200000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9096166509204519 " " Order of pole = 4.436743107446613 " " x[1] = -0.9023000000000108 " " y[1] (analytic) = 1.2282819937458291 " " y[1] (numeric) = 1.2282819937458516 " " absolute error = 2.242650509742816200000000000000E-14 " " relative error = 1.825843349623256200000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9095158512029325 " " Order of pole = 4.436743107446713 " " x[1] = -0.9022000000000108 " " y[1] (analytic) = 1.2285542948021884 " " y[1] (numeric) = 1.228554294802211 " " absolute error = 2.264854970235319300000000000000E-14 " " relative error = 1.8435123134708403000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9094150514853985 " " Order of pole = 4.436743107446315 " " x[1] = -0.9021000000000108 " " y[1] (analytic) = 1.228826686419289 " " y[1] (numeric) = 1.2288266864193116 " " absolute error = 2.264854970235319300000000000000E-14 " " relative error = 1.843103665688561000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.909314251767879 " " Order of pole = 4.436743107446407 " " x[1] = -0.9020000000000108 " " y[1] (analytic) = 1.229099168637293 " " y[1] (numeric) = 1.2290991686373156 " " absolute error = 2.264854970235319300000000000000E-14 " " relative error = 1.8426950632033810000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9092134520503634 " " Order of pole = 4.436743107446624 " " x[1] = -0.9019000000000108 " " y[1] (analytic) = 1.2293717414963847 " " y[1] (numeric) = 1.2293717414964074 " " absolute error = 2.264854970235319300000000000000E-14 " " relative error = 1.8422865060153001000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9091126523328376 " " Order of pole = 4.436743107446503 " " x[1] = -0.9018000000000108 " " y[1] (analytic) = 1.2296444050367712 " " y[1] (numeric) = 1.2296444050367938 " " absolute error = 2.264854970235319300000000000000E-14 " " relative error = 1.8418779941243188000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9090118526153154 " " Order of pole = 4.436743107446507 " " x[1] = -0.9017000000000108 " " y[1] (analytic) = 1.229917159298681 " " y[1] (numeric) = 1.229917159298704 " " absolute error = 2.287059430727822500000000000000E-14 " " relative error = 1.8595231503493626000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9089110528977927 " " Order of pole = 4.4367431074465 " " x[1] = -0.9016000000000108 " " y[1] (analytic) = 1.2301900043223661 " " y[1] (numeric) = 1.230190004322389 " " absolute error = 2.287059430727822500000000000000E-14 " " relative error = 1.8591107249222194000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9088102531802689 " " Order of pole = 4.436743107446443 " " x[1] = -0.9015000000000108 " " y[1] (analytic) = 1.2304629401480995 " " y[1] (numeric) = 1.2304629401481226 " " absolute error = 2.309263891220325600000000000000E-14 " " relative error = 1.876743960238559000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9087094534627604 " " Order of pole = 4.436743107446887 " " x[1] = -0.9014000000000109 " " y[1] (analytic) = 1.2307359668161781 " " y[1] (numeric) = 1.230735966816201 " " absolute error = 2.287059430727822500000000000000E-14 " " relative error = 1.858286011291499200000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9086086537452195 " " Order of pole = 4.436743107446272 " " x[1] = -0.9013000000000109 " " y[1] (analytic) = 1.2310090843669192 " " y[1] (numeric) = 1.2310090843669423 " " absolute error = 2.309263891220325600000000000000E-14 " " relative error = 1.875911332049941000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9085078540277088 " " Order of pole = 4.436743107446656 " " x[1] = -0.9012000000000109 " " y[1] (analytic) = 1.2312822928406646 " " y[1] (numeric) = 1.2312822928406877 " " absolute error = 2.309263891220325600000000000000E-14 " " relative error = 1.8754950872335482000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9084070543101834 " " Order of pole = 4.436743107446553 " " x[1] = -0.9011000000000109 " " y[1] (analytic) = 1.2315555922777768 " " y[1] (numeric) = 1.2315555922777999 " " absolute error = 2.309263891220325600000000000000E-14 " " relative error = 1.8750788886024336000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9083062545926626 " " Order of pole = 4.436743107446592 " " x[1] = -0.9010000000000109 " " y[1] (analytic) = 1.2318289827186415 " " y[1] (numeric) = 1.2318289827186646 " " absolute error = 2.309263891220325600000000000000E-14 " " relative error = 1.874662736156596800000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9082054548751365 " " Order of pole = 4.436743107446464 " " x[1] = -0.9009000000000109 " " y[1] (analytic) = 1.2321024642036664 " " y[1] (numeric) = 1.2321024642036897 " " absolute error = 2.331468351712828700000000000000E-14 " " relative error = 1.892268232106577000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9081046551576204 " " Order of pole = 4.436743107446663 " " x[1] = -0.9008000000000109 " " y[1] (analytic) = 1.2323760367732823 " " y[1] (numeric) = 1.2323760367733056 " " absolute error = 2.331468351712828700000000000000E-14 " " relative error = 1.8918481714536486000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9080038554400897 " " Order of pole = 4.436743107446382 " " x[1] = -0.9007000000000109 " " y[1] (analytic) = 1.2326497004679418 " " y[1] (numeric) = 1.2326497004679653 " " absolute error = 2.35367281220533200000000000000E-14 " " relative error = 1.909441758929422100000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9079030557225767 " " Order of pole = 4.436743107446684 " " x[1] = -0.900600000000011 " " y[1] (analytic) = 1.2329234553281203 " " y[1] (numeric) = 1.2329234553281438 " " absolute error = 2.35367281220533200000000000000E-14 " " relative error = 1.909017791845759000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9078022560050529 " " Order of pole = 4.436743107446642 " " x[1] = -0.900500000000011 " " y[1] (analytic) = 1.2331973013943154 " " y[1] (numeric) = 1.233197301394339 " " absolute error = 2.35367281220533200000000000000E-14 " " relative error = 1.908593871835553000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9077014562875217 " " Order of pole = 4.43674310744634 " " x[1] = -0.900400000000011 " " y[1] (analytic) = 1.2334712387070474 " " y[1] (numeric) = 1.233471238707071 " " absolute error = 2.35367281220533200000000000000E-14 " " relative error = 1.908169998898803000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9076006565700073 " " Order of pole = 4.436743107446599 " " x[1] = -0.900300000000011 " " y[1] (analytic) = 1.233745267306859 " " y[1] (numeric) = 1.2337452673068827 " " absolute error = 2.37587727269783500000000000000E-14 " " relative error = 1.9257437784415046000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9074998568524913 " " Order of pole = 4.436743107446802 " " x[1] = -0.900200000000011 " " y[1] (analytic) = 1.2340193872343157 " " y[1] (numeric) = 1.2340193872343395 " " absolute error = 2.37587727269783500000000000000E-14 " " relative error = 1.9253160017385554000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9073990571349617 " " Order of pole = 4.4367431074465635 " " x[1] = -0.900100000000011 " " y[1] (analytic) = 1.234293598530005 " " y[1] (numeric) = 1.234293598530029 " " absolute error = 2.39808173319033800000000000000E-14 " " relative error = 1.942877882577013000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9072982574174387 " " Order of pole = 4.4367431074465316 " " x[1] = -0.900000000000011 " " y[1] (analytic) = 1.2345679012345379 " " y[1] (numeric) = 1.2345679012345616 " " absolute error = 2.37587727269783500000000000000E-14 " " relative error = 1.924460590885293300000000000E-12 "%" h = 1.0000E-4 " " "Finished!" "Maximum Iterations Reached before Solution Completed!" "diff ( y , x , 1 ) = m1 * 2.0 / x / x / x ;" Iterations = 1000 "Total Elapsed Time "= 11 Minutes 50 Seconds "Elapsed Time(since restart) "= 11 Minutes 49 Seconds "Expected Time Remaining "= 23 Minutes 38 Seconds "Optimized Time Remaining "= 23 Minutes 37 Seconds "Time to Timeout "= 3 Minutes 9 Seconds Percent Done = 33.36666666666299 "%" (%o51) true (%o51) diffeq.max