(%i1) batch(diffeq.max) read and interpret file: /home/dennis/mastersource/mine/omnisode/diffeq.max (%i2) load(stringproc) (%o2) /usr/share/maxima/5.27.0/share/stringproc/stringproc.mac (%i3) display_poles() := block([rad_given], if glob_type_given_pole = 4 then (rad_given : sqrt(expt(array_given_rad_poles , 2.0) 1, 2 + expt(array_x - array_given_rad_poles , 2.0)), 1 1, 1 omniout_float(ALWAYS, "Radius of convergence (given) for eq 1 ", 4, rad_given, 4, " "), omniout_float(ALWAYS, "Order of pole (given) ", 4, array_given_ord_poles , 4, " ")) elseif glob_type_given_pole = 3 1, 1 then omniout_str(ALWAYS, "NO POLE (given) for Equation 1") else omniout_str(ALWAYS, "NO INFO (given) for Equation 1"), if array_poles # glob_large_float then (omniout_float(ALWAYS, 1, 1 "Radius of convergence (ratio test) for eq 1 ", 4, array_poles , 4, 1, 1 " "), omniout_str(ALWAYS, "Order of pole (ratio test) Not computed")) else omniout_str(ALWAYS, "NO POLE (ratio test) for Equation 1"), if (array_real_poles > 0.0) and (array_real_poles # glob_large_float) 1, 1 1, 1 then (omniout_float(ALWAYS, "Radius of convergence (three term test) for eq 1 ", 4, array_real_poles , 1, 1 4, " "), omniout_float(ALWAYS, "Order of pole (three term test) ", 4, array_real_poles , 1, 2 4, " ")) else omniout_str(ALWAYS, "NO REAL POLE (three term test) for Equation 1"), if (array_complex_poles > 0.0) and (array_complex_poles # 1, 1 1, 1 glob_large_float) then (omniout_float(ALWAYS, "Radius of convergence (six term test) for eq 1 ", 4, array_complex_poles , 4, " "), omniout_float(ALWAYS, 1, 1 "Order of pole (six term test) ", 4, array_complex_poles , 4, " ")) else omniout_str(ALWAYS, 1, 2 "NO COMPLEX POLE (six term test) for Equation 1")) (%o3) display_poles() := block([rad_given], if glob_type_given_pole = 4 then (rad_given : sqrt(expt(array_given_rad_poles , 2.0) 1, 2 + expt(array_x - array_given_rad_poles , 2.0)), 1 1, 1 omniout_float(ALWAYS, "Radius of convergence (given) for eq 1 ", 4, rad_given, 4, " "), omniout_float(ALWAYS, "Order of pole (given) ", 4, array_given_ord_poles , 4, " ")) elseif glob_type_given_pole = 3 1, 1 then omniout_str(ALWAYS, "NO POLE (given) for Equation 1") else omniout_str(ALWAYS, "NO INFO (given) for Equation 1"), if array_poles # glob_large_float then (omniout_float(ALWAYS, 1, 1 "Radius of convergence (ratio test) for eq 1 ", 4, array_poles , 4, 1, 1 " "), omniout_str(ALWAYS, "Order of pole (ratio test) Not computed")) else omniout_str(ALWAYS, "NO POLE (ratio test) for Equation 1"), if (array_real_poles > 0.0) and (array_real_poles # glob_large_float) 1, 1 1, 1 then (omniout_float(ALWAYS, "Radius of convergence (three term test) for eq 1 ", 4, array_real_poles , 1, 1 4, " "), omniout_float(ALWAYS, "Order of pole (three term test) ", 4, array_real_poles , 1, 2 4, " ")) else omniout_str(ALWAYS, "NO REAL POLE (three term test) for Equation 1"), if (array_complex_poles > 0.0) and (array_complex_poles # 1, 1 1, 1 glob_large_float) then (omniout_float(ALWAYS, "Radius of convergence (six term test) for eq 1 ", 4, array_complex_poles , 4, " "), omniout_float(ALWAYS, 1, 1 "Order of pole (six term test) ", 4, array_complex_poles , 4, " ")) else omniout_str(ALWAYS, 1, 2 "NO COMPLEX POLE (six term test) for Equation 1")) (%i4) check_sign(x0, xf) := block([ret], if xf > x0 then ret : 1.0 else ret : - 1.0, ret) (%o4) check_sign(x0, xf) := block([ret], if xf > x0 then ret : 1.0 else ret : - 1.0, ret) (%i5) est_size_answer() := block([min_size], min_size : glob_large_float, if omniabs(array_y ) < min_size then (min_size : omniabs(array_y ), 1 1 omniout_float(ALWAYS, "min_size", 32, min_size, 32, "")), if min_size < 1.0 then (min_size : 1.0, omniout_float(ALWAYS, "min_size", 32, min_size, 32, "")), min_size) (%o5) est_size_answer() := block([min_size], min_size : glob_large_float, if omniabs(array_y ) < min_size then (min_size : omniabs(array_y ), 1 1 omniout_float(ALWAYS, "min_size", 32, min_size, 32, "")), if min_size < 1.0 then (min_size : 1.0, omniout_float(ALWAYS, "min_size", 32, min_size, 32, "")), min_size) (%i6) test_suggested_h() := block([max_estimated_step_error, hn_div_ho, hn_div_ho_2, hn_div_ho_3, no_terms, est_tmp], max_estimated_step_error : 0.0, no_terms : glob_max_terms, hn_div_ho : 0.5, hn_div_ho_2 : 0.25, hn_div_ho_3 : 0.125, omniout_float(ALWAYS, "hn_div_ho", 32, hn_div_ho, 32, ""), omniout_float(ALWAYS, "hn_div_ho_2", 32, hn_div_ho_2, 32, ""), omniout_float(ALWAYS, "hn_div_ho_3", 32, hn_div_ho_3, 32, ""), est_tmp : omniabs(array_y hn_div_ho_3 + array_y hn_div_ho_2 no_terms no_terms - 1 + array_y hn_div_ho + array_y ), no_terms - 2 no_terms - 3 if est_tmp >= max_estimated_step_error then max_estimated_step_error : est_tmp, omniout_float(ALWAYS, "max_estimated_step_error", 32, max_estimated_step_error, 32, ""), max_estimated_step_error) (%o6) test_suggested_h() := block([max_estimated_step_error, hn_div_ho, hn_div_ho_2, hn_div_ho_3, no_terms, est_tmp], max_estimated_step_error : 0.0, no_terms : glob_max_terms, hn_div_ho : 0.5, hn_div_ho_2 : 0.25, hn_div_ho_3 : 0.125, omniout_float(ALWAYS, "hn_div_ho", 32, hn_div_ho, 32, ""), omniout_float(ALWAYS, "hn_div_ho_2", 32, hn_div_ho_2, 32, ""), omniout_float(ALWAYS, "hn_div_ho_3", 32, hn_div_ho_3, 32, ""), est_tmp : omniabs(array_y hn_div_ho_3 + array_y hn_div_ho_2 no_terms no_terms - 1 + array_y hn_div_ho + array_y ), no_terms - 2 no_terms - 3 if est_tmp >= max_estimated_step_error then max_estimated_step_error : est_tmp, omniout_float(ALWAYS, "max_estimated_step_error", 32, max_estimated_step_error, 32, ""), max_estimated_step_error) (%i7) reached_interval() := block([ret], if glob_check_sign array_x >= glob_check_sign glob_next_display 1 then ret : true else ret : false, return(ret)) (%o7) reached_interval() := block([ret], if glob_check_sign array_x >= glob_check_sign glob_next_display 1 then ret : true else ret : false, return(ret)) (%i8) display_alot(iter) := block([abserr, analytic_val_y, ind_var, numeric_val, relerr, term_no], if reached_interval() then (if iter >= 0 then (ind_var : array_x , 1 omniout_float(ALWAYS, "x[1] ", 33, ind_var, 20, " "), analytic_val_y : exact_soln_y(ind_var), omniout_float(ALWAYS, "y[1] (analytic) ", 33, analytic_val_y, 20, " "), term_no : 1, numeric_val : array_y , term_no abserr : omniabs(numeric_val - analytic_val_y), omniout_float(ALWAYS, "y[1] (numeric) ", 33, numeric_val, 20, " "), if omniabs(analytic_val_y) # 0.0 abserr 100.0 then (relerr : -----------------------, omniabs(analytic_val_y) if relerr > 1.0E-34 then glob_good_digits : 3 - floor(log10(relerr)) else glob_good_digits : 16) else (relerr : - 1.0, glob_good_digits : - 1), 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_int(INFO, "Correct digits ", 32, glob_good_digits, 4, " "), omniout_float(ALWAYS, "h ", 4, glob_h, 20, " ")))) (%o8) display_alot(iter) := block([abserr, analytic_val_y, ind_var, numeric_val, relerr, term_no], if reached_interval() then (if iter >= 0 then (ind_var : array_x , 1 omniout_float(ALWAYS, "x[1] ", 33, ind_var, 20, " "), analytic_val_y : exact_soln_y(ind_var), omniout_float(ALWAYS, "y[1] (analytic) ", 33, analytic_val_y, 20, " "), term_no : 1, numeric_val : array_y , term_no abserr : omniabs(numeric_val - analytic_val_y), omniout_float(ALWAYS, "y[1] (numeric) ", 33, numeric_val, 20, " "), if omniabs(analytic_val_y) # 0.0 abserr 100.0 then (relerr : -----------------------, omniabs(analytic_val_y) if relerr > 1.0E-34 then glob_good_digits : 3 - floor(log10(relerr)) else glob_good_digits : 16) else (relerr : - 1.0, glob_good_digits : - 1), 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_int(INFO, "Correct digits ", 32, glob_good_digits, 4, " "), omniout_float(ALWAYS, "h ", 4, glob_h, 20, " ")))) (%i9) adjust_for_pole(h_param) := (block([hnew, sz2, tmp], hnew : h_param, glob_normmax : glob_small_float, if omniabs(array_y_higher ) > 1, 1 glob_small_float then (tmp : omniabs(array_y_higher ), 1, 1 if tmp < glob_normmax then glob_normmax : tmp), if glob_look_poles and (omniabs(array_pole ) > glob_small_float) 1 array_pole 1 and (array_pole # glob_large_float) then (sz2 : -----------, 1 10.0 if sz2 < hnew then (omniout_float(INFO, "glob_h adjusted to ", 20, h_param, 12, "due to singularity."), omniout_str(INFO, "Reached Optimal"), return(hnew))), 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), return(hnew)) 1 (%o9) adjust_for_pole(h_param) := (block([hnew, sz2, tmp], hnew : h_param, glob_normmax : glob_small_float, if omniabs(array_y_higher ) > 1, 1 glob_small_float then (tmp : omniabs(array_y_higher ), 1, 1 if tmp < glob_normmax then glob_normmax : tmp), if glob_look_poles and (omniabs(array_pole ) > glob_small_float) 1 array_pole 1 and (array_pole # glob_large_float) then (sz2 : -----------, 1 10.0 if sz2 < hnew then (omniout_float(INFO, "glob_h adjusted to ", 20, h_param, 12, "due to singularity."), omniout_str(INFO, "Reached Optimal"), return(hnew))), 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), return(hnew)) 1 (%i10) prog_report(x_start, x_end) := block([clock_sec, opt_clock_sec, clock_sec1, expect_sec, left_sec, percent_done, total_clock_sec], 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)), glob_total_exp_sec : total_clock_sec + glob_optimal_expect_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, "Expected Total Time "), omniout_timestr(convfloat(glob_total_exp_sec))), omniout_str_noeol(INFO, "Time to Timeout "), omniout_timestr(convfloat(left_sec)), omniout_float(INFO, "Percent Done ", 33, percent_done, 4, "%")) (%o10) prog_report(x_start, x_end) := block([clock_sec, opt_clock_sec, clock_sec1, expect_sec, left_sec, percent_done, total_clock_sec], 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)), glob_total_exp_sec : total_clock_sec + glob_optimal_expect_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, "Expected Total Time "), omniout_timestr(convfloat(glob_total_exp_sec))), omniout_str_noeol(INFO, "Time to Timeout "), omniout_timestr(convfloat(left_sec)), omniout_float(INFO, "Percent Done ", 33, percent_done, 4, "%")) (%i11) check_for_pole() := block([cnt, dr1, dr2, ds1, ds2, hdrc, m, n, nr1, nr2, ord_no, rad_c, rcs, rm0, rm1, rm2, rm3, rm4, found_sing, h_new, ratio, term, local_test, tmp_rad, tmp_ratio, prev_tmp_rad], array_pole : glob_large_float, array_pole : glob_large_float, 1 2 tmp_rad : glob_large_float, prev_tmp_rad : glob_large_float, tmp_ratio : glob_large_float, rad_c : glob_large_float, array_poles : glob_large_float, array_poles : glob_large_float, 1, 1 1, 2 found_sing : 1, n : - 10 - 1 + glob_max_terms, cnt : 0, while (cnt < 5) and (found_sing = 1) do (if (omniabs(array_y_higher ) = 1, n 0.0) or (omniabs(array_y_higher ) = 0.0) then found_sing : 0 1, 1 + n array_y_higher glob_h 1, n tmp_rad else (tmp_rad : omniabs(-------------------------), tmp_ratio : ------------, array_y_higher prev_tmp_rad 1, 1 + n if (cnt > 0) and (tmp_ratio < 2.0) and (tmp_ratio > 0.5) then (if tmp_rad < rad_c then rad_c : tmp_rad) elseif cnt = 0 then (if tmp_rad < rad_c then rad_c : tmp_rad) elseif cnt > 0 then found_sing : 0), prev_tmp_rad : tmp_rad, cnt : 1 + cnt, n : 1 + n), if found_sing = 1 then (if rad_c < array_pole 1 then (array_pole : rad_c, array_poles : rad_c)), n : glob_max_terms, 1 1, 1 m : - 1 - 1 + n, while (m >= 10) and ((omniabs(array_y_higher ) = 0.0) 1, m or (omniabs(array_y_higher ) = 0.0) 1, m - 1 or (omniabs(array_y_higher ) = 0.0)) 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) rm0 - convfloat(m - 1) rm1, glob_h if omniabs(hdrc) > 0.0 then (rcs : ------, hdrc rm1 convfloat((m - 2) (m - 2)) - rm0 convfloat(m - 3) ord_no : -----------------------------------------------------, hdrc array_real_poles : rcs, array_real_poles : ord_no) 1, 1 1, 2 else (array_real_poles : glob_large_float, 1, 1 array_real_poles : glob_large_float)) 1, 2 else (array_real_poles : glob_large_float, 1, 1 array_real_poles : glob_large_float), n : - 1 - 1 + glob_max_terms, 1, 2 cnt : 0, while (cnt < 5) and (n >= 10) do (if omniabs(array_y_higher ) # 1, n 0.0 then cnt : 1 + cnt else cnt : 0, n : n - 1), m : cnt + n, if m <= 10 then (rad_c : glob_large_float, ord_no : glob_large_float) 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 (omniabs(nr1 dr2 - nr2 dr1) = 0.0) rm4 rm3 rm2 or (omniabs(dr1) = 0.0) then (rad_c : glob_large_float, ord_no : glob_large_float) else (if omniabs(nr1 dr2 - nr2 dr1) # 0.0 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 omniabs(rcs) # 0.0 then (if rcs > 0.0 then rad_c : sqrt(rcs) omniabs(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_poles : rad_c, 1, 1 array_complex_poles : ord_no), if array_pole glob_ratio_of_radius < 1, 2 1 omniabs(glob_h) then (h_new : array_pole glob_ratio_of_radius, term : 1, 1 ratio : 1.0, while term <= glob_max_terms do (array_y : term array_y ratio, array_y_higher : array_y_higher ratio, term 1, term 1, term ratio h_new array_x : array_x ratio, ratio : ---------------, term : 1 + term), term term omniabs(glob_h) glob_h : h_new), if reached_interval() then display_poles()) (%o11) check_for_pole() := block([cnt, dr1, dr2, ds1, ds2, hdrc, m, n, nr1, nr2, ord_no, rad_c, rcs, rm0, rm1, rm2, rm3, rm4, found_sing, h_new, ratio, term, local_test, tmp_rad, tmp_ratio, prev_tmp_rad], array_pole : glob_large_float, array_pole : glob_large_float, 1 2 tmp_rad : glob_large_float, prev_tmp_rad : glob_large_float, tmp_ratio : glob_large_float, rad_c : glob_large_float, array_poles : glob_large_float, array_poles : glob_large_float, 1, 1 1, 2 found_sing : 1, n : - 10 - 1 + glob_max_terms, cnt : 0, while (cnt < 5) and (found_sing = 1) do (if (omniabs(array_y_higher ) = 1, n 0.0) or (omniabs(array_y_higher ) = 0.0) then found_sing : 0 1, 1 + n array_y_higher glob_h 1, n tmp_rad else (tmp_rad : omniabs(-------------------------), tmp_ratio : ------------, array_y_higher prev_tmp_rad 1, 1 + n if (cnt > 0) and (tmp_ratio < 2.0) and (tmp_ratio > 0.5) then (if tmp_rad < rad_c then rad_c : tmp_rad) elseif cnt = 0 then (if tmp_rad < rad_c then rad_c : tmp_rad) elseif cnt > 0 then found_sing : 0), prev_tmp_rad : tmp_rad, cnt : 1 + cnt, n : 1 + n), if found_sing = 1 then (if rad_c < array_pole 1 then (array_pole : rad_c, array_poles : rad_c)), n : glob_max_terms, 1 1, 1 m : - 1 - 1 + n, while (m >= 10) and ((omniabs(array_y_higher ) = 0.0) 1, m or (omniabs(array_y_higher ) = 0.0) 1, m - 1 or (omniabs(array_y_higher ) = 0.0)) 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) rm0 - convfloat(m - 1) rm1, glob_h if omniabs(hdrc) > 0.0 then (rcs : ------, hdrc rm1 convfloat((m - 2) (m - 2)) - rm0 convfloat(m - 3) ord_no : -----------------------------------------------------, hdrc array_real_poles : rcs, array_real_poles : ord_no) 1, 1 1, 2 else (array_real_poles : glob_large_float, 1, 1 array_real_poles : glob_large_float)) 1, 2 else (array_real_poles : glob_large_float, 1, 1 array_real_poles : glob_large_float), n : - 1 - 1 + glob_max_terms, 1, 2 cnt : 0, while (cnt < 5) and (n >= 10) do (if omniabs(array_y_higher ) # 1, n 0.0 then cnt : 1 + cnt else cnt : 0, n : n - 1), m : cnt + n, if m <= 10 then (rad_c : glob_large_float, ord_no : glob_large_float) 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 (omniabs(nr1 dr2 - nr2 dr1) = 0.0) rm4 rm3 rm2 or (omniabs(dr1) = 0.0) then (rad_c : glob_large_float, ord_no : glob_large_float) else (if omniabs(nr1 dr2 - nr2 dr1) # 0.0 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 omniabs(rcs) # 0.0 then (if rcs > 0.0 then rad_c : sqrt(rcs) omniabs(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_poles : rad_c, 1, 1 array_complex_poles : ord_no), if array_pole glob_ratio_of_radius < 1, 2 1 omniabs(glob_h) then (h_new : array_pole glob_ratio_of_radius, term : 1, 1 ratio : 1.0, while term <= glob_max_terms do (array_y : term array_y ratio, array_y_higher : array_y_higher ratio, term 1, term 1, term ratio h_new array_x : array_x ratio, ratio : ---------------, term : 1 + term), term term omniabs(glob_h) glob_h : h_new), if reached_interval() then display_poles()) (%i12) get_norms() := block([iii], if not glob_initial_pass then (iii : 1, while iii <= glob_max_terms do (array_norms : 0.0, iii iii : 1 + iii), iii : 1, while iii <= glob_max_terms do (if omniabs(array_y ) > array_norms iii iii then array_norms : omniabs(array_y ), iii : 1 + iii))) iii iii (%o12) get_norms() := block([iii], if not glob_initial_pass then (iii : 1, while iii <= glob_max_terms do (array_norms : 0.0, iii iii : 1 + iii), iii : 1, while iii <= glob_max_terms do (if omniabs(array_y ) > array_norms iii iii then array_norms : omniabs(array_y ), iii : 1 + iii))) iii iii (%i13) atomall() := block([kkk, order_d, adj2, adj3, temporary, term, temp, temp2], array_tmp1 : array_const_0D1 array_x , 1 1 1 array_tmp2 : array_const_1D0 + array_tmp1 , 1 1 1 array_tmp3 : array_tmp2 + array_const_0D0 , array_tmp4 : sin(array_x ), 1 1 1 1 1 array_tmp4_g : cos(array_x ), array_tmp5 : array_tmp3 - array_tmp4 , 1 1 1 1 1 if not array_y_set_initial then (if 1 <= glob_max_terms 1, 2 then (temporary : array_tmp5 expt(glob_h, 1) factorial_3(0, 1), 1 array_y : temporary, array_y_higher : temporary, 2 1, 2 temporary 1.0 temporary : -------------, array_y_higher : temporary, 0)), kkk : 2, glob_h 2, 1 array_tmp1 : array_const_0D1 array_x , array_tmp2 : array_tmp1 , 2 1 2 2 2 array_tmp4_g array_x 1 2 array_tmp3 : array_tmp2 , array_tmp4 : ----------------------, 2 2 2 1 - array_tmp4 array_x 1 2 array_tmp4_g : ----------------------, 2 1 array_tmp5 : array_tmp3 - array_tmp4 , 2 2 2 if not array_y_set_initial then (if 2 <= glob_max_terms 1, 3 then (temporary : array_tmp5 expt(glob_h, 1) factorial_3(1, 2), 2 array_y : temporary, array_y_higher : temporary, 3 1, 3 temporary 2.0 temporary : -------------, array_y_higher : temporary, 0)), kkk : 3, glob_h 2, 2 array_tmp4_g array_x - array_tmp4 array_x 2 2 2 2 array_tmp4 : ----------------------, array_tmp4_g : ----------------------, 3 2 3 2 array_tmp5 : - array_tmp4 , if not array_y_set_initial 3 3 1, 4 then (if 3 <= glob_max_terms then (temporary : array_tmp5 expt(glob_h, 1) factorial_3(2, 3), array_y : temporary, 3 4 temporary 3.0 array_y_higher : temporary, temporary : -------------, 1, 4 glob_h array_y_higher : temporary, 0)), kkk : 4, 2, 3 array_tmp4_g array_x - array_tmp4 array_x 3 2 3 2 array_tmp4 : ----------------------, array_tmp4_g : ----------------------, 4 3 4 3 array_tmp5 : - array_tmp4 , if not array_y_set_initial 4 4 1, 5 then (if 4 <= glob_max_terms then (temporary : array_tmp5 expt(glob_h, 1) factorial_3(3, 4), array_y : temporary, 4 5 temporary 4.0 array_y_higher : temporary, temporary : -------------, 1, 5 glob_h array_y_higher : temporary, 0)), kkk : 5, 2, 4 array_tmp4_g array_x - array_tmp4 array_x 4 2 4 2 array_tmp4 : ----------------------, array_tmp4_g : ----------------------, 5 4 5 4 array_tmp5 : - array_tmp4 , if not array_y_set_initial 5 5 1, 6 then (if 5 <= glob_max_terms then (temporary : array_tmp5 expt(glob_h, 1) factorial_3(4, 5), array_y : temporary, 5 6 temporary 5.0 array_y_higher : temporary, temporary : -------------, 1, 6 glob_h array_y_higher : temporary, 0)), kkk : 6, 2, 5 array_tmp4_g array_x kkk - 1 2 while kkk <= glob_max_terms do (array_tmp4 : ----------------------------, kkk kkk - 1 - array_tmp4 array_x kkk - 1 2 array_tmp4_g : ----------------------------, kkk kkk - 1 array_tmp5 : - array_tmp4 , order_d : 1, kkk kkk if order_d + kkk < glob_max_terms then (if not subscript(array_y_set_initial, 1, order_d + kkk) then (temporary : array_tmp5 expt(glob_h, order_d) kkk factorial_3(kkk - 1, - 1 + order_d + kkk), array_y : temporary, order_d + kkk array_y_higher : temporary, term : - 1 + order_d + kkk, 1, order_d + kkk adj2 : - 1 + order_d + kkk, adj3 : 2, while term >= 1 do (if adj3 <= 1 + order_d then (if adj2 > 0 temporary convfp(adj2) then temporary : ---------------------- else temporary : temporary, glob_h array_y_higher : temporary), term : term - 1, adj2 : adj2 - 1, adj3, term adj3 : 1 + adj3))), kkk : 1 + kkk)) (%o13) atomall() := block([kkk, order_d, adj2, adj3, temporary, term, temp, temp2], array_tmp1 : array_const_0D1 array_x , 1 1 1 array_tmp2 : array_const_1D0 + array_tmp1 , 1 1 1 array_tmp3 : array_tmp2 + array_const_0D0 , array_tmp4 : sin(array_x ), 1 1 1 1 1 array_tmp4_g : cos(array_x ), array_tmp5 : array_tmp3 - array_tmp4 , 1 1 1 1 1 if not array_y_set_initial then (if 1 <= glob_max_terms 1, 2 then (temporary : array_tmp5 expt(glob_h, 1) factorial_3(0, 1), 1 array_y : temporary, array_y_higher : temporary, 2 1, 2 temporary 1.0 temporary : -------------, array_y_higher : temporary, 0)), kkk : 2, glob_h 2, 1 array_tmp1 : array_const_0D1 array_x , array_tmp2 : array_tmp1 , 2 1 2 2 2 array_tmp4_g array_x 1 2 array_tmp3 : array_tmp2 , array_tmp4 : ----------------------, 2 2 2 1 - array_tmp4 array_x 1 2 array_tmp4_g : ----------------------, 2 1 array_tmp5 : array_tmp3 - array_tmp4 , 2 2 2 if not array_y_set_initial then (if 2 <= glob_max_terms 1, 3 then (temporary : array_tmp5 expt(glob_h, 1) factorial_3(1, 2), 2 array_y : temporary, array_y_higher : temporary, 3 1, 3 temporary 2.0 temporary : -------------, array_y_higher : temporary, 0)), kkk : 3, glob_h 2, 2 array_tmp4_g array_x - array_tmp4 array_x 2 2 2 2 array_tmp4 : ----------------------, array_tmp4_g : ----------------------, 3 2 3 2 array_tmp5 : - array_tmp4 , if not array_y_set_initial 3 3 1, 4 then (if 3 <= glob_max_terms then (temporary : array_tmp5 expt(glob_h, 1) factorial_3(2, 3), array_y : temporary, 3 4 temporary 3.0 array_y_higher : temporary, temporary : -------------, 1, 4 glob_h array_y_higher : temporary, 0)), kkk : 4, 2, 3 array_tmp4_g array_x - array_tmp4 array_x 3 2 3 2 array_tmp4 : ----------------------, array_tmp4_g : ----------------------, 4 3 4 3 array_tmp5 : - array_tmp4 , if not array_y_set_initial 4 4 1, 5 then (if 4 <= glob_max_terms then (temporary : array_tmp5 expt(glob_h, 1) factorial_3(3, 4), array_y : temporary, 4 5 temporary 4.0 array_y_higher : temporary, temporary : -------------, 1, 5 glob_h array_y_higher : temporary, 0)), kkk : 5, 2, 4 array_tmp4_g array_x - array_tmp4 array_x 4 2 4 2 array_tmp4 : ----------------------, array_tmp4_g : ----------------------, 5 4 5 4 array_tmp5 : - array_tmp4 , if not array_y_set_initial 5 5 1, 6 then (if 5 <= glob_max_terms then (temporary : array_tmp5 expt(glob_h, 1) factorial_3(4, 5), array_y : temporary, 5 6 temporary 5.0 array_y_higher : temporary, temporary : -------------, 1, 6 glob_h array_y_higher : temporary, 0)), kkk : 6, 2, 5 array_tmp4_g array_x kkk - 1 2 while kkk <= glob_max_terms do (array_tmp4 : ----------------------------, kkk kkk - 1 - array_tmp4 array_x kkk - 1 2 array_tmp4_g : ----------------------------, kkk kkk - 1 array_tmp5 : - array_tmp4 , order_d : 1, kkk kkk if order_d + kkk < glob_max_terms then (if not subscript(array_y_set_initial, 1, order_d + kkk) then (temporary : array_tmp5 expt(glob_h, order_d) kkk factorial_3(kkk - 1, - 1 + order_d + kkk), array_y : temporary, order_d + kkk array_y_higher : temporary, term : - 1 + order_d + kkk, 1, order_d + kkk adj2 : - 1 + order_d + kkk, adj3 : 2, while term >= 1 do (if adj3 <= 1 + order_d then (if adj2 > 0 temporary convfp(adj2) then temporary : ---------------------- else temporary : temporary, glob_h array_y_higher : temporary), term : term - 1, adj2 : adj2 - 1, adj3, term adj3 : 1 + adj3))), kkk : 1 + kkk)) log(x) (%i14) log10(x) := --------- log(10.0) log(x) (%o14) log10(x) := --------- log(10.0) (%i15) omniout_str(iolevel, str) := if glob_iolevel >= iolevel then printf(true, "~a~%", string(str)) (%o15) omniout_str(iolevel, str) := if glob_iolevel >= iolevel then printf(true, "~a~%", string(str)) (%i16) omniout_str_noeol(iolevel, str) := if glob_iolevel >= iolevel then printf(true, "~a", string(str)) (%o16) omniout_str_noeol(iolevel, str) := if glob_iolevel >= iolevel then printf(true, "~a", string(str)) (%i17) omniout_labstr(iolevel, label, str) := if glob_iolevel >= iolevel then printf(true, "~a = ~a~%", string(label), string(str)) (%o17) omniout_labstr(iolevel, label, str) := if glob_iolevel >= iolevel then printf(true, "~a = ~a~%", string(label), string(str)) (%i18) 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)) (%o18) 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)) (%i19) omniout_int(iolevel, prelabel, prelen, value, vallen, postlabel) := if glob_iolevel >= iolevel then (printf(true, "~a = ~d ~a~%", prelabel, value, postlabel), newline()) (%o19) omniout_int(iolevel, prelabel, prelen, value, vallen, postlabel) := if glob_iolevel >= iolevel then (printf(true, "~a = ~d ~a~%", prelabel, value, postlabel), newline()) (%i20) omniout_float_arr(iolevel, prelabel, elemnt, prelen, value, vallen, postlabel) := if glob_iolevel >= iolevel then (sprint(prelabel, "[", elemnt, "]=", value, postlabel), newline()) (%o20) omniout_float_arr(iolevel, prelabel, elemnt, prelen, value, vallen, postlabel) := if glob_iolevel >= iolevel then (sprint(prelabel, "[", elemnt, "]=", value, postlabel), newline()) (%i21) dump_series(iolevel, dump_label, series_name, arr_series, numb) := block([i], 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 (%o21) dump_series(iolevel, dump_label, series_name, arr_series, numb) := block([i], 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 (%i22) dump_series_2(iolevel, dump_label, series_name2, arr_series2, numb, subnum, arr_x) := (array_series2, numb, subnum) := block([i, sub, ts_term], 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 (%o22) dump_series_2(iolevel, dump_label, series_name2, arr_series2, numb, subnum, arr_x) := (array_series2, numb, subnum) := block([i, sub, ts_term], 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 (%i23) 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)) (%o23) 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)) (%i24) logitem_time(fd, secs_in) := block([days, days_int, hours, hours_int, minutes, minutes_int, sec_int, seconds, secs, years, years_int], secs : convfloat(secs_in), printf(fd, "~%"), secs if secs >= 0 then (years_int : trunc(----------------), glob_sec_in_year sec_temp : mod(trunc(secs), trunc(glob_sec_in_year)), sec_temp days_int : trunc(---------------), sec_temp : glob_sec_in_day sec_temp mod(sec_temp, trunc(glob_sec_in_day)), hours_int : trunc(----------------), glob_sec_in_hour sec_temp : mod(sec_temp, trunc(glob_sec_in_hour)), sec_temp minutes_int : trunc(------------------), glob_sec_in_minute sec_int : mod(sec_temp, trunc(glob_sec_in_minute)), if 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, "~%")) (%o24) logitem_time(fd, secs_in) := block([days, days_int, hours, hours_int, minutes, minutes_int, sec_int, seconds, secs, years, years_int], secs : convfloat(secs_in), printf(fd, "~%"), secs if secs >= 0 then (years_int : trunc(----------------), glob_sec_in_year sec_temp : mod(trunc(secs), trunc(glob_sec_in_year)), sec_temp days_int : trunc(---------------), sec_temp : glob_sec_in_day sec_temp mod(sec_temp, trunc(glob_sec_in_day)), hours_int : trunc(----------------), glob_sec_in_hour sec_temp : mod(sec_temp, trunc(glob_sec_in_hour)), sec_temp minutes_int : trunc(------------------), glob_sec_in_minute sec_int : mod(sec_temp, trunc(glob_sec_in_minute)), if 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, "~%")) (%i25) omniout_timestr(secs_in) := block([days, days_int, hours, hours_int, minutes, minutes_int, sec_int, seconds, secs, years, years_int], secs : convfloat(secs_in), if secs >= 0 secs then (years_int : trunc(----------------), glob_sec_in_year sec_temp : mod(trunc(secs), trunc(glob_sec_in_year)), sec_temp days_int : trunc(---------------), sec_temp : glob_sec_in_day sec_temp mod(sec_temp, trunc(glob_sec_in_day)), hours_int : trunc(----------------), glob_sec_in_hour sec_temp : mod(sec_temp, trunc(glob_sec_in_hour)), sec_temp minutes_int : trunc(------------------), glob_sec_in_minute sec_int : mod(sec_temp, trunc(glob_sec_in_minute)), if 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~%")) (%o25) omniout_timestr(secs_in) := block([days, days_int, hours, hours_int, minutes, minutes_int, sec_int, seconds, secs, years, years_int], secs : convfloat(secs_in), if secs >= 0 secs then (years_int : trunc(----------------), glob_sec_in_year sec_temp : mod(trunc(secs), trunc(glob_sec_in_year)), sec_temp days_int : trunc(---------------), sec_temp : glob_sec_in_day sec_temp mod(sec_temp, trunc(glob_sec_in_day)), hours_int : trunc(----------------), glob_sec_in_hour sec_temp : mod(sec_temp, trunc(glob_sec_in_hour)), sec_temp minutes_int : trunc(------------------), glob_sec_in_minute sec_int : mod(sec_temp, trunc(glob_sec_in_minute)), if 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~%")) (%i26) ats(mmm_ats, arr_a, arr_b, jjj_ats) := block([iii_ats, lll_ats, ma_ats, ret_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 : arr_a arr_b + ret_ats, iii_ats : 1 + iii_ats)), iii_ats lll_ats ret_ats) (%o26) ats(mmm_ats, arr_a, arr_b, jjj_ats) := block([iii_ats, lll_ats, ma_ats, ret_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 : arr_a arr_b + ret_ats, iii_ats : 1 + iii_ats)), iii_ats lll_ats ret_ats) (%i27) att(mmm_att, arr_aa, arr_bb, jjj_att) := block([al_att, iii_att, lll_att, ma_att, ret_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 : arr_aa arr_bb convfp(al_att) + ret_att, iii_att lll_att ret_att iii_att : 1 + iii_att), ret_att : ---------------), ret_att) convfp(mmm_att) (%o27) att(mmm_att, arr_aa, arr_bb, jjj_att) := block([al_att, iii_att, lll_att, ma_att, ret_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 : arr_aa arr_bb convfp(al_att) + ret_att, iii_att lll_att ret_att iii_att : 1 + iii_att), ret_att : ---------------), ret_att) convfp(mmm_att) (%i28) display_pole_debug(typ, m, radius, order2) := (if typ = 1 then omniout_str(ALWAYS, "Real") else omniout_str(ALWAYS, "Complex"), omniout_int(ALWAYS, "m", 4, m, 4, " "), omniout_float(ALWAYS, "DBG Radius of convergence ", 4, radius, 4, " "), omniout_float(ALWAYS, "DBG Order of pole ", 4, order2, 4, " ")) (%o28) display_pole_debug(typ, m, radius, order2) := (if typ = 1 then omniout_str(ALWAYS, "Real") else omniout_str(ALWAYS, "Complex"), omniout_int(ALWAYS, "m", 4, m, 4, " "), omniout_float(ALWAYS, "DBG Radius of convergence ", 4, radius, 4, " "), omniout_float(ALWAYS, "DBG Order of pole ", 4, order2, 4, " ")) (%i29) logditto(file) := (printf(file, ""), printf(file, "ditto"), printf(file, "")) (%o29) logditto(file) := (printf(file, ""), printf(file, "ditto"), printf(file, "")) (%i30) logitem_integer(file, n) := (printf(file, ""), printf(file, "~d", n), printf(file, "")) (%o30) logitem_integer(file, n) := (printf(file, ""), printf(file, "~d", n), printf(file, "")) (%i31) logitem_str(file, str) := (printf(file, ""), printf(file, str), printf(file, "")) (%o31) logitem_str(file, str) := (printf(file, ""), printf(file, str), printf(file, "")) (%i32) logitem_good_digits(file, rel_error) := block([good_digits], printf(file, ""), if rel_error # - 1.0 then (if rel_error > + 1.0E-34 then (good_digits : 1 - floor(log10(rel_error)), printf(file, "~d", good_digits)) else (good_digits : 16, printf(file, "~d", good_digits))) else printf(file, "Unknown"), printf(file, "")) (%o32) logitem_good_digits(file, rel_error) := block([good_digits], printf(file, ""), if rel_error # - 1.0 then (if rel_error > + 1.0E-34 then (good_digits : 1 - floor(log10(rel_error)), printf(file, "~d", good_digits)) else (good_digits : 16, printf(file, "~d", good_digits))) else printf(file, "Unknown"), printf(file, "")) (%i33) log_revs(file, revs) := printf(file, revs) (%o33) log_revs(file, revs) := printf(file, revs) (%i34) logitem_float(file, x) := (printf(file, ""), printf(file, "~g", x), printf(file, "")) (%o34) logitem_float(file, x) := (printf(file, ""), printf(file, "~g", x), printf(file, "")) (%i35) 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") elseif pole = 4 then printf(file, "Yes") else printf(file, "No"), printf(file, "")) (%o35) 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") elseif pole = 4 then printf(file, "Yes") else printf(file, "No"), printf(file, "")) (%i36) logstart(file) := printf(file, "") (%o36) logstart(file) := printf(file, "") (%i37) logend(file) := printf(file, "~%") (%o37) logend(file) := printf(file, "~%") (%i38) chk_data() := block([errflag], 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()) (%o38) chk_data() := block([errflag], 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()) (%i39) comp_expect_sec(t_end2, t_start2, t2, clock_sec2) := block([ms2, rrr, sec_left, sub1, sub2], ms2 : clock_sec2, sub1 : t_end2 - t_start2, sub2 : t2 - t_start2, if sub1 = 0.0 then sec_left : 0.0 else (if sub2 > 0.0 sub1 then (rrr : ----, sec_left : rrr ms2 - ms2) else sec_left : 0.0), sec_left) sub2 (%o39) comp_expect_sec(t_end2, t_start2, t2, clock_sec2) := block([ms2, rrr, sec_left, sub1, sub2], ms2 : clock_sec2, sub1 : t_end2 - t_start2, sub2 : t2 - t_start2, if sub1 = 0.0 then sec_left : 0.0 else (if sub2 > 0.0 sub1 then (rrr : ----, sec_left : rrr ms2 - ms2) else sec_left : 0.0), sec_left) sub2 (%i40) comp_percent(t_end2, t_start2, t2) := block([rrr, sub1, sub2], sub1 : t_end2 - t_start2, sub2 : t2 - t_start2, 100.0 sub2 if sub2 > glob_small_float then rrr : ---------- else rrr : 0.0, rrr) sub1 (%o40) comp_percent(t_end2, t_start2, t2) := block([rrr, sub1, sub2], sub1 : t_end2 - t_start2, sub2 : t2 - t_start2, 100.0 sub2 if sub2 > glob_small_float then rrr : ---------- else rrr : 0.0, rrr) sub1 (%i41) factorial_2(nnn) := nnn! (%o41) factorial_2(nnn) := nnn! (%i42) factorial_1(nnn) := block([ret], if nnn <= glob_max_terms then (if array_fact_1 = 0 nnn then (ret : factorial_2(nnn), array_fact_1 : ret) nnn else ret : array_fact_1 ) else ret : factorial_2(nnn), ret) nnn (%o42) factorial_1(nnn) := block([ret], if nnn <= glob_max_terms then (if array_fact_1 = 0 nnn then (ret : factorial_2(nnn), array_fact_1 : ret) nnn else ret : array_fact_1 ) else ret : factorial_2(nnn), ret) nnn (%i43) factorial_3(mmm, nnn) := block([ret], if (nnn <= glob_max_terms) and (mmm <= glob_max_terms) factorial_1(mmm) then (if array_fact_2 = 0 then (ret : ----------------, mmm, nnn factorial_1(nnn) array_fact_2 : ret) else ret : array_fact_2 ) mmm, nnn mmm, nnn factorial_2(mmm) else ret : ----------------, ret) factorial_2(nnn) (%o43) factorial_3(mmm, nnn) := block([ret], if (nnn <= glob_max_terms) and (mmm <= glob_max_terms) factorial_1(mmm) then (if array_fact_2 = 0 then (ret : ----------------, mmm, nnn factorial_1(nnn) array_fact_2 : ret) else ret : array_fact_2 ) mmm, nnn mmm, nnn factorial_2(mmm) else ret : ----------------, ret) factorial_2(nnn) (%i44) convfp(mmm) := mmm (%o44) convfp(mmm) := mmm (%i45) convfloat(mmm) := mmm (%o45) convfloat(mmm) := mmm (%i46) elapsed_time_seconds() := block([t], t : elapsed_real_time(), t) (%o46) elapsed_time_seconds() := block([t], t : elapsed_real_time(), t) (%i47) Si(x) := 0.0 (%o47) Si(x) := 0.0 (%i48) Ci(x) := 0.0 (%o48) Ci(x) := 0.0 (%i49) ln(x) := log(x) (%o49) ln(x) := log(x) (%i50) arcsin(x) := asin(x) (%o50) arcsin(x) := asin(x) (%i51) arccos(x) := acos(x) (%o51) arccos(x) := acos(x) (%i52) arctan(x) := atan(x) (%o52) arctan(x) := atan(x) (%i53) omniabs(x) := abs(x) (%o53) omniabs(x) := abs(x) (%i54) expt(x, y) := (if (x <= 0.0) and (y < 0.0) y then print("expt error x = ", x, "y = ", y), x ) (%o54) expt(x, y) := (if (x <= 0.0) and (y < 0.0) y then print("expt error x = ", x, "y = ", y), x ) (%i55) estimated_needed_step_error(x_start, x_end, estimated_h, estimated_answer) := block([desired_abs_gbl_error, range, estimated_steps, step_error], omniout_float(ALWAYS, "glob_desired_digits_correct", 32, glob_desired_digits_correct, 32, ""), desired_abs_gbl_error : expt(10.0, - glob_desired_digits_correct) omniabs(estimated_answer), omniout_float(ALWAYS, "desired_abs_gbl_error", 32, desired_abs_gbl_error, 32, ""), range : x_end - x_start, omniout_float(ALWAYS, "range", 32, range, 32, range ""), estimated_steps : -----------, omniout_float(ALWAYS, "estimated_steps", estimated_h desired_abs_gbl_error 32, estimated_steps, 32, ""), step_error : omniabs(---------------------), estimated_steps omniout_float(ALWAYS, "step_error", 32, step_error, 32, ""), step_error) (%o55) estimated_needed_step_error(x_start, x_end, estimated_h, estimated_answer) := block([desired_abs_gbl_error, range, estimated_steps, step_error], omniout_float(ALWAYS, "glob_desired_digits_correct", 32, glob_desired_digits_correct, 32, ""), desired_abs_gbl_error : expt(10.0, - glob_desired_digits_correct) omniabs(estimated_answer), omniout_float(ALWAYS, "desired_abs_gbl_error", 32, desired_abs_gbl_error, 32, ""), range : x_end - x_start, omniout_float(ALWAYS, "range", 32, range, 32, range ""), estimated_steps : -----------, omniout_float(ALWAYS, "estimated_steps", estimated_h desired_abs_gbl_error 32, estimated_steps, 32, ""), step_error : omniabs(---------------------), estimated_steps omniout_float(ALWAYS, "step_error", 32, step_error, 32, ""), step_error) (%i56) exact_soln_y(x) := block(x + 0.05 x x + cos(x)) (%o56) exact_soln_y(x) := block(x + 0.05 x x + cos(x)) (%i57) main() := block([d1, d2, d3, d4, est_err_2, niii, done_once, term, ord, order_diff, term_no, html_log_file, iiif, jjjf, rows, r_order, sub_iter, calc_term, iii, temp_sum, current_iter, x_start, x_end, it, max_terms, opt_iter, tmp, subiter, est_needed_step_err, estimated_step_error, min_value, est_answer, best_h, found_h, repeat_it], define_variable(glob_max_terms, 30, fixnum), define_variable(glob_iolevel, 5, fixnum), define_variable(glob_yes_pole, 4, fixnum), define_variable(glob_no_pole, 3, fixnum), define_variable(glob_not_given, 0, fixnum), define_variable(ALWAYS, 1, fixnum), define_variable(INFO, 2, fixnum), define_variable(DEBUGL, 3, fixnum), define_variable(DEBUGMASSIVE, 4, fixnum), define_variable(MAX_UNCHANGED, 10, fixnum), define_variable(glob_check_sign, 1.0, float), define_variable(glob_desired_digits_correct, 8.0, float), define_variable(glob_max_estimated_step_error, 0.0, float), define_variable(glob_ratio_of_radius, 0.1, float), define_variable(glob_percent_done, 0.0, float), define_variable(glob_subiter_method, 3, fixnum), define_variable(glob_total_exp_sec, 0.1, float), define_variable(glob_optimal_expect_sec, 0.1, float), define_variable(glob_html_log, true, boolean), define_variable(glob_good_digits, 0, fixnum), define_variable(glob_max_opt_iter, 10, fixnum), define_variable(glob_dump, false, boolean), define_variable(glob_djd_debug, true, boolean), define_variable(glob_display_flag, true, boolean), define_variable(glob_djd_debug2, true, boolean), define_variable(glob_sec_in_minute, 60, fixnum), define_variable(glob_min_in_hour, 60, fixnum), define_variable(glob_hours_in_day, 24, fixnum), define_variable(glob_days_in_year, 365, fixnum), define_variable(glob_sec_in_hour, 3600, fixnum), define_variable(glob_sec_in_day, 86400, fixnum), define_variable(glob_sec_in_year, 31536000, fixnum), define_variable(glob_almost_1, 0.999, float), define_variable(glob_clock_sec, 0.0, float), define_variable(glob_clock_start_sec, 0.0, float), define_variable(glob_not_yet_finished, true, boolean), define_variable(glob_initial_pass, true, boolean), define_variable(glob_not_yet_start_msg, true, boolean), define_variable(glob_reached_optimal_h, false, boolean), define_variable(glob_optimal_done, false, boolean), define_variable(glob_disp_incr, 0.1, float), define_variable(glob_h, 0.1, float), define_variable(glob_max_h, 0.1, float), define_variable(glob_min_h, 1.0E-6, float), define_variable(glob_type_given_pole, 0, fixnum), define_variable(glob_large_float, 9.0E+100, float), define_variable(glob_last_good_h, 0.1, float), define_variable(glob_look_poles, false, boolean), define_variable(glob_neg_h, false, boolean), define_variable(glob_display_interval, 0.0, float), define_variable(glob_next_display, 0.0, float), define_variable(glob_dump_analytic, false, boolean), define_variable(glob_abserr, 1.0E-11, float), define_variable(glob_relerr, 1.0E-11, float), define_variable(glob_max_hours, 0.0, float), define_variable(glob_max_iter, 1000, fixnum), define_variable(glob_max_rel_trunc_err, 1.0E-11, float), define_variable(glob_max_trunc_err, 1.0E-11, float), define_variable(glob_no_eqs, 0, fixnum), define_variable(glob_optimal_clock_start_sec, 0.0, float), define_variable(glob_optimal_start, 0.0, float), define_variable(glob_small_float, 0.0, float), define_variable(glob_smallish_float, 0.0, float), define_variable(glob_unchanged_h_cnt, 0, fixnum), define_variable(glob_warned, false, boolean), define_variable(glob_warned2, false, boolean), define_variable(glob_max_sec, 10000.0, float), define_variable(glob_orig_start_sec, 0.0, float), define_variable(glob_start, 0, fixnum), define_variable(glob_curr_iter_when_opt, 0, fixnum), define_variable(glob_current_iter, 0, fixnum), define_variable(glob_iter, 0, fixnum), define_variable(glob_normmax, 0.0, float), define_variable(glob_max_minutes, 0.0, float), 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/sub_lin_sinpostode.ode#################"), omniout_str(ALWAYS, "diff ( y , x , 1 ) = (0.1 * x + 1.0) - sin(x);"), omniout_str(ALWAYS, "!"), omniout_str(ALWAYS, "/* BEGIN FIRST INPUT BLOCK */"), omniout_str(ALWAYS, "Digits:32,"), omniout_str(ALWAYS, "max_terms:30,"), omniout_str(ALWAYS, "!"), omniout_str(ALWAYS, "/* END FIRST INPUT BLOCK */"), omniout_str(ALWAYS, "/* BEGIN SECOND INPUT BLOCK */"), omniout_str(ALWAYS, "x_start:0.1,"), omniout_str(ALWAYS, "x_end:5.0,"), omniout_str(ALWAYS, "array_y_init[0 + 1] : exact_soln_y(x_start),"), omniout_str(ALWAYS, "glob_look_poles:true,"), omniout_str(ALWAYS, "glob_max_iter:1000000,"), omniout_str(ALWAYS, "/* END SECOND INPUT BLOCK */"), omniout_str(ALWAYS, "/* BEGIN OVERRIDE BLOCK */"), omniout_str(ALWAYS, "glob_desired_digits_correct:10,"), omniout_str(ALWAYS, "glob_display_interval:0.01,"), omniout_str(ALWAYS, "glob_look_poles:true,"), omniout_str(ALWAYS, "glob_max_iter:10000000,"), omniout_str(ALWAYS, "glob_max_minutes:3,"), omniout_str(ALWAYS, "glob_subiter_method:3,"), omniout_str(ALWAYS, "/* END OVERRIDE BLOCK */"), omniout_str(ALWAYS, "!"), omniout_str(ALWAYS, "/* BEGIN USER DEF BLOCK */"), omniout_str(ALWAYS, "exact_soln_y (x) := (block("), omniout_str(ALWAYS, " (cos(x) + (0.05 * x * x) + x) "), 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 : 0.0, glob_smallish_float : 0.0, glob_large_float : 1.0E+100, glob_almost_1 : 0.99, Digits : 32, max_terms : 30, glob_max_terms : max_terms, glob_html_log : true, array(array_y_init, 1 + max_terms), array(array_norms, 1 + max_terms), array(array_fact_1, 1 + max_terms), array(array_pole, 1 + 4), array(array_real_pole, 1 + 4), array(array_complex_pole, 1 + 4), array(array_1st_rel_error, 1 + 2), array(array_last_rel_error, 1 + 2), array(array_type_pole, 1 + 2), array(array_type_real_pole, 1 + 2), array(array_type_complex_pole, 1 + 2), array(array_y, 1 + max_terms), array(array_x, 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_g, 1 + max_terms), array(array_tmp4, 1 + max_terms), array(array_tmp5, 1 + max_terms), array(array_m1, 1 + max_terms), array(array_y_higher, 1 + 2, 1 + max_terms), array(array_y_higher_work, 1 + 2, 1 + max_terms), array(array_y_higher_work2, 1 + 2, 1 + max_terms), array(array_y_set_initial, 1 + 2, 1 + max_terms), array(array_poles, 1 + 2, 1 + 3), array(array_given_rad_poles, 1 + 2, 1 + 3), array(array_given_ord_poles, 1 + 2, 1 + 3), array(array_real_poles, 1 + 2, 1 + 3), array(array_complex_poles, 1 + 2, 1 + 3), array(array_fact_2, 1 + max_terms, 1 + max_terms), term : 1, while term <= max_terms do (array_y_init : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_norms : 0.0, term term : 1 + term), term : 1, while term <= max_terms do (array_fact_1 : 0.0, term : 1 + term), term : 1, term while term <= 4 do (array_pole : 0.0, term : 1 + term), term : 1, term while term <= 4 do (array_real_pole : 0.0, term : 1 + term), term : 1, term while term <= 4 do (array_complex_pole : 0.0, term : 1 + term), term : 1, term while term <= 2 do (array_1st_rel_error : 0.0, term : 1 + term), term term : 1, while term <= 2 do (array_last_rel_error : 0.0, term term : 1 + term), term : 1, while term <= 2 do (array_type_pole : 0.0, term term : 1 + term), term : 1, while term <= 2 do (array_type_real_pole : 0.0, term : 1 + term), term : 1, term while term <= 2 do (array_type_complex_pole : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_y : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_x : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_tmp0 : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_tmp1 : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_tmp2 : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_tmp3 : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_tmp4_g : 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_m1 : 0.0, term term : 1 + term), 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 <= 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 <= 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_set_initial : 0.0, ord, term term : 1 + term), ord : 1 + ord), ord : 1, while ord <= 2 do (term : 1, while term <= 3 do (array_poles : 0.0, ord, term term : 1 + term), ord : 1 + ord), ord : 1, while ord <= 2 do (term : 1, while term <= 3 do (array_given_rad_poles : 0.0, term : 1 + term), ord : 1 + ord), ord, term ord : 1, while ord <= 2 do (term : 1, while term <= 3 do (array_given_ord_poles : 0.0, term : 1 + term), ord, term ord : 1 + ord), ord : 1, while ord <= 2 do (term : 1, while term <= 3 do (array_real_poles : 0.0, term : 1 + term), ord, term ord : 1 + ord), ord : 1, while ord <= 2 do (term : 1, while term <= 3 do (array_complex_poles : 0.0, term : 1 + term), ord, term ord : 1 + ord), ord : 1, while ord <= max_terms do (term : 1, while term <= max_terms do (array_fact_2 : 0.0, term : 1 + term), ord, term ord : 1 + ord), 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_x, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_x : 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_tmp1, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_tmp1 : 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_tmp3, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_tmp3 : 0.0, term : 1 + term), term array(array_tmp4_g, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_tmp4_g : 0.0, term : 1 + term), 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_tmp5, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_tmp5 : 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_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_0D1, 1 + 1 + max_terms), term : 1, 1 while term <= 1 + max_terms do (array_const_0D1 : 0.0, term : 1 + term), term array_const_0D1 : 0.1, array(array_const_1D0, 1 + 1 + max_terms), term : 1, 1 while term <= 1 + max_terms do (array_const_1D0 : 0.0, term : 1 + term), term array_const_1D0 : 1.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, iiif : 0, while iiif <= glob_max_terms do (jjjf : 0, 1 while jjjf <= glob_max_terms do (array_fact_1 : 0, iiif array_fact_2 : 0, jjjf : 1 + jjjf), iiif : 1 + iiif), x_start : 0.1, iiif, jjjf x_end : 5.0, array_y_init : exact_soln_y(x_start), 1 + 0 glob_look_poles : true, glob_max_iter : 1000000, glob_desired_digits_correct : 10, glob_display_interval : 0.01, glob_look_poles : true, glob_max_iter : 10000000, glob_max_minutes : 3, glob_subiter_method : 3, glob_last_good_h : glob_h, glob_max_terms : max_terms, glob_max_sec : convfloat(3600.0) convfloat(glob_max_hours) + convfloat(60.0) convfloat(glob_max_minutes), if glob_h > 0.0 then (glob_neg_h : false, glob_display_interval : omniabs(glob_display_interval)) else (glob_neg_h : true, glob_display_interval : - omniabs(glob_display_interval)), chk_data(), array_y_set_initial : true, 1, 1 array_y_set_initial : false, array_y_set_initial : false, 1, 2 1, 3 array_y_set_initial : false, array_y_set_initial : false, 1, 4 1, 5 array_y_set_initial : false, array_y_set_initial : false, 1, 6 1, 7 array_y_set_initial : false, array_y_set_initial : false, 1, 8 1, 9 array_y_set_initial : false, array_y_set_initial : false, 1, 10 1, 11 array_y_set_initial : false, array_y_set_initial : false, 1, 12 1, 13 array_y_set_initial : false, array_y_set_initial : false, 1, 14 1, 15 array_y_set_initial : false, array_y_set_initial : false, 1, 16 1, 17 array_y_set_initial : false, array_y_set_initial : false, 1, 18 1, 19 array_y_set_initial : false, array_y_set_initial : false, 1, 20 1, 21 array_y_set_initial : false, array_y_set_initial : false, 1, 22 1, 23 array_y_set_initial : false, array_y_set_initial : false, 1, 24 1, 25 array_y_set_initial : false, array_y_set_initial : false, 1, 26 1, 27 array_y_set_initial : false, array_y_set_initial : false, 1, 28 1, 29 array_y_set_initial : false, omniout_str(ALWAYS, "START of Optimize"), 1, 30 glob_check_sign : check_sign(x_start, x_end), glob_h : check_sign(x_start, x_end), found_h : false, glob_h : glob_min_h, if glob_max_h < glob_h then glob_h : glob_max_h, if glob_display_interval < glob_h then glob_h : glob_display_interval, best_h : glob_h, min_value : glob_large_float, est_answer : est_size_answer(), opt_iter : 1, est_needed_step_err : estimated_needed_step_error(x_start, x_end, glob_h, est_answer), omniout_float(ALWAYS, "est_needed_step_err", 32, est_needed_step_err, 16, ""), estimated_step_error : 0.0, while (opt_iter <= 100) and (not found_h) do (omniout_int(ALWAYS, "opt_iter", 32, opt_iter, 4, ""), array_x : x_start, array_x : glob_h, 1 2 glob_next_display : x_start, order_diff : 1, term_no : 1, while term_no <= order_diff do (array_y : term_no array_y_init expt(glob_h, term_no - 1) 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, array_y_init expt(glob_h, term_no - 1) it array_y_higher : ----------------------------------------, r_order, term_no factorial_1(term_no - 1) term_no : 1 + term_no), r_order : 1 + r_order), atomall(), estimated_step_error : test_suggested_h(), omniout_float(ALWAYS, "estimated_step_error", 32, estimated_step_error, 32, ""), if ((estimated_step_error > est_needed_step_err) and (opt_iter = 1)) or (glob_h >= glob_max_h) then (found_h : true, glob_h : glob_max_h, best_h : glob_h) elseif (estimated_step_error > est_needed_step_err) glob_h and (not found_h) then (glob_h : ------, best_h : glob_h, found_h : true) 2.0 else (glob_h : glob_h 2.0, best_h : glob_h), omniout_float(ALWAYS, "best_h", 32, best_h, 32, ""), opt_iter : 1 + opt_iter), if (not found_h) and (opt_iter = 1) then (omniout_str(ALWAYS, "Beginning glob_h too large."), found_h : false), if opt_iter > 100 then (glob_h : glob_max_h, found_h : false), if glob_display_interval < glob_h then glob_h : glob_display_interval, if glob_html_log then html_log_file : openw("entry.html"), if found_h then (omniout_str(ALWAYS, "START of Soultion"), array_x : x_start, 1 array_x : glob_h, glob_next_display : x_start, order_diff : 1, term_no : 1, 2 while term_no <= order_diff do (array_y : term_no array_y_init expt(glob_h, term_no - 1) 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, array_y_init expt(glob_h, term_no - 1) 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(), glob_clock_sec : elapsed_time_seconds(), glob_current_iter : 0, glob_iter : 0, omniout_str(DEBUGL, " "), glob_reached_optimal_h : true, glob_optimal_clock_start_sec : elapsed_time_seconds(), while (glob_current_iter < glob_max_iter) and (glob_check_sign array_x < glob_check_sign x_end) 1 and (convfloat(glob_clock_sec) - convfloat(glob_orig_start_sec) < convfloat(glob_max_sec)) do (if reached_interval () then (omniout_str(INFO, " "), omniout_str(INFO, "TOP MAIN SOLVE Loop")), glob_iter : 1 + glob_iter, glob_clock_sec : elapsed_time_seconds(), glob_current_iter : 1 + glob_current_iter, atomall(), display_alot(current_iter), if glob_look_poles then check_for_pole(), if reached_interval() then glob_next_display : glob_display_interval + glob_next_display, array_x : glob_h + array_x , 1 1 array_x : glob_h, order_diff : 2, 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 --------------------------- expt(glob_h, calc_term - 1) -------------------------------------, 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 temp_sum expt(glob_h, calc_term - 1) ------------------------------------, ord : 1, calc_term : 2, factorial_1(calc_term - 1) iii : glob_max_terms, while iii >= calc_term do (array_y_higher_work : 1, iii array_y_higher 1, iii --------------------------- expt(glob_h, calc_term - 1) -------------------------------------, 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 temp_sum expt(glob_h, calc_term - 1) ------------------------------------, ord : 1, calc_term : 1, factorial_1(calc_term - 1) iii : glob_max_terms, while iii >= calc_term do (array_y_higher_work : 1, iii array_y_higher 1, iii --------------------------- expt(glob_h, calc_term - 1) -------------------------------------, 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 temp_sum expt(glob_h, calc_term - 1) ------------------------------------, term_no : glob_max_terms, factorial_1(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 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 ) = (0.1 * x + 1.0) - sin(x);"), omniout_int(INFO, "Iterations ", 32, glob_iter, 4, " "), prog_report(x_start, x_end), if glob_html_log then (logstart(html_log_file), logitem_str(html_log_file, "2013-05-26T05:12:16-05:00"), logitem_str(html_log_file, "Maxima"), logitem_str(html_log_file, "sub_lin_sin"), logitem_str(html_log_file, "diff ( y , x , 1 ) = (0.1 * x + 1.0) - sin(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_good_digits(html_log_file, array_last_rel_error ), logitem_integer(html_log_file, glob_max_terms), 1 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_time(html_log_file, convfloat(glob_clock_sec)), if glob_percent_done < 100.0 then (logitem_time(html_log_file, convfloat(glob_total_exp_sec)), 0) else (logitem_str(html_log_file, "Done"), 0), log_revs(html_log_file, " 189 "), logitem_str(html_log_file, "sub_lin_sin diffeq.max"), logitem_str(html_log_file, "sub_lin_sin maxima results"), logitem_str(html_log_file, "All Tests - All Languages"), logend(html_log_file)), if glob_html_log then close(html_log_file))) (%o57) main() := block([d1, d2, d3, d4, est_err_2, niii, done_once, term, ord, order_diff, term_no, html_log_file, iiif, jjjf, rows, r_order, sub_iter, calc_term, iii, temp_sum, current_iter, x_start, x_end, it, max_terms, opt_iter, tmp, subiter, est_needed_step_err, estimated_step_error, min_value, est_answer, best_h, found_h, repeat_it], define_variable(glob_max_terms, 30, fixnum), define_variable(glob_iolevel, 5, fixnum), define_variable(glob_yes_pole, 4, fixnum), define_variable(glob_no_pole, 3, fixnum), define_variable(glob_not_given, 0, fixnum), define_variable(ALWAYS, 1, fixnum), define_variable(INFO, 2, fixnum), define_variable(DEBUGL, 3, fixnum), define_variable(DEBUGMASSIVE, 4, fixnum), define_variable(MAX_UNCHANGED, 10, fixnum), define_variable(glob_check_sign, 1.0, float), define_variable(glob_desired_digits_correct, 8.0, float), define_variable(glob_max_estimated_step_error, 0.0, float), define_variable(glob_ratio_of_radius, 0.1, float), define_variable(glob_percent_done, 0.0, float), define_variable(glob_subiter_method, 3, fixnum), define_variable(glob_total_exp_sec, 0.1, float), define_variable(glob_optimal_expect_sec, 0.1, float), define_variable(glob_html_log, true, boolean), define_variable(glob_good_digits, 0, fixnum), define_variable(glob_max_opt_iter, 10, fixnum), define_variable(glob_dump, false, boolean), define_variable(glob_djd_debug, true, boolean), define_variable(glob_display_flag, true, boolean), define_variable(glob_djd_debug2, true, boolean), define_variable(glob_sec_in_minute, 60, fixnum), define_variable(glob_min_in_hour, 60, fixnum), define_variable(glob_hours_in_day, 24, fixnum), define_variable(glob_days_in_year, 365, fixnum), define_variable(glob_sec_in_hour, 3600, fixnum), define_variable(glob_sec_in_day, 86400, fixnum), define_variable(glob_sec_in_year, 31536000, fixnum), define_variable(glob_almost_1, 0.999, float), define_variable(glob_clock_sec, 0.0, float), define_variable(glob_clock_start_sec, 0.0, float), define_variable(glob_not_yet_finished, true, boolean), define_variable(glob_initial_pass, true, boolean), define_variable(glob_not_yet_start_msg, true, boolean), define_variable(glob_reached_optimal_h, false, boolean), define_variable(glob_optimal_done, false, boolean), define_variable(glob_disp_incr, 0.1, float), define_variable(glob_h, 0.1, float), define_variable(glob_max_h, 0.1, float), define_variable(glob_min_h, 1.0E-6, float), define_variable(glob_type_given_pole, 0, fixnum), define_variable(glob_large_float, 9.0E+100, float), define_variable(glob_last_good_h, 0.1, float), define_variable(glob_look_poles, false, boolean), define_variable(glob_neg_h, false, boolean), define_variable(glob_display_interval, 0.0, float), define_variable(glob_next_display, 0.0, float), define_variable(glob_dump_analytic, false, boolean), define_variable(glob_abserr, 1.0E-11, float), define_variable(glob_relerr, 1.0E-11, float), define_variable(glob_max_hours, 0.0, float), define_variable(glob_max_iter, 1000, fixnum), define_variable(glob_max_rel_trunc_err, 1.0E-11, float), define_variable(glob_max_trunc_err, 1.0E-11, float), define_variable(glob_no_eqs, 0, fixnum), define_variable(glob_optimal_clock_start_sec, 0.0, float), define_variable(glob_optimal_start, 0.0, float), define_variable(glob_small_float, 0.0, float), define_variable(glob_smallish_float, 0.0, float), define_variable(glob_unchanged_h_cnt, 0, fixnum), define_variable(glob_warned, false, boolean), define_variable(glob_warned2, false, boolean), define_variable(glob_max_sec, 10000.0, float), define_variable(glob_orig_start_sec, 0.0, float), define_variable(glob_start, 0, fixnum), define_variable(glob_curr_iter_when_opt, 0, fixnum), define_variable(glob_current_iter, 0, fixnum), define_variable(glob_iter, 0, fixnum), define_variable(glob_normmax, 0.0, float), define_variable(glob_max_minutes, 0.0, float), 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/sub_lin_sinpostode.ode#################"), omniout_str(ALWAYS, "diff ( y , x , 1 ) = (0.1 * x + 1.0) - sin(x);"), omniout_str(ALWAYS, "!"), omniout_str(ALWAYS, "/* BEGIN FIRST INPUT BLOCK */"), omniout_str(ALWAYS, "Digits:32,"), omniout_str(ALWAYS, "max_terms:30,"), omniout_str(ALWAYS, "!"), omniout_str(ALWAYS, "/* END FIRST INPUT BLOCK */"), omniout_str(ALWAYS, "/* BEGIN SECOND INPUT BLOCK */"), omniout_str(ALWAYS, "x_start:0.1,"), omniout_str(ALWAYS, "x_end:5.0,"), omniout_str(ALWAYS, "array_y_init[0 + 1] : exact_soln_y(x_start),"), omniout_str(ALWAYS, "glob_look_poles:true,"), omniout_str(ALWAYS, "glob_max_iter:1000000,"), omniout_str(ALWAYS, "/* END SECOND INPUT BLOCK */"), omniout_str(ALWAYS, "/* BEGIN OVERRIDE BLOCK */"), omniout_str(ALWAYS, "glob_desired_digits_correct:10,"), omniout_str(ALWAYS, "glob_display_interval:0.01,"), omniout_str(ALWAYS, "glob_look_poles:true,"), omniout_str(ALWAYS, "glob_max_iter:10000000,"), omniout_str(ALWAYS, "glob_max_minutes:3,"), omniout_str(ALWAYS, "glob_subiter_method:3,"), omniout_str(ALWAYS, "/* END OVERRIDE BLOCK */"), omniout_str(ALWAYS, "!"), omniout_str(ALWAYS, "/* BEGIN USER DEF BLOCK */"), omniout_str(ALWAYS, "exact_soln_y (x) := (block("), omniout_str(ALWAYS, " (cos(x) + (0.05 * x * x) + x) "), 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 : 0.0, glob_smallish_float : 0.0, glob_large_float : 1.0E+100, glob_almost_1 : 0.99, Digits : 32, max_terms : 30, glob_max_terms : max_terms, glob_html_log : true, array(array_y_init, 1 + max_terms), array(array_norms, 1 + max_terms), array(array_fact_1, 1 + max_terms), array(array_pole, 1 + 4), array(array_real_pole, 1 + 4), array(array_complex_pole, 1 + 4), array(array_1st_rel_error, 1 + 2), array(array_last_rel_error, 1 + 2), array(array_type_pole, 1 + 2), array(array_type_real_pole, 1 + 2), array(array_type_complex_pole, 1 + 2), array(array_y, 1 + max_terms), array(array_x, 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_g, 1 + max_terms), array(array_tmp4, 1 + max_terms), array(array_tmp5, 1 + max_terms), array(array_m1, 1 + max_terms), array(array_y_higher, 1 + 2, 1 + max_terms), array(array_y_higher_work, 1 + 2, 1 + max_terms), array(array_y_higher_work2, 1 + 2, 1 + max_terms), array(array_y_set_initial, 1 + 2, 1 + max_terms), array(array_poles, 1 + 2, 1 + 3), array(array_given_rad_poles, 1 + 2, 1 + 3), array(array_given_ord_poles, 1 + 2, 1 + 3), array(array_real_poles, 1 + 2, 1 + 3), array(array_complex_poles, 1 + 2, 1 + 3), array(array_fact_2, 1 + max_terms, 1 + max_terms), term : 1, while term <= max_terms do (array_y_init : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_norms : 0.0, term term : 1 + term), term : 1, while term <= max_terms do (array_fact_1 : 0.0, term : 1 + term), term : 1, term while term <= 4 do (array_pole : 0.0, term : 1 + term), term : 1, term while term <= 4 do (array_real_pole : 0.0, term : 1 + term), term : 1, term while term <= 4 do (array_complex_pole : 0.0, term : 1 + term), term : 1, term while term <= 2 do (array_1st_rel_error : 0.0, term : 1 + term), term term : 1, while term <= 2 do (array_last_rel_error : 0.0, term term : 1 + term), term : 1, while term <= 2 do (array_type_pole : 0.0, term term : 1 + term), term : 1, while term <= 2 do (array_type_real_pole : 0.0, term : 1 + term), term : 1, term while term <= 2 do (array_type_complex_pole : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_y : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_x : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_tmp0 : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_tmp1 : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_tmp2 : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_tmp3 : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_tmp4_g : 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_m1 : 0.0, term term : 1 + term), 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 <= 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 <= 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_set_initial : 0.0, ord, term term : 1 + term), ord : 1 + ord), ord : 1, while ord <= 2 do (term : 1, while term <= 3 do (array_poles : 0.0, ord, term term : 1 + term), ord : 1 + ord), ord : 1, while ord <= 2 do (term : 1, while term <= 3 do (array_given_rad_poles : 0.0, term : 1 + term), ord : 1 + ord), ord, term ord : 1, while ord <= 2 do (term : 1, while term <= 3 do (array_given_ord_poles : 0.0, term : 1 + term), ord, term ord : 1 + ord), ord : 1, while ord <= 2 do (term : 1, while term <= 3 do (array_real_poles : 0.0, term : 1 + term), ord, term ord : 1 + ord), ord : 1, while ord <= 2 do (term : 1, while term <= 3 do (array_complex_poles : 0.0, term : 1 + term), ord, term ord : 1 + ord), ord : 1, while ord <= max_terms do (term : 1, while term <= max_terms do (array_fact_2 : 0.0, term : 1 + term), ord, term ord : 1 + ord), 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_x, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_x : 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_tmp1, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_tmp1 : 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_tmp3, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_tmp3 : 0.0, term : 1 + term), term array(array_tmp4_g, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_tmp4_g : 0.0, term : 1 + term), 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_tmp5, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_tmp5 : 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_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_0D1, 1 + 1 + max_terms), term : 1, 1 while term <= 1 + max_terms do (array_const_0D1 : 0.0, term : 1 + term), term array_const_0D1 : 0.1, array(array_const_1D0, 1 + 1 + max_terms), term : 1, 1 while term <= 1 + max_terms do (array_const_1D0 : 0.0, term : 1 + term), term array_const_1D0 : 1.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, iiif : 0, while iiif <= glob_max_terms do (jjjf : 0, 1 while jjjf <= glob_max_terms do (array_fact_1 : 0, iiif array_fact_2 : 0, jjjf : 1 + jjjf), iiif : 1 + iiif), x_start : 0.1, iiif, jjjf x_end : 5.0, array_y_init : exact_soln_y(x_start), 1 + 0 glob_look_poles : true, glob_max_iter : 1000000, glob_desired_digits_correct : 10, glob_display_interval : 0.01, glob_look_poles : true, glob_max_iter : 10000000, glob_max_minutes : 3, glob_subiter_method : 3, glob_last_good_h : glob_h, glob_max_terms : max_terms, glob_max_sec : convfloat(3600.0) convfloat(glob_max_hours) + convfloat(60.0) convfloat(glob_max_minutes), if glob_h > 0.0 then (glob_neg_h : false, glob_display_interval : omniabs(glob_display_interval)) else (glob_neg_h : true, glob_display_interval : - omniabs(glob_display_interval)), chk_data(), array_y_set_initial : true, 1, 1 array_y_set_initial : false, array_y_set_initial : false, 1, 2 1, 3 array_y_set_initial : false, array_y_set_initial : false, 1, 4 1, 5 array_y_set_initial : false, array_y_set_initial : false, 1, 6 1, 7 array_y_set_initial : false, array_y_set_initial : false, 1, 8 1, 9 array_y_set_initial : false, array_y_set_initial : false, 1, 10 1, 11 array_y_set_initial : false, array_y_set_initial : false, 1, 12 1, 13 array_y_set_initial : false, array_y_set_initial : false, 1, 14 1, 15 array_y_set_initial : false, array_y_set_initial : false, 1, 16 1, 17 array_y_set_initial : false, array_y_set_initial : false, 1, 18 1, 19 array_y_set_initial : false, array_y_set_initial : false, 1, 20 1, 21 array_y_set_initial : false, array_y_set_initial : false, 1, 22 1, 23 array_y_set_initial : false, array_y_set_initial : false, 1, 24 1, 25 array_y_set_initial : false, array_y_set_initial : false, 1, 26 1, 27 array_y_set_initial : false, array_y_set_initial : false, 1, 28 1, 29 array_y_set_initial : false, omniout_str(ALWAYS, "START of Optimize"), 1, 30 glob_check_sign : check_sign(x_start, x_end), glob_h : check_sign(x_start, x_end), found_h : false, glob_h : glob_min_h, if glob_max_h < glob_h then glob_h : glob_max_h, if glob_display_interval < glob_h then glob_h : glob_display_interval, best_h : glob_h, min_value : glob_large_float, est_answer : est_size_answer(), opt_iter : 1, est_needed_step_err : estimated_needed_step_error(x_start, x_end, glob_h, est_answer), omniout_float(ALWAYS, "est_needed_step_err", 32, est_needed_step_err, 16, ""), estimated_step_error : 0.0, while (opt_iter <= 100) and (not found_h) do (omniout_int(ALWAYS, "opt_iter", 32, opt_iter, 4, ""), array_x : x_start, array_x : glob_h, 1 2 glob_next_display : x_start, order_diff : 1, term_no : 1, while term_no <= order_diff do (array_y : term_no array_y_init expt(glob_h, term_no - 1) 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, array_y_init expt(glob_h, term_no - 1) it array_y_higher : ----------------------------------------, r_order, term_no factorial_1(term_no - 1) term_no : 1 + term_no), r_order : 1 + r_order), atomall(), estimated_step_error : test_suggested_h(), omniout_float(ALWAYS, "estimated_step_error", 32, estimated_step_error, 32, ""), if ((estimated_step_error > est_needed_step_err) and (opt_iter = 1)) or (glob_h >= glob_max_h) then (found_h : true, glob_h : glob_max_h, best_h : glob_h) elseif (estimated_step_error > est_needed_step_err) glob_h and (not found_h) then (glob_h : ------, best_h : glob_h, found_h : true) 2.0 else (glob_h : glob_h 2.0, best_h : glob_h), omniout_float(ALWAYS, "best_h", 32, best_h, 32, ""), opt_iter : 1 + opt_iter), if (not found_h) and (opt_iter = 1) then (omniout_str(ALWAYS, "Beginning glob_h too large."), found_h : false), if opt_iter > 100 then (glob_h : glob_max_h, found_h : false), if glob_display_interval < glob_h then glob_h : glob_display_interval, if glob_html_log then html_log_file : openw("entry.html"), if found_h then (omniout_str(ALWAYS, "START of Soultion"), array_x : x_start, 1 array_x : glob_h, glob_next_display : x_start, order_diff : 1, term_no : 1, 2 while term_no <= order_diff do (array_y : term_no array_y_init expt(glob_h, term_no - 1) 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, array_y_init expt(glob_h, term_no - 1) 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(), glob_clock_sec : elapsed_time_seconds(), glob_current_iter : 0, glob_iter : 0, omniout_str(DEBUGL, " "), glob_reached_optimal_h : true, glob_optimal_clock_start_sec : elapsed_time_seconds(), while (glob_current_iter < glob_max_iter) and (glob_check_sign array_x < glob_check_sign x_end) 1 and (convfloat(glob_clock_sec) - convfloat(glob_orig_start_sec) < convfloat(glob_max_sec)) do (if reached_interval () then (omniout_str(INFO, " "), omniout_str(INFO, "TOP MAIN SOLVE Loop")), glob_iter : 1 + glob_iter, glob_clock_sec : elapsed_time_seconds(), glob_current_iter : 1 + glob_current_iter, atomall(), display_alot(current_iter), if glob_look_poles then check_for_pole(), if reached_interval() then glob_next_display : glob_display_interval + glob_next_display, array_x : glob_h + array_x , 1 1 array_x : glob_h, order_diff : 2, 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 --------------------------- expt(glob_h, calc_term - 1) -------------------------------------, 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 temp_sum expt(glob_h, calc_term - 1) ------------------------------------, ord : 1, calc_term : 2, factorial_1(calc_term - 1) iii : glob_max_terms, while iii >= calc_term do (array_y_higher_work : 1, iii array_y_higher 1, iii --------------------------- expt(glob_h, calc_term - 1) -------------------------------------, 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 temp_sum expt(glob_h, calc_term - 1) ------------------------------------, ord : 1, calc_term : 1, factorial_1(calc_term - 1) iii : glob_max_terms, while iii >= calc_term do (array_y_higher_work : 1, iii array_y_higher 1, iii --------------------------- expt(glob_h, calc_term - 1) -------------------------------------, 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 temp_sum expt(glob_h, calc_term - 1) ------------------------------------, term_no : glob_max_terms, factorial_1(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 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 ) = (0.1 * x + 1.0) - sin(x);"), omniout_int(INFO, "Iterations ", 32, glob_iter, 4, " "), prog_report(x_start, x_end), if glob_html_log then (logstart(html_log_file), logitem_str(html_log_file, "2013-05-26T05:12:16-05:00"), logitem_str(html_log_file, "Maxima"), logitem_str(html_log_file, "sub_lin_sin"), logitem_str(html_log_file, "diff ( y , x , 1 ) = (0.1 * x + 1.0) - sin(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_good_digits(html_log_file, array_last_rel_error ), logitem_integer(html_log_file, glob_max_terms), 1 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_time(html_log_file, convfloat(glob_clock_sec)), if glob_percent_done < 100.0 then (logitem_time(html_log_file, convfloat(glob_total_exp_sec)), 0) else (logitem_str(html_log_file, "Done"), 0), log_revs(html_log_file, " 189 "), logitem_str(html_log_file, "sub_lin_sin diffeq.max"), logitem_str(html_log_file, "sub_lin_sin maxima results"), logitem_str(html_log_file, "All Tests - All Languages"), logend(html_log_file)), if glob_html_log then close(html_log_file))) (%i58) main() "##############ECHO OF PROBLEM#################" "##############temp/sub_lin_sinpostode.ode#################" "diff ( y , x , 1 ) = (0.1 * x + 1.0) - sin(x);" "!" "/* BEGIN FIRST INPUT BLOCK */" "Digits:32," "max_terms:30," "!" "/* END FIRST INPUT BLOCK */" "/* BEGIN SECOND INPUT BLOCK */" "x_start:0.1," "x_end:5.0," "array_y_init[0 + 1] : exact_soln_y(x_start)," "glob_look_poles:true," "glob_max_iter:1000000," "/* END SECOND INPUT BLOCK */" "/* BEGIN OVERRIDE BLOCK */" "glob_desired_digits_correct:10," "glob_display_interval:0.01," "glob_look_poles:true," "glob_max_iter:10000000," "glob_max_minutes:3," "glob_subiter_method:3," "/* END OVERRIDE BLOCK */" "!" "/* BEGIN USER DEF BLOCK */" "exact_soln_y (x) := (block(" " (cos(x) + (0.05 * x * x) + x) " "));" "/* END USER DEF BLOCK */" "#######END OF ECHO OF PROBLEM#################" "START of Optimize" min_size = 0.0 "" min_size = 1. "" glob_desired_digits_correct = 10. "" desired_abs_gbl_error = 1.0000000000E-10 "" range = 4.9 "" estimated_steps = 4900000.000000001 "" step_error = 2.04081632653061200000000000000000E-17 "" est_needed_step_err = 2.04081632653061200000000000000000E-17 "" opt_iter = 1 hn_div_ho = 0.5 "" hn_div_ho_2 = 0.25 "" hn_div_ho_3 = 0.125 "" max_estimated_step_error = 2.467208605532302300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000E-183 "" estimated_step_error = 2.467208605532302300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000E-183 "" best_h = 2.000000E-6 "" opt_iter = 2 hn_div_ho = 0.5 "" hn_div_ho_2 = 0.25 "" hn_div_ho_3 = 0.125 "" max_estimated_step_error = 1.6557156646065660000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000E-175 "" estimated_step_error = 1.6557156646065660000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000E-175 "" best_h = 4.000000E-6 "" opt_iter = 3 hn_div_ho = 0.5 "" hn_div_ho_2 = 0.25 "" hn_div_ho_3 = 0.125 "" max_estimated_step_error = 1.111131969458435700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000E-167 "" estimated_step_error = 1.111131969458435700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000E-167 "" best_h = 8.000000E-6 "" opt_iter = 4 hn_div_ho = 0.5 "" hn_div_ho_2 = 0.25 "" hn_div_ho_3 = 0.125 "" max_estimated_step_error = 7.4566803670241880000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000E-160 "" estimated_step_error = 7.4566803670241880000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000E-160 "" best_h = 1.600000E-5 "" opt_iter = 5 hn_div_ho = 0.5 "" hn_div_ho_2 = 0.25 "" hn_div_ho_3 = 0.125 "" max_estimated_step_error = 5.00409341203781700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000E-152 "" estimated_step_error = 5.00409341203781700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000E-152 "" best_h = 3.200000E-5 "" opt_iter = 6 hn_div_ho = 0.5 "" hn_div_ho_2 = 0.25 "" hn_div_ho_3 = 0.125 "" max_estimated_step_error = 3.3581901424816246000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000E-144 "" estimated_step_error = 3.3581901424816246000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000E-144 "" best_h = 6.400000E-5 "" opt_iter = 7 hn_div_ho = 0.5 "" hn_div_ho_2 = 0.25 "" hn_div_ho_3 = 0.125 "" max_estimated_step_error = 2.25364312158092020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000E-136 "" estimated_step_error = 2.25364312158092020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000E-136 "" best_h = 1.280000E-4 "" opt_iter = 8 hn_div_ho = 0.5 "" hn_div_ho_2 = 0.25 "" hn_div_ho_3 = 0.125 "" max_estimated_step_error = 1.51239411765430700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000E-128 "" estimated_step_error = 1.51239411765430700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000E-128 "" best_h = 2.560000E-4 "" opt_iter = 9 hn_div_ho = 0.5 "" hn_div_ho_2 = 0.25 "" hn_div_ho_3 = 0.125 "" max_estimated_step_error = 1.0149502701580557000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000E-120 "" estimated_step_error = 1.0149502701580557000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000E-120 "" best_h = 5.120000E-4 "" opt_iter = 10 hn_div_ho = 0.5 "" hn_div_ho_2 = 0.25 "" hn_div_ho_3 = 0.125 "" max_estimated_step_error = 6.81121272440810900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000E-113 "" estimated_step_error = 6.81121272440810900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000E-113 "" best_h = 1.024000E-3 "" opt_iter = 11 hn_div_ho = 0.5 "" hn_div_ho_2 = 0.25 "" hn_div_ho_3 = 0.125 "" max_estimated_step_error = 4.5709231343600254000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000E-105 "" estimated_step_error = 4.5709231343600254000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000E-105 "" best_h = 2.048000E-3 "" opt_iter = 12 hn_div_ho = 0.5 "" hn_div_ho_2 = 0.25 "" hn_div_ho_3 = 0.125 "" max_estimated_step_error = 3.0674887502340220000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000E-97 "" estimated_step_error = 3.0674887502340220000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000E-97 "" best_h = 4.096000E-3 "" opt_iter = 13 hn_div_ho = 0.5 "" hn_div_ho_2 = 0.25 "" hn_div_ho_3 = 0.125 "" max_estimated_step_error = 2.058549011618090700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000E-89 "" estimated_step_error = 2.058549011618090700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000E-89 "" best_h = 8.192000E-3 "" opt_iter = 14 hn_div_ho = 0.5 "" hn_div_ho_2 = 0.25 "" hn_div_ho_3 = 0.125 "" max_estimated_step_error = 1.3814583197402447000000000000000000000000000000000000000000000000000000000000000000000000000000000E-81 "" estimated_step_error = 1.3814583197402447000000000000000000000000000000000000000000000000000000000000000000000000000000000E-81 "" best_h = 1.638400E-2 "" opt_iter = 15 hn_div_ho = 0.5 "" hn_div_ho_2 = 0.25 "" hn_div_ho_3 = 0.125 "" max_estimated_step_error = 9.27066811842810600000000000000000000000000000000000000000000000000000000000000000000000000E-74 "" estimated_step_error = 9.27066811842810600000000000000000000000000000000000000000000000000000000000000000000000000E-74 "" best_h = 3.276800E-2 "" opt_iter = 16 hn_div_ho = 0.5 "" hn_div_ho_2 = 0.25 "" hn_div_ho_3 = 0.125 "" max_estimated_step_error = 6.221249002016116000000000000000000000000000000000000000000000000000000000000000000E-66 "" estimated_step_error = 6.221249002016116000000000000000000000000000000000000000000000000000000000000000000E-66 "" best_h = 6.553600E-2 "" opt_iter = 17 hn_div_ho = 0.5 "" hn_div_ho_2 = 0.25 "" hn_div_ho_3 = 0.125 "" max_estimated_step_error = 4.1747508750792417000000000000000000000000000000000000000000000000000000000E-58 "" estimated_step_error = 4.1747508750792417000000000000000000000000000000000000000000000000000000000E-58 "" best_h = 0.131072 "" opt_iter = 18 hn_div_ho = 0.5 "" hn_div_ho_2 = 0.25 "" hn_div_ho_3 = 0.125 "" max_estimated_step_error = 2.80127475439960300000000000000000000000000000000000000000000000000E-50 "" estimated_step_error = 2.80127475439960300000000000000000000000000000000000000000000000000E-50 "" best_h = 0.1 "" "START of Soultion" " " "TOP MAIN SOLVE Loop" x[1] = 0.1 " " y[1] (analytic) = 1.0955041652780257 " " y[1] (numeric) = 1.0955041652780257 " " absolute error = 0.0 " " relative error = 0.0 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.11 " " y[1] (analytic) = 1.1045610979566969 " " y[1] (numeric) = 1.1045610979566969 " " absolute error = 0.0 " " relative error = 0.0 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.12 " " y[1] (analytic) = 1.1135286358538663 " " y[1] (numeric) = 1.1135286358538663 " " absolute error = 0.0 " " relative error = 0.0 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.13 " " y[1] (analytic) = 1.1224068937147882 " " y[1] (numeric) = 1.1224068937147882 " " absolute error = 0.0 " " relative error = 0.0 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.14 " " y[1] (analytic) = 1.1311959962126372 " " y[1] (numeric) = 1.1311959962126372 " " absolute error = 0.0 " " relative error = 0.0 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.15000000000000002 " " y[1] (analytic) = 1.1398960779360423 " " y[1] (numeric) = 1.1398960779360423 " " absolute error = 0.0 " " relative error = 0.0 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.16000000000000003 " " y[1] (analytic) = 1.148507283375627 " " y[1] (numeric) = 1.148507283375627 " " absolute error = 0.0 " " relative error = 0.0 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.17000000000000004 " " y[1] (analytic) = 1.1570297669095608 " " y[1] (numeric) = 1.1570297669095606 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.919091550411143600000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.18000000000000005 " " y[1] (analytic) = 1.1654636927881215 " " y[1] (numeric) = 1.1654636927881212 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.905203965589329400000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.19000000000000006 " " y[1] (analytic) = 1.1738092351172704 " " y[1] (numeric) = 1.1738092351172702 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.891658357099633400000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.20000000000000007 " " y[1] (analytic) = 1.1820665778412418 " " y[1] (numeric) = 1.1820665778412416 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.878444151010021700000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.21000000000000008 " " y[1] (analytic) = 1.1902359147241484 " " y[1] (numeric) = 1.1902359147241481 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.865551208614746300000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.22000000000000008 " " y[1] (analytic) = 1.1983174493306055 " " y[1] (numeric) = 1.1983174493306055 " " absolute error = 0.0 " " relative error = 0.0 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.2300000000000001 " " y[1] (analytic) = 1.206311395005375 " " y[1] (numeric) = 1.2063113950053748 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.84069060314266480000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.2400000000000001 " " y[1] (analytic) = 1.2142179748520296 " " y[1] (numeric) = 1.2142179748520294 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.828704643843628600000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.2500000000000001 " " y[1] (analytic) = 1.2220374217106449 " " y[1] (numeric) = 1.2220374217106447 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.817003317412379800000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.2600000000000001 " " y[1] (analytic) = 1.2297699781345135 " " y[1] (numeric) = 1.229769978134513 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 3.611156702033977400000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.27000000000000013 " " y[1] (analytic) = 1.2374158963658908 " " y[1] (numeric) = 1.2374158963658903 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 3.58884358245507850000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.28000000000000014 " " y[1] (analytic) = 1.244975438310771 " " y[1] (numeric) = 1.2449754383107707 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.783525988483031200000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.29000000000000015 " " y[1] (analytic) = 1.2524488755126972 " " y[1] (numeric) = 1.252448875512697 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.77288358244671700000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.30000000000000016 " " y[1] (analytic) = 1.2598364891256062 " " y[1] (numeric) = 1.2598364891256058 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 3.52497497638192900000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.31000000000000016 " " y[1] (analytic) = 1.2671385698857136 " " y[1] (numeric) = 1.2671385698857132 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 3.504661766314288700000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.3200000000000002 " " y[1] (analytic) = 1.274355418082441 " " y[1] (numeric) = 1.2743554180824406 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 3.484814389680206400000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.3300000000000002 " " y[1] (analytic) = 1.2814873435283871 " " y[1] (numeric) = 1.2814873435283867 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 3.46542017830100600000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.3400000000000002 " " y[1] (analytic) = 1.2885346655283465 " " y[1] (numeric) = 1.2885346655283458 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 5.16970037823510700000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.3500000000000002 " " y[1] (analytic) = 1.295497712847379 " " y[1] (numeric) = 1.2954977128473786 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 3.427942831902013300000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.3600000000000002 " " y[1] (analytic) = 1.302376823677935 " " y[1] (numeric) = 1.3023768236779345 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 3.40983655249597400000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.3700000000000002 " " y[1] (analytic) = 1.3091723456060347 " " y[1] (numeric) = 1.309172345606034 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 5.08820566681563200000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.3800000000000002 " " y[1] (analytic) = 1.3158846355765104 " " y[1] (numeric) = 1.31588463557651 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 3.374833916618381600000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.39000000000000024 " " y[1] (analytic) = 1.3225140598573133 " " y[1] (numeric) = 1.3225140598573126 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 5.03687510775472100000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.40000000000000024 " " y[1] (analytic) = 1.3290609940028852 " " y[1] (numeric) = 1.3290609940028846 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 5.012063537948115000000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.41000000000000025 " " y[1] (analytic) = 1.3355258228166051 " " y[1] (numeric) = 1.3355258228166047 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 3.325201222343157600000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.42000000000000026 " " y[1] (analytic) = 1.3419089403123086 " " y[1] (numeric) = 1.341908940312308 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 4.96407613634395800000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.43000000000000027 " " y[1] (analytic) = 1.3482107496748852 " " y[1] (numeric) = 1.3482107496748847 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 3.2939153612085700000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.4400000000000003 " " y[1] (analytic) = 1.3544316632199636 " " y[1] (numeric) = 1.3544316632199631 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 3.27878638627145900000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.4500000000000003 " " y[1] (analytic) = 1.3605721023526771 " " y[1] (numeric) = 1.3605721023526767 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 3.26398879619941800000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.4600000000000003 " " y[1] (analytic) = 1.3666324975255253 " " y[1] (numeric) = 1.366632497525525 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.624757243275521400000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.4700000000000003 " " y[1] (analytic) = 1.3726132881953292 " " y[1] (numeric) = 1.3726132881953288 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 3.235355607215035000000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.4800000000000003 " " y[1] (analytic) = 1.3785149227792843 " " y[1] (numeric) = 1.3785149227792841 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.610752275915573500000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.4900000000000003 " " y[1] (analytic) = 1.3843378586101216 " " y[1] (numeric) = 1.3843378586101214 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.603976973857845800000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.5000000000000003 " " y[1] (analytic) = 1.390082561890373 " " y[1] (numeric) = 1.3900825618903725 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 3.19469664626355570000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.5100000000000003 " " y[1] (analytic) = 1.3957495076457516 " " y[1] (numeric) = 1.3957495076457511 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 3.18172571380032130000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.5200000000000004 " " y[1] (analytic) = 1.4013391796776502 " " y[1] (numeric) = 1.4013391796776498 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 3.169034422859827000000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.5300000000000004 " " y[1] (analytic) = 1.4068520705147611 " " y[1] (numeric) = 1.406852070514761 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.578308121932010500000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.5400000000000004 " " y[1] (analytic) = 1.4122886813638242 " " y[1] (numeric) = 1.412288681363824 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.572232418591689400000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.5500000000000004 " " y[1] (analytic) = 1.417649522059506 " " y[1] (numeric) = 1.4176495220595056 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 3.132574045557516300000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.5600000000000004 " " y[1] (analytic) = 1.4229351110134163 " " y[1] (numeric) = 1.4229351110134159 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 3.12093788685684800000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.5700000000000004 " " y[1] (analytic) = 1.428145975162269 " " y[1] (numeric) = 1.4281459751622685 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 3.10955054716731070000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.5800000000000004 " " y[1] (analytic) = 1.4332826499151872 " " y[1] (numeric) = 1.4332826499151867 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 3.09840637418126230000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.5900000000000004 " " y[1] (analytic) = 1.4383456791001636 " " y[1] (numeric) = 1.4383456791001632 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 3.087499870878654400000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.6000000000000004 " " y[1] (analytic) = 1.4433356149096785 " " y[1] (numeric) = 1.443335614909678 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 3.076825689483543300000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.6100000000000004 " " y[1] (analytic) = 1.4482530178454796 " " y[1] (numeric) = 1.4482530178454793 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.533189312840929400000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.6200000000000004 " " y[1] (analytic) = 1.4530984566625342 " " y[1] (numeric) = 1.4530984566625338 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 3.056153613087191400000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.6300000000000004 " " y[1] (analytic) = 1.457872508312152 " " y[1] (numeric) = 1.4578725083121518 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.52307285897106900000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 14.582294584819396 " " "Order of pole (ratio test) Not computed" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.6400000000000005 " " y[1] (analytic) = 1.4625757578842928 " " y[1] (numeric) = 1.4625757578842924 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 3.036350134043418000000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 14.890876444419295 " " "Order of pole (ratio test) Not computed" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.6500000000000005 " " y[1] (analytic) = 1.467208798549056 " " y[1] (numeric) = 1.4672087985490556 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 3.026762177879718000000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 15.20408798267353 " " "Order of pole (ratio test) Not computed" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.6600000000000005 " " y[1] (analytic) = 1.4717722314973654 " " y[1] (numeric) = 1.471772231497365 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 3.017377283971794000000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 15.522098256873289 " " "Order of pole (ratio test) Not computed" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.6700000000000005 " " y[1] (analytic) = 1.4762666658808494 " " y[1] (numeric) = 1.4762666658808492 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.504095500202486400000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 15.845083494565142 " " "Order of pole (ratio test) Not computed" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.6800000000000005 " " y[1] (analytic) = 1.480692718750928 " " y[1] (numeric) = 1.4806927187509278 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.499599492272387600000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 16.173227502851304 " " "Order of pole (ratio test) Not computed" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.6900000000000005 " " y[1] (analytic) = 1.485051014997107 " " y[1] (numeric) = 1.4850510149971063 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 4.4855954983902800000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 16.50672210538052 " " "Order of pole (ratio test) Not computed" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.7000000000000005 " " y[1] (analytic) = 1.4893421872844885 " " y[1] (numeric) = 1.489342187284488 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.981780907312970300000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 16.84576760926161 " " "Order of pole (ratio test) Not computed" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.7100000000000005 " " y[1] (analytic) = 1.4935668759905085 " " y[1] (numeric) = 1.4935668759905079 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 4.46002000635776800000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 17.190573304338834 " " "Order of pole (ratio test) Not computed" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.7200000000000005 " " y[1] (analytic) = 1.4977257291408952 " " y[1] (numeric) = 1.4977257291408947 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.9650903447108096000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 17.541357997496704 " " "Order of pole (ratio test) Not computed" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.7300000000000005 " " y[1] (analytic) = 1.5018194023448705 " " y[1] (numeric) = 1.50181940234487 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.95700807405126400000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 17.89835058491631 " " "Order of pole (ratio test) Not computed" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.7400000000000005 " " y[1] (analytic) = 1.5058485587295882 " " y[1] (numeric) = 1.5058485587295876 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 4.42364413681199700000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 18.261790665486036 " " "Order of pole (ratio test) Not computed" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.7500000000000006 " " y[1] (analytic) = 1.5098138688738212 " " y[1] (numeric) = 1.5098138688738205 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 4.4120260682991796000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 18.631929198881462 " " "Order of pole (ratio test) Not computed" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.7600000000000006 " " y[1] (analytic) = 1.5137160107409053 " " y[1] (numeric) = 1.513716010740905 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.93376833368300100000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 19.00902921217608 " " "Order of pole (ratio test) Not computed" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.7700000000000006 " " y[1] (analytic) = 1.5175556696109436 " " y[1] (numeric) = 1.5175556696109431 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.926345429976311400000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 19.393366559229815 " " "Order of pole (ratio test) Not computed" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.7800000000000006 " " y[1] (analytic) = 1.5213335380122777 " " y[1] (numeric) = 1.5213335380122772 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.91907855019284200000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 19.206245559681474 " " "Order of pole (ratio test) Not computed" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.7900000000000006 " " y[1] (analytic) = 1.5250503156522361 " " y[1] (numeric) = 1.525050315652236 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.455982157743214400000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 18.825930021943517 " " "Order of pole (ratio test) Not computed" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.8000000000000006 " " y[1] (analytic) = 1.5287067093471656 " " y[1] (numeric) = 1.5287067093471653 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.452499708200113100000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 18.453077412358997 " " "Order of pole (ratio test) Not computed" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.8100000000000006 " " y[1] (analytic) = 1.5323034329517473 " " y[1] (numeric) = 1.5323034329517469 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.89818061031549700000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 18.087397774889016 " " "Order of pole (ratio test) Not computed" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.8200000000000006 " " y[1] (analytic) = 1.5358412072876138 " " y[1] (numeric) = 1.5358412072876133 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.89150471899598500000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 17.728615019669064 " " "Order of pole (ratio test) Not computed" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.8300000000000006 " " y[1] (analytic) = 1.5393207600712673 " " y[1] (numeric) = 1.5393207600712668 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.8849686262238300000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 17.37646608256649 " " "Order of pole (ratio test) Not computed" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.8400000000000006 " " y[1] (analytic) = 1.5427428258413083 " " y[1] (numeric) = 1.5427428258413078 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.87856927552319840000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 17.03070014462918 " " "Order of pole (ratio test) Not computed" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.8500000000000006 " " y[1] (analytic) = 1.5461081458849824 " " y[1] (numeric) = 1.546108145884982 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.872303667967992500000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 16.69107790648819 " " "Order of pole (ratio test) Not computed" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.8600000000000007 " " y[1] (analytic) = 1.549417468164052 " " y[1] (numeric) = 1.5494174681640516 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.86616886007020600000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 16.357370913238025 " " "Order of pole (ratio test) Not computed" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.8700000000000007 " " y[1] (analytic) = 1.5526715472400014 " " y[1] (numeric) = 1.552671547240001 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.86016196174565640000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 16.029360925728202 " " "Order of pole (ratio test) Not computed" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.8800000000000007 " " y[1] (analytic) = 1.5558711441985804 " " y[1] (numeric) = 1.55587114419858 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.854280134353993600000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 15.70683933457039 " " "Order of pole (ratio test) Not computed" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.8900000000000007 " " y[1] (analytic) = 1.5590170265736971 " " y[1] (numeric) = 1.5590170265736967 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.84852058881006600000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 15.38960661349667 " " "Order of pole (ratio test) Not computed" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.9000000000000007 " " y[1] (analytic) = 1.5621099682706647 " " y[1] (numeric) = 1.5621099682706643 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.842880583763843000000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 15.077471809004006 " " "Order of pole (ratio test) Not computed" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.9100000000000007 " " y[1] (analytic) = 1.5651507494888117 " " y[1] (numeric) = 1.5651507494888113 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.837357423846265000000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 14.77025206348853 " " "Order of pole (ratio test) Not computed" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.9200000000000007 " " y[1] (analytic) = 1.568140156643463 " " y[1] (numeric) = 1.5681401566434625 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.83194845797850500000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 14.467772169317152 " " "Order of pole (ratio test) Not computed" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.9300000000000007 " " y[1] (analytic) = 1.5710789822872986 " " y[1] (numeric) = 1.571078982287298 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 4.2399766166134100000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 14.169864151502582 " " "Order of pole (ratio test) Not computed" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.9400000000000007 " " y[1] (analytic) = 1.5739680250310983 " " y[1] (numeric) = 1.573968025031098 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.82146271580890800000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 13.876366876846797 " " "Order of pole (ratio test) Not computed" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.9500000000000007 " " y[1] (analytic) = 1.5768080894638836 " " y[1] (numeric) = 1.5768080894638832 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.816380844425103000000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.9600000000000007 " " y[1] (analytic) = 1.579599986072457 " " y[1] (numeric) = 1.5795999860724563 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 4.21710446092988240000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.9700000000000008 " " y[1] (analytic) = 1.5823445311603546 " " y[1] (numeric) = 1.582344531160354 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 4.20978997719674300000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.9800000000000008 " " y[1] (analytic) = 1.5850425467662175 " " y[1] (numeric) = 1.5850425467662168 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 4.20262418907385900000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.9900000000000008 " " y[1] (analytic) = 1.5876948605815877 " " y[1] (numeric) = 1.587694860581587 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 4.195603521265306400000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.0000000000000007 " " y[1] (analytic) = 1.59030230586814 " " y[1] (numeric) = 1.5903023058681391 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 5.58496593020577900000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.0100000000000007 " " y[1] (analytic) = 1.5928657213743556 " " y[1] (numeric) = 1.592865721374355 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 4.181983489482972000000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.0200000000000007 " " y[1] (analytic) = 1.5953859512516497 " " y[1] (numeric) = 1.595385951251649 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 4.1753772135982703000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.0300000000000007 " " y[1] (analytic) = 1.5978638449699556 " " y[1] (numeric) = 1.597863844969955 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 4.16890223076309240000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.0400000000000007 " " y[1] (analytic) = 1.6003002572327785 " " y[1] (numeric) = 1.600300257232778 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.775036796019621500000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.0500000000000007 " " y[1] (analytic) = 1.6026960478917271 " " y[1] (numeric) = 1.6026960478917267 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.770888531448252300000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.0600000000000007 " " y[1] (analytic) = 1.6050520818605278 " " y[1] (numeric) = 1.6050520818605272 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 4.150231773182909700000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.0700000000000007 " " y[1] (analytic) = 1.6073692290285342 " " y[1] (numeric) = 1.6073692290285337 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.762832595211881500000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.0800000000000007 " " y[1] (analytic) = 1.60964836417374 " " y[1] (numeric) = 1.6096483641737396 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.758920642136776000000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.0900000000000007 " " y[1] (analytic) = 1.611890366875301 " " y[1] (numeric) = 1.6118903668753004 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 4.132624826503646000000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.1000000000000008 " " y[1] (analytic) = 1.6140961214255776 " " y[1] (numeric) = 1.614096121425577 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 4.12697735861456200000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.1100000000000008 " " y[1] (analytic) = 1.6162665167417072 " " y[1] (numeric) = 1.6162665167417063 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 5.49524729059312400000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.1200000000000008 " " y[1] (analytic) = 1.6184024462767124 " " y[1] (numeric) = 1.6184024462767117 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 4.115996094219936400000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.1300000000000008 " " y[1] (analytic) = 1.6205048079301574 " " y[1] (numeric) = 1.620504807930157 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.740437471563506600000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.1400000000000008 " " y[1] (analytic) = 1.6225745039583583 " " y[1] (numeric) = 1.6225745039583577 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 4.10541280631505300000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.1500000000000008 " " y[1] (analytic) = 1.6246124408841576 " " y[1] (numeric) = 1.624612440884157 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 4.100262918167524000000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.1600000000000008 " " y[1] (analytic) = 1.6266195294062733 " " y[1] (numeric) = 1.6266195294062729 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.73013573132346500000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.1700000000000008 " " y[1] (analytic) = 1.6285966843082305 " " y[1] (numeric) = 1.62859668430823 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.726821281959663000000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.1800000000000008 " " y[1] (analytic) = 1.6305448243668819 " " y[1] (numeric) = 1.6305448243668816 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.3617816671261900000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.1900000000000008 " " y[1] (analytic) = 1.632464872260533 " " y[1] (numeric) = 1.6324648722605328 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.360179987319164500000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.2000000000000008 " " y[1] (analytic) = 1.6343577544766736 " " y[1] (numeric) = 1.6343577544766734 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.358604652603313800000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.2100000000000009 " " y[1] (analytic) = 1.6362244012193305 " " y[1] (numeric) = 1.63622440121933 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.71410944317370500000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.2200000000000009 " " y[1] (analytic) = 1.6380657463160473 " " y[1] (numeric) = 1.6380657463160468 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.71105852038481200000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.2300000000000009 " " y[1] (analytic) = 1.639882727124503 " " y[1] (numeric) = 1.6398827271245024 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.70805468284163800000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.2400000000000009 " " y[1] (analytic) = 1.6416762844387764 " " y[1] (numeric) = 1.641676284438776 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.705096090255571000000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.2500000000000009 " " y[1] (analytic) = 1.6434473623952688 " " y[1] (numeric) = 1.6434473623952683 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.702180915626148400000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.260000000000001 " " y[1] (analytic) = 1.6451969083782894 " " y[1] (numeric) = 1.645196908378289 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.699307344844284500000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.270000000000001 " " y[1] (analytic) = 1.646925872925319 " " y[1] (numeric) = 1.6469258729253182 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 4.044710364479775500000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.280000000000001 " " y[1] (analytic) = 1.6486352096319556 " " y[1] (numeric) = 1.648635209631955 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 4.04051673094985600000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.290000000000001 " " y[1] (analytic) = 1.650325875056558 " " y[1] (numeric) = 1.650325875056557 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 5.38183660042103300000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.300000000000001 " " y[1] (analytic) = 1.6519988286245875 " " y[1] (numeric) = 1.6519988286245868 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 4.0322898735327800000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.310000000000001 " " y[1] (analytic) = 1.6536550325326698 " " y[1] (numeric) = 1.653655032532669 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 4.028251368454222600000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.320000000000001 " " y[1] (analytic) = 1.655295451652373 " " y[1] (numeric) = 1.6552954516523724 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 4.024259319447390000000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.330000000000001 " " y[1] (analytic) = 1.6569210534337233 " " y[1] (numeric) = 1.6569210534337226 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 4.020311127042718000000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.340000000000001 " " y[1] (analytic) = 1.6585328078084596 " " y[1] (numeric) = 1.658532807808459 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 4.016404207615917300000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.350000000000001 " " y[1] (analytic) = 1.6601316870930418 " " y[1] (numeric) = 1.660131687093041 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 5.350047990803439000000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.360000000000001 " " y[1] (analytic) = 1.6617186658914196 " " y[1] (numeric) = 1.6617186658914187 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 5.344938574326401000000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.370000000000001 " " y[1] (analytic) = 1.6632947209975733 " " y[1] (numeric) = 1.6632947209975724 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 5.339873977159223000000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.380000000000001 " " y[1] (analytic) = 1.6648608312978346 " " y[1] (numeric) = 1.6648608312978337 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 5.334850835596570000000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.390000000000001 " " y[1] (analytic) = 1.6664179776729995 " " y[1] (numeric) = 1.6664179776729988 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.9973993541841700000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.400000000000001 " " y[1] (analytic) = 1.667967142900241 " " y[1] (numeric) = 1.6679671429002403 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.993686671889883000000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.410000000000001 " " y[1] (analytic) = 1.6695093115548314 " " y[1] (numeric) = 1.6695093115548305 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 5.31999680117360700000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.420000000000001 " " y[1] (analytic) = 1.671045469911686 " " y[1] (numeric) = 1.671045469911685 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 5.315106235541665000000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.430000000000001 " " y[1] (analytic) = 1.6725766058467368 " " y[1] (numeric) = 1.672576605846736 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 5.310240598818418000000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.440000000000001 " " y[1] (analytic) = 1.6741037087381456 " " y[1] (numeric) = 1.6741037087381447 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 5.30539664337515300000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.450000000000001 " " y[1] (analytic) = 1.6756277693673667 " " y[1] (numeric) = 1.6756277693673658 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 5.30057114078180500000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.460000000000001 " " y[1] (analytic) = 1.6771497798200696 " " y[1] (numeric) = 1.6771497798200687 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 5.29576088186597200000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.470000000000001 " " y[1] (analytic) = 1.678670733386932 " " y[1] (numeric) = 1.6786707333869308 " " absolute error = 1.1102230246251565000000000000000E-15 " " relative error = 6.61370334601080600000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.480000000000001 " " y[1] (analytic) = 1.6801916244643098 " " y[1] (numeric) = 1.6801916244643087 " " absolute error = 1.1102230246251565000000000000000E-15 " " relative error = 6.60771669409508900000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.490000000000001 " " y[1] (analytic) = 1.6817134484548009 " " y[1] (numeric) = 1.6817134484547998 " " absolute error = 1.1102230246251565000000000000000E-15 " " relative error = 6.60173720823399800000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.500000000000001 " " y[1] (analytic) = 1.683237201667703 " " y[1] (numeric) = 1.683237201667702 " " absolute error = 1.1102230246251565000000000000000E-15 " " relative error = 6.59576097489515700000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.5100000000000011 " " y[1] (analytic) = 1.6847638812193861 " " y[1] (numeric) = 1.684763881219385 " " absolute error = 1.1102230246251565000000000000000E-15 " " relative error = 6.58978410566118800000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.5200000000000011 " " y[1] (analytic) = 1.6862944849335795 " " y[1] (numeric) = 1.6862944849335784 " " absolute error = 1.1102230246251565000000000000000E-15 " " relative error = 6.58380273756802600000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.5300000000000011 " " y[1] (analytic) = 1.6878300112415912 " " y[1] (numeric) = 1.6878300112415903 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 5.2622504267877600000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.5400000000000011 " " y[1] (analytic) = 1.6893714590824664 " " y[1] (numeric) = 1.6893714590824653 " " absolute error = 1.1102230246251565000000000000000E-15 " " relative error = 6.57181118253378200000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.5500000000000012 " " y[1] (analytic) = 1.6909198278030926 " " y[1] (numeric) = 1.6909198278030917 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 5.25263472044136100000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.5600000000000012 " " y[1] (analytic) = 1.6924761170582676 " " y[1] (numeric) = 1.6924761170582667 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 5.24780474447042100000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.5700000000000012 " " y[1] (analytic) = 1.6940413267107335 " " y[1] (numeric) = 1.6940413267107326 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 5.242956034754319000000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.5800000000000012 " " y[1] (analytic) = 1.695616456731192 " " y[1] (numeric) = 1.695616456731191 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 5.23808563059334100000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 8.874468381578253000E-3 " " Order of pole (three term test) = -0.89490508967092 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.5900000000000012 " " y[1] (analytic) = 1.6972025070983077 " " y[1] (numeric) = 1.6972025070983068 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 5.23319059443670100000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 1.851326600938967300E-2 " " Order of pole (three term test) = -0.901772189378976 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.6000000000000012 " " y[1] (analytic) = 1.6988004776987116 " " y[1] (numeric) = 1.6988004776987107 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 5.22826801239955200000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 2.814464333326631700E-2 " " Order of pole (three term test) = -0.9134710156510109 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.6100000000000012 " " y[1] (analytic) = 1.7004113682270126 " " y[1] (numeric) = 1.7004113682270119 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.917486246105607600000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 3.776474002241432000E-2 " " Order of pole (three term test) = -0.9299968698555369 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.6200000000000012 " " y[1] (analytic) = 1.7020361780858297 " " y[1] (numeric) = 1.702036178085829 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.913746507575718300000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 4.7369700295246100E-2 " " Order of pole (three term test) = -0.9513431147005369 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.6300000000000012 " " y[1] (analytic) = 1.703675906285852 " " y[1] (numeric) = 1.7036759062858513 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.90997966407424400000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 5.6955674474254890E-2 " " Order of pole (three term test) = -0.9775011769318743 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.6400000000000012 " " y[1] (analytic) = 1.7053315513459382 " " y[1] (numeric) = 1.7053315513459375 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.90618360546572730000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 6.65188205383684800E-2 " " Order of pole (three term test) = -1.0084605508186815 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.6500000000000012 " " y[1] (analytic) = 1.7070041111932663 " " y[1] (numeric) = 1.7070041111932657 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.902356241599435600000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 7.60553056721396700E-2 " " Order of pole (three term test) = -1.0442088024242429 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.6600000000000013 " " y[1] (analytic) = 1.7086945830635412 " " y[1] (numeric) = 1.7086945830635405 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.898495502811122000000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 8.55613078111358900E-2 " " Order of pole (three term test) = -1.0847315746605615 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.6700000000000013 " " y[1] (analytic) = 1.7104039634012722 " " y[1] (numeric) = 1.7104039634012715 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.89459934044139300000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 9.50330171828872700E-2 " " Order of pole (three term test) = -1.1300125931244465 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.6800000000000013 " " y[1] (analytic) = 1.712133247760129 " " y[1] (numeric) = 1.7121332477601285 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.593777151579967400000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.10446663784276027 " " Order of pole (three term test) = -1.1800336727126428 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.6900000000000013 " " y[1] (analytic) = 1.713883430703388 " " y[1] (numeric) = 1.7138834307033874 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.59112843904328870000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.11385838920412136 " " Order of pole (three term test) = -1.2347747250131897 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.7000000000000013 " " y[1] (analytic) = 1.7156555057044756 " " y[1] (numeric) = 1.7156555057044751 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.58845210109772300000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.12320450756215931 " " Order of pole (three term test) = -1.2942137664698514 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.7100000000000013 " " y[1] (analytic) = 1.7174504650476226 " " y[1] (numeric) = 1.717450465047622 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.585746831642964400000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.1325012476107403 " " Order of pole (three term test) = -1.3583269273161624 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.7200000000000013 " " y[1] (analytic) = 1.7192692997286365 " " y[1] (numeric) = 1.719269299728636 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.58301134045815900000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.14174488395166787 " " Order of pole (three term test) = -1.4270884612752714 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.7300000000000013 " " y[1] (analytic) = 1.7211129993558025 " " y[1] (numeric) = 1.7211129993558019 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.87036653040458100000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.15093171259572807 " " Order of pole (three term test) = -1.5004707560214685 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.7400000000000013 " " y[1] (analytic) = 1.7229825520509232 " " y[1] (numeric) = 1.7229825520509225 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.86616692073969540000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.16005805245490146 " " Order of pole (three term test) = -1.57844434439895 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.7500000000000013 " " y[1] (analytic) = 1.7248789443505081 " " y[1] (numeric) = 1.7248789443505075 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.861916321472184700000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.16912024682512736 " " Order of pole (three term test) = -1.660977916393046 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.7600000000000013 " " y[1] (analytic) = 1.7268031611071202 " " y[1] (numeric) = 1.7268031611071195 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.8576128986699900000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.17811466485901056 " " Order of pole (three term test) = -1.7480383318488222 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.7700000000000014 " " y[1] (analytic) = 1.7287561853908913 " " y[1] (numeric) = 1.7287561853908906 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.85325484532958300000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.18703770302786682 " " Order of pole (three term test) = -1.839590633931674 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.7800000000000014 " " y[1] (analytic) = 1.7307389983912165 " " y[1] (numeric) = 1.7307389983912158 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.84884038202345400000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.19588578657250533 " " Order of pole (three term test) = -1.9355980633241856 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.7900000000000014 " " y[1] (analytic) = 1.7327525793186358 " " y[1] (numeric) = 1.732752579318635 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 5.12582367673854800000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.20465537094215186 " " Order of pole (three term test) = -2.0360220731532155 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.8000000000000014 " " y[1] (analytic) = 1.7347979053069134 " " y[1] (numeric) = 1.7347979053069125 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 5.11978033281630300000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.2133429432209245 " " Order of pole (three term test) = -2.1408223446409056 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.8100000000000014 " " y[1] (analytic) = 1.7368759513153256 " " y[1] (numeric) = 1.736875951315325 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.83524116544209650000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.22194502354127857 " " Order of pole (three term test) = -2.249956803472989 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.8200000000000014 " " y[1] (analytic) = 1.7389876900311663 " " y[1] (numeric) = 1.7389876900311656 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.83058384250641500000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.2304581664838357 " " Order of pole (three term test) = -2.3633816368773917 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.8300000000000014 " " y[1] (analytic) = 1.7411340917724778 " " y[1] (numeric) = 1.741134091772477 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 5.101148865541757000000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.23887896246303275 " " Order of pole (three term test) = -2.4810513114059862 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.8400000000000014 " " y[1] (analytic) = 1.74331612439102 " " y[1] (numeric) = 1.7433161243910194 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.82107298530144470000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.24720403909801902 " " Order of pole (three term test) = -2.6029185914119175 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.8500000000000014 " " y[1] (analytic) = 1.7455347531754875 " " y[1] (numeric) = 1.7455347531754868 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.81621628308035250000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.2554300625682416 " " Order of pole (three term test) = -2.728934558214675 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.8600000000000014 " " y[1] (analytic) = 1.7477909407549796 " " y[1] (numeric) = 1.747790940754979 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.81129000753001550000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.26355373895317225 " " Order of pole (three term test) = -2.8590486299448874 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.8700000000000014 " " y[1] (analytic) = 1.7500856470027395 " " y[1] (numeric) = 1.7500856470027388 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.80629265725331200000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.2715718155556204 " " Order of pole (three term test) = -2.9932085820603325 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.8800000000000014 " " y[1] (analytic) = 1.7524198289401671 " " y[1] (numeric) = 1.7524198289401665 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.801222765083411000000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.27948108220810114 " " Order of pole (three term test) = -3.131360568524606 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.8900000000000015 " " y[1] (analytic) = 1.754794440641118 " " y[1] (numeric) = 1.7547944406411173 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.79607889874394900000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.2872783725617256 " " Order of pole (three term test) = -3.273449143639473 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.9000000000000015 " " y[1] (analytic) = 1.757210433136497 " " y[1] (numeric) = 1.7572104331364962 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 5.05447954867186400000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.29496056535708703 " " Order of pole (three term test) = -3.419417284521679 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.9100000000000015 " " y[1] (analytic) = 1.7596687543191551 " " y[1] (numeric) = 1.7596687543191543 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 5.047418257101326000000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.3025245856766332 " " Order of pole (three term test) = -3.569206414214798 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.9200000000000015 " " y[1] (analytic) = 1.7621703488491023 " " y[1] (numeric) = 1.7621703488491012 " " absolute error = 1.1102230246251565000000000000000E-15 " " relative error = 6.30031611501270800000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.3099674061780097 " " Order of pole (three term test) = -3.7227564254262995 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.9300000000000015 " " y[1] (analytic) = 1.7647161580590405 " " y[1] (numeric) = 1.7647161580590396 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 5.03298173841739200000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.3172860483078862 " " Order of pole (three term test) = -3.8800057048799794 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.9400000000000015 " " y[1] (analytic) = 1.7673071198602333 " " y[1] (numeric) = 1.7673071198602324 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 5.02560313212774500000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.3244775834957641 " " Order of pole (three term test) = -4.040891158273372 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.9500000000000015 " " y[1] (analytic) = 1.7699441686487134 " " y[1] (numeric) = 1.7699441686487127 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.76358659541030800000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.33153913432729304 " " Order of pole (three term test) = -4.205348235829767 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.9600000000000015 " " y[1] (analytic) = 1.7726282352118459 " " y[1] (numeric) = 1.7726282352118452 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.75788787261128470000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.33846787569661835 " " Order of pole (three term test) = -4.373310958434025 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.9700000000000015 " " y[1] (analytic) = 1.7753602466352485 " " y[1] (numeric) = 1.7753602466352476 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 5.00280673392031500000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.3452610359373005 " " Order of pole (three term test) = -4.544711944341315 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.9800000000000015 " " y[1] (analytic) = 1.7781411262100846 " " y[1] (numeric) = 1.7781411262100837 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.994982718796800000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.3519158979313488 " " Order of pole (three term test) = -4.7194824364474925 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.9900000000000015 " " y[1] (analytic) = 1.780971793340735 " " y[1] (numeric) = 1.780971793340734 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.987043719732843000000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.3584298001959296 " " Order of pole (three term test) = -4.897552330109791 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.0000000000000013 " " y[1] (analytic) = 1.783853163452858 " " y[1] (numeric) = 1.7838531634528572 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.97898839375854940000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.364800137947307 " " Order of pole (three term test) = -5.078850201506022 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.010000000000001 " " y[1] (analytic) = 1.7867861479018479 " " y[1] (numeric) = 1.7867861479018472 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.72811159050739500000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.37102436414160417 " " Order of pole (three term test) = -5.263303336520732 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.020000000000001 " " y[1] (analytic) = 1.7897716538817 " " y[1] (numeric) = 1.7897716538816992 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.721892752800989300000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.37709999049195575 " " Order of pole (three term test) = -5.4508377601458635 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.0300000000000007 " " y[1] (analytic) = 1.7928105843342912 " " y[1] (numeric) = 1.7928105843342905 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.71558390270461100000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.38302458846165965 " " Order of pole (three term test) = -5.64137826638401 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.0400000000000005 " " y[1] (analytic) = 1.7959038378590881 " " y[1] (numeric) = 1.7959038378590877 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.472789469504475500000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.38879579023292743 " " Order of pole (three term test) = -5.834848448641554 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.0500000000000003 " " y[1] (analytic) = 1.7990523086232872 " " y[1] (numeric) = 1.7990523086232868 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.46846191031487500000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.39441128965085176 " " Order of pole (three term test) = -6.03117073059917 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.06 " " y[1] (analytic) = 1.802256886272398 " " y[1] (numeric) = 1.8022568862723976 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.46407275917569600000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.3998688431422204 " " Order of pole (three term test) = -6.230266397546773 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.07 " " y[1] (analytic) = 1.80551845584128 " " y[1] (numeric) = 1.8055184558412798 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.229810773778935300000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.4051662706088129 " " Order of pole (three term test) = -6.43205562816998 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.0799999999999996 " " y[1] (analytic) = 1.8088378976656405 " " y[1] (numeric) = 1.8088378976656405 " " absolute error = 0.0 " " relative error = 0.0 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.4103014562948282 " " Order of pole (three term test) = -6.636457526774711 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.0899999999999994 " " y[1] (analytic) = 1.8122160872940007 " " y[1] (numeric) = 1.8122160872940007 " " absolute error = 0.0 " " relative error = 0.0 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.41527234962810705 " " Order of pole (three term test) = -6.843390155936788 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.099999999999999 " " y[1] (analytic) = 1.8156538954001422 " " y[1] (numeric) = 1.8156538954001422 " " absolute error = 0.0 " " relative error = 0.0 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.4200769660348202 " " Order of pole (three term test) = -7.0527705695629015 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.109999999999999 " " y[1] (analytic) = 1.81915218769604 " " y[1] (numeric) = 1.8191521876960401 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.220593892181452100000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.424713387727301 " " Order of pole (three term test) = -7.2645148463491385 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.1199999999999988 " " y[1] (analytic) = 1.8227118248452923 " " y[1] (numeric) = 1.8227118248452925 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.218210152029259900000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.4291797644647234 " " Order of pole (three term test) = -7.478538123623476 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.1299999999999986 " " y[1] (analytic) = 1.8263336623770545 " " y[1] (numeric) = 1.826333662377055 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.431588591933747400000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.43347431428632704 " " Order of pole (three term test) = -7.694754631558117 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.1399999999999983 " " y[1] (analytic) = 1.830018550600488 " " y[1] (numeric) = 1.8300185506004885 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.426692394480605700000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.43759532421690805 " " Order of pole (three term test) = -7.913077727737536 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.149999999999998 " " y[1] (analytic) = 1.8337673345197283 " " y[1] (numeric) = 1.8337673345197287 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.421731489542382500000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.44154115094430624 " " Order of pole (three term test) = -8.133419932068065 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.159999999999998 " " y[1] (analytic) = 1.8375808537493867 " " y[1] (numeric) = 1.8375808537493872 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.416705686413450300000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.44531022146862903 " " Order of pole (three term test) = -8.355692962014661 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.1699999999999977 " " y[1] (analytic) = 1.841459942430589 " " y[1] (numeric) = 1.8414599424305895 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.411614825918494700000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.44890103372296525 " " Order of pole (three term test) = -8.579807768150248 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.1799999999999975 " " y[1] (analytic) = 1.8454054291475623 " " y[1] (numeric) = 1.845405429147563 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.609688170706192000000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.4523121571653567 " " Order of pole (three term test) = -8.805674570003243 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.1899999999999973 " " y[1] (analytic) = 1.849418136844777 " " y[1] (numeric) = 1.8494181368447777 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.60185618116387600000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.45554223334179816 " " Order of pole (three term test) = -9.033202892188202 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.199999999999997 " " y[1] (analytic) = 1.853498882744653 " " y[1] (numeric) = 1.853498882744654 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.791901565027730000000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 13.830019744091002 " " "Order of pole (ratio test) Not computed" Radius of convergence (three term test) for eq 1 = 0.4585899764200656 " " Order of pole (three term test) = -9.26230160080532 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.209999999999997 " " y[1] (analytic) = 1.8576484782658387 " " y[1] (numeric) = 1.8576484782658396 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.78119746599885260000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 14.122828980062188 " " "Order of pole (ratio test) Not computed" Radius of convergence (three term test) for eq 1 = 0.4614541736941657 " " Order of pole (three term test) = -9.49287894009336 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.2199999999999966 " " y[1] (analytic) = 1.861867728942069 " " y[1] (numeric) = 1.86186772894207 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.770362608974358400000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 14.420023903190474 " " "Order of pole (ratio test) Not computed" Radius of convergence (three term test) for eq 1 = 0.46413368605922356 " " Order of pole (three term test) = -9.724842569321325 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.2299999999999964 " " y[1] (analytic) = 1.8661574343416132 " " y[1] (numeric) = 1.8661574343416143 " " absolute error = 1.1102230246251565000000000000000E-15 " " relative error = 5.94924631863574400000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 14.721764591441373 " " "Order of pole (ratio test) Not computed" Radius of convergence (three term test) for eq 1 = 0.46662744845663817 " " Order of pole (three term test) = -9.958099599903806 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.239999999999996 " " y[1] (analytic) = 1.8705183879873186 " " y[1] (numeric) = 1.8705183879873197 " " absolute error = 1.1102230246251565000000000000000E-15 " " relative error = 5.93537615965250500000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 15.028217904630887 " " "Order of pole (ratio test) Not computed" Radius of convergence (three term test) for eq 1 = 0.468934470289338 " " Order of pole (three term test) = -10.192556632724667 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.249999999999996 " " y[1] (analytic) = 1.874951377277259 " " y[1] (numeric) = 1.8749513772772604 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 7.10561162116567400000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 15.339557871251518 " " "Order of pole (ratio test) Not computed" Radius of convergence (three term test) for eq 1 = 0.47105383580699445 " " Order of pole (three term test) = -10.428119795654194 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.259999999999996 " " y[1] (analytic) = 1.8794571834059957 " " y[1] (numeric) = 1.8794571834059968 " " absolute error = 1.1102230246251565000000000000000E-15 " " relative error = 5.90714720413680800000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 15.65596610144359 " " "Order of pole (ratio test) Not computed" Radius of convergence (three term test) for eq 1 = 0.4729847044610517 " " Order of pole (three term test) = -10.664694781244089 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.2699999999999956 " " y[1] (analytic) = 1.8840365812864575 " " y[1] (numeric) = 1.8840365812864588 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 7.07134693021984400000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 15.977632228217344 " " "Order of pole (ratio test) Not computed" Radius of convergence (three term test) for eq 1 = 0.474726311229453 " " Order of pole (three term test) = -10.902186884585332 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.2799999999999954 " " y[1] (analytic) = 1.8886903394724521 " " y[1] (numeric) = 1.8886903394724537 " " absolute error = 1.5543122344752192000000000000000E-15 " " relative error = 8.2295768765851200000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 16.30475437922631 " " "Order of pole (ratio test) Not computed" Radius of convergence (three term test) for eq 1 = 0.47627796691094826 " " Order of pole (three term test) = -11.14050104131329 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.289999999999995 " " y[1] (analytic) = 1.8934192200818099 " " y[1] (numeric) = 1.8934192200818116 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 9.3817408240077900000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 16.637539681608544 " " "Order of pole (ratio test) Not computed" Radius of convergence (three term test) for eq 1 = 0.4776390583888867 " " Order of pole (three term test) = -11.37954186574483 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.299999999999995 " " y[1] (analytic) = 1.8982239787201733 " " y[1] (numeric) = 1.8982239787201751 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 9.35799388962472000000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 16.97620480265129 " " "Order of pole (ratio test) Not computed" Radius of convergence (three term test) for eq 1 = 0.47880904886440695 " " Order of pole (three term test) = -11.619213689131941 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.3099999999999947 " " y[1] (analytic) = 1.9031053644054365 " " y[1] (numeric) = 1.9031053644054383 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 9.33399102658309900000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 17.32097652929946 " " "Order of pole (ratio test) Not computed" Radius of convergence (three term test) for eq 1 = 0.47978747805895033 " " Order of pole (three term test) = -11.859420598016396 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.3199999999999945 " " y[1] (analytic) = 1.9080641194928447 " " y[1] (numeric) = 1.9080641194928465 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 9.30973346887524100000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 17.67209238982252 " " "Order of pole (ratio test) Not computed" Radius of convergence (three term test) for eq 1 = 0.4805739623860378 " " Order of pole (three term test) = -12.10006647267006 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.3299999999999943 " " y[1] (analytic) = 1.9131009796007588 " " y[1] (numeric) = 1.9131009796007608 " " absolute error = 1.9984014443252818000000000000000E-15 " " relative error = 1.04458753909703410000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 18.02980132128031 " " "Order of pole (ratio test) Not computed" Radius of convergence (three term test) for eq 1 = 0.48116819509225783 " " Order of pole (three term test) = -12.341055025605204 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.339999999999994 " " y[1] (analytic) = 1.918216673537095 " " y[1] (numeric) = 1.918216673537097 " " absolute error = 1.9984014443252818000000000000000E-15 " " relative error = 1.04180172755996860000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 18.39436438679251 " " "Order of pole (ratio test) Not computed" Radius of convergence (three term test) for eq 1 = 0.48156994636743294 " " Order of pole (three term test) = -12.582289840139438 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.349999999999994 " " y[1] (analytic) = 1.9234119232264428 " " y[1] (numeric) = 1.923411923226445 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.15443084366743870000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 18.766055547019743 " " "Order of pole (ratio test) Not computed" Radius of convergence (three term test) for eq 1 = 0.4817790634239389 " " Order of pole (three term test) = -12.823674408999718 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.3599999999999937 " " y[1] (analytic) = 1.928687443637876 " " y[1] (numeric) = 1.9286874436378783 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.15127313996617520000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 19.145162490716583 " " "Order of pole (ratio test) Not computed" Radius of convergence (three term test) for eq 1 = 0.4817954705451636 " " Order of pole (three term test) = -13.065112172949947 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.3699999999999934 " " y[1] (analytic) = 1.9340439427134535 " " y[1] (numeric) = 1.934043942713456 " " absolute error = 2.4424906541753444000000000000000E-15 " " relative error = 1.26289305027296500000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 19.45526533957687 " " "Order of pole (ratio test) Not computed" Radius of convergence (three term test) for eq 1 = 0.48161916910310976 " " Order of pole (three term test) = -13.306506559426598 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.3799999999999932 " " y[1] (analytic) = 1.9394821212974276 " " y[1] (numeric) = 1.93948212129743 " " absolute error = 2.4424906541753444000000000000000E-15 " " relative error = 1.2593519823433208000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 19.069748975804067 " " "Order of pole (ratio test) Not computed" Radius of convergence (three term test) for eq 1 = 0.4812502375451523 " " Order of pole (three term test) = -13.547761021167009 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.389999999999993 " " y[1] (analytic) = 1.945002673066159 " " y[1] (numeric) = 1.9450026730661616 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.36993912450512180000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 18.691515117292617 " " "Order of pole (ratio test) Not computed" Radius of convergence (three term test) for eq 1 = 0.4806888313499766 " " Order of pole (three term test) = -13.788779074814867 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.399999999999993 " " y[1] (analytic) = 1.9506062844587504 " " y[1] (numeric) = 1.9506062844587533 " " absolute error = 2.886579864025407000000000000000E-15 " " relative error = 1.47983726240601550000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 18.320285793468468 " " "Order of pole (ratio test) Not computed" Radius of convergence (three term test) for eq 1 = 0.4799351829527357 " " Order of pole (three term test) = -14.02946433948729 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.4099999999999926 " " y[1] (analytic) = 1.9562936346084032 " " y[1] (numeric) = 1.9562936346084063 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.58903776711040640000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 17.9557959866648 " " "Order of pole (ratio test) Not computed" Radius of convergence (three term test) for eq 1 = 0.4789896016394763 " " Order of pole (three term test) = -14.26972057528845 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.4199999999999924 " " y[1] (analytic) = 1.9620653952745046 " " y[1] (numeric) = 1.9620653952745077 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.58436333286206460000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 17.59779286390787 " " "Order of pole (ratio test) Not computed" Radius of convergence (three term test) for eq 1 = 0.47785247341089676 " " Order of pole (three term test) = -14.509451721754068 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.429999999999992 " " y[1] (analytic) = 1.9679222307754518 " " y[1] (numeric) = 1.967922230775455 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.57964802690678340000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 17.24603506219555 " " "Order of pole (ratio test) Not computed" Radius of convergence (three term test) for eq 1 = 0.47652426081551097 " " Order of pole (three term test) = -14.748561936211733 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.439999999999992 " " y[1] (analytic) = 1.973864797922221 " " y[1] (numeric) = 1.9738647979222244 " " absolute error = 3.3306690738754696000000000000000E-15 " " relative error = 1.6873846057650360000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 16.900292022956116 " " "Order of pole (ratio test) Not computed" Radius of convergence (three term test) for eq 1 = 0.47500550275230335 " " Order of pole (three term test) = -14.986955632041594 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.4499999999999917 " " y[1] (analytic) = 1.9798937459526877 " " y[1] (numeric) = 1.979893745952691 " " absolute error = 3.3306690738754696000000000000000E-15 " " relative error = 1.68224637341475830000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 16.560343371767242 " " "Order of pole (ratio test) Not computed" Radius of convergence (three term test) for eq 1 = 0.4732968142429781 " " Order of pole (three term test) = -15.22453751682241 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.4599999999999915 " " y[1] (analytic) = 1.9860097164667017 " " y[1] (numeric) = 1.9860097164667052 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 1.78887024033352330000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 16.22597833976715 " " "Order of pole (ratio test) Not computed" Radius of convergence (three term test) for eq 1 = 0.4713988861739059 " " Order of pole (three term test) = -15.461212630347855 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.4699999999999913 " " y[1] (analytic) = 1.9922133433619293 " " y[1] (numeric) = 1.992213343361933 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 1.7832998110559650000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 15.896995223508176 " " "Order of pole (ratio test) Not computed" Radius of convergence (three term test) for eq 1 = 0.4693124850078996 " " Order of pole (three term test) = -15.696886382497713 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.479999999999991 " " y[1] (analytic) = 1.9985052527704632 " " y[1] (numeric) = 1.998505252770467 " " absolute error = 3.774758283725532000000000000000E-15 " " relative error = 1.88879077425125970000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 15.573200880287127 " " "Order of pole (ratio test) Not computed" Radius of convergence (three term test) for eq 1 = 0.46703845246594455 " " Order of pole (three term test) = -15.931464590949561 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.489999999999991 " " y[1] (analytic) = 2.00488606299621 " " y[1] (numeric) = 2.004886062996214 " " absolute error = 3.9968028886505635000000000000000E-15 " " relative error = 1.9935311848482432000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 15.254410256246732 " " "Order of pole (ratio test) Not computed" Radius of convergence (three term test) for eq 1 = 0.4645777051790352 " " Order of pole (three term test) = -16.164853518715468 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.4999999999999907 " " y[1] (analytic) = 2.01135638445306 " " y[1] (numeric) = 2.011356384453064 " " absolute error = 3.9968028886505635000000000000000E-15 " " relative error = 1.98711820517943560000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 14.940445944773503 " " "Order of pole (ratio test) Not computed" Radius of convergence (three term test) for eq 1 = 0.4619312343102737 " " Order of pole (three term test) = -16.39695991148932 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.5099999999999905 " " y[1] (analytic) = 2.0179168196038475 " " y[1] (numeric) = 2.017916819603852 " " absolute error = 4.440892098500626000000000000000E-15 " " relative error = 2.20073099909660840000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 14.63113777292888 " " "Order of pole (ratio test) Not computed" Radius of convergence (three term test) for eq 1 = 0.4591001051473992 " " Order of pole (three term test) = -16.627691034789876 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.5199999999999902 " " y[1] (analytic) = 2.0245679629001034 " " y[1] (numeric) = 2.024567962900108 " " absolute error = 4.440892098500626000000000000000E-15 " " relative error = 2.19350112215509240000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.45608545666592903 " " Order of pole (three term test) = -16.856954710884995 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.52999999999999 " " y[1] (analytic) = 2.0313104007226115 " " y[1] (numeric) = 2.031310400722616 " " absolute error = 4.440892098500626000000000000000E-15 " " relative error = 2.18622033192014300000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.45288850106310335 " " Order of pole (three term test) = -17.084659355482597 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.53999999999999 " " y[1] (analytic) = 2.038144711322771 " " y[1] (numeric) = 2.0381447113227753 " " absolute error = 4.440892098500626000000000000000E-15 " " relative error = 2.17888949387624930000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.4495105232628372 " " Order of pole (three term test) = -17.310714014173815 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.5499999999999896 " " y[1] (analytic) = 2.0450714647647708 " " y[1] (numeric) = 2.045071464764775 " " absolute error = 4.440892098500626000000000000000E-15 " " relative error = 2.17150949246237150000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.445952880391892 " " Order of pole (three term test) = -17.5350283986143 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.5599999999999894 " " y[1] (analytic) = 2.052091222868585 " " y[1] (numeric) = 2.0520912228685897 " " absolute error = 4.884981308350689000000000000000E-15 " " relative error = 2.3804893534518670000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.44221700122749547 " " Order of pole (three term test) = -17.757512922429243 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.569999999999989 " " y[1] (analytic) = 2.0592045391537908 " " y[1] (numeric) = 2.0592045391537956 " " absolute error = 4.884981308350689000000000000000E-15 " " relative error = 2.3722661908846230000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.43830438561664137 " " Order of pole (three term test) = -17.97807873682837 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.579999999999989 " " y[1] (analytic) = 2.0664119587842165 " " y[1] (numeric) = 2.0664119587842213 " " absolute error = 4.884981308350689000000000000000E-15 " " relative error = 2.36399198503709360000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.43421660386732147 " " Order of pole (three term test) = -18.196637765916748 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.5899999999999888 " " y[1] (analytic) = 2.073714018513426 " " y[1] (numeric) = 2.073714018513431 " " absolute error = 4.884981308350689000000000000000E-15 " " relative error = 2.3556677848243330000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.4299552961119409 " " Order of pole (three term test) = -18.413102741687933 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.5999999999999885 " " y[1] (analytic) = 2.0811112466310444 " " y[1] (numeric) = 2.0811112466310493 " " absolute error = 4.884981308350689000000000000000E-15 " " relative error = 2.34729465628453070000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.425522171643193 " " Order of pole (three term test) = -18.627387238685515 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.6099999999999883 " " y[1] (analytic) = 2.0886041629099275 " " y[1] (numeric) = 2.088604162909933 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 2.55149856197551400000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.42091900822266254 " " Order of pole (three term test) = -18.839405708319887 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.619999999999988 " " y[1] (analytic) = 2.0961932785541886 " " y[1] (numeric) = 2.096193278554194 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 2.54226104659413000000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.41614765136245496 " " Order of pole (three term test) = -19.049073512826734 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.629999999999988 " " y[1] (analytic) = 2.103879096148074 " " y[1] (numeric) = 2.1038790961480798 " " absolute error = 5.773159728050814000000000000000E-15 " " relative error = 2.74405489299300030000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.4112100135801464 " " Order of pole (three term test) = -19.256306958854136 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.6399999999999877 " " y[1] (analytic) = 2.111662109605709 " " y[1] (numeric) = 2.1116621096057147 " " absolute error = 5.773159728050814000000000000000E-15 " " relative error = 2.7339410513591980000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.4061080736273622 " " Order of pole (three term test) = -19.46102333066521 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.6499999999999875 " " y[1] (analytic) = 2.1195428041217044 " " y[1] (numeric) = 2.11954280412171 " " absolute error = 5.773159728050814000000000000000E-15 " " relative error = 2.72377595622235850000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.40084387569230595 " " Order of pole (three term test) = -19.66314092294364 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.6599999999999873 " " y[1] (analytic) = 2.1275216561226378 " " y[1] (numeric) = 2.127521656122644 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 2.9222964288089450000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.395419528576566 " " Order of pole (three term test) = -19.8625790731891 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.669999999999987 " " y[1] (analytic) = 2.135599133219413 " " y[1] (numeric) = 2.1355991332194195 " " absolute error = 6.661338147750939000000000000000E-15 " " relative error = 3.11918938537354640000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.3898372048465346 " " Order of pole (three term test) = -20.0592581936905 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.679999999999987 " " y[1] (analytic) = 2.1437756941604973 " " y[1] (numeric) = 2.143775694160504 " " absolute error = 6.661338147750939000000000000000E-15 " " relative error = 3.10729250541275500000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.38409913995979594 " " Order of pole (three term test) = -20.25309980306419 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.6899999999999866 " " y[1] (analytic) = 2.1520517887860473 " " y[1] (numeric) = 2.1520517887860544 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 3.30169905511851440000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.378207631366827 " " Order of pole (three term test) = -20.444026557345563 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.6999999999999864 " " y[1] (analytic) = 2.1604278579829277 " " y[1] (numeric) = 2.1604278579829344 " " absolute error = 6.661338147750939000000000000000E-15 " " relative error = 3.08334209038123750000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.3721650375883891 " " Order of pole (three term test) = -20.631962280621593 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.709999999999986 " " y[1] (analytic) = 2.168904333640618 " " y[1] (numeric) = 2.1689043336406253 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 3.27604461266125750000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.3659737772689778 " " Order of pole (three term test) = -20.816831995192885 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.719999999999986 " " y[1] (analytic) = 2.17748163860803 " " y[1] (numeric) = 2.1774816386080373 " " absolute error = 7.549516567451064000000000000000E-15 " " relative error = 3.46708621261998140000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.3596363282067169 " " Order of pole (three term test) = -20.99856195125352 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.7299999999999858 " " y[1] (analytic) = 2.186160186651218 " " y[1] (numeric) = 2.1861601866512257 " " absolute error = 7.549516567451064000000000000000E-15 " " relative error = 3.45332268584375270000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.3531552263600885 " " Order of pole (three term test) = -21.17707965607731 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.7399999999999856 " " y[1] (analytic) = 2.194940382412007 " " y[1] (numeric) = 2.1949403824120144 " " absolute error = 7.549516567451064000000000000000E-15 " " relative error = 3.43950871191997740000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.346533064831901 " " Order of pole (three term test) = -21.352313902699322 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.7499999999999853 " " y[1] (analytic) = 2.2038226213675234 " " y[1] (numeric) = 2.2038226213675314 " " absolute error = 7.993605777301127000000000000000E-15 " " relative error = 3.62715478995351600000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.3397724928309025 " " Order of pole (three term test) = -21.524194798081705 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.759999999999985 " " y[1] (analytic) = 2.212807289790654 " " y[1] (numeric) = 2.2128072897906623 " " absolute error = 8.43769498715119000000000000000E-15 " " relative error = 3.8131178553508160000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.33287621461145683 " " Order of pole (three term test) = -21.69265379075306 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.769999999999985 " " y[1] (analytic) = 2.221894764711414 " " y[1] (numeric) = 2.2218947647114224 " " absolute error = 8.43769498715119000000000000000E-15 " " relative error = 3.797522331462490000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.32584698839170956 " " Order of pole (three term test) = -21.857623697910793 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.7799999999999847 " " y[1] (analytic) = 2.231085413879247 " " y[1] (numeric) = 2.2310854138792555 " " absolute error = 8.43769498715119000000000000000E-15 " " relative error = 3.7818789610929090000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.31868762525067273 " " Order of pole (three term test) = -22.019038731976075 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.7899999999999845 " " y[1] (analytic) = 2.2403795957262496 " " y[1] (numeric) = 2.240379595726258 " " absolute error = 8.43769498715119000000000000000E-15 " " relative error = 3.7661898917696560000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.31140098800467386 " " Order of pole (three term test) = -22.17683452659138 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.7999999999999843 " " y[1] (analytic) = 2.2497776593313272 " " y[1] (numeric) = 2.249777659331336 " " absolute error = 8.881784197001252000000000000000E-15 " " relative error = 3.9478497620254050000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.3039899900636132 " " Order of pole (three term test) = -22.330948162050657 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.809999999999984 " " y[1] (analytic) = 2.259279944385289 " " y[1] (numeric) = 2.2592799443852982 " " absolute error = 9.325873406851315000000000000000E-15 " " relative error = 4.12780781329368350000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.2964575942674875 " " Order of pole (three term test) = -22.48131819015242 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.819999999999984 " " y[1] (analytic) = 2.268886781156877 " " y[1] (numeric) = 2.268886781156887 " " absolute error = 9.769962616701378000000000000000E-15 " " relative error = 4.3060600016893730000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.28880681170363853 " " Order of pole (three term test) = -22.627884658466485 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.8299999999999836 " " y[1] (analytic) = 2.278598490459742 " " y[1] (numeric) = 2.2785984904597516 " " absolute error = 9.769962616701378000000000000000E-15 " " relative error = 4.28770696443766140000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.2810407005052025 " " Order of pole (three term test) = -22.77058913400488 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.8399999999999834 " " y[1] (analytic) = 2.2884153836203573 " " y[1] (numeric) = 2.2884153836203676 " " absolute error = 1.02140518265514400000000000000E-14 " " relative error = 4.46337317064895540000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.2731623646312278 " " Order of pole (three term test) = -22.9093747262882 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.849999999999983 " " y[1] (analytic) = 2.298337762446893 " " y[1] (numeric) = 2.2983377624469035 " " absolute error = 1.065814103640150300000000000000E-14 " " relative error = 4.6373258145723817000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.2651749526289518 " " Order of pole (three term test) = -23.04418610979856 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.859999999999983 " " y[1] (analytic) = 2.308365919199031 " " y[1] (numeric) = 2.308365919199041 " " absolute error = 1.02140518265514400000000000000E-14 " " relative error = 4.42479753387433800000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.25708165637871977 " " Order of pole (three term test) = -23.174969545810626 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.869999999999983 " " y[1] (analytic) = 2.318500136558739 " " y[1] (numeric) = 2.31850013655875 " " absolute error = 1.065814103640150300000000000000E-14 " " relative error = 4.5969982353423416000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.24888570982204408 " " Order of pole (three term test) = -23.3016729035925 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.8799999999999826 " " y[1] (analytic) = 2.328740687602007 " " y[1] (numeric) = 2.3287406876020182 " " absolute error = 1.110223024625156500000000000000E-14 " " relative error = 4.767482401694090300000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.24059038767330337 " " Order of pole (three term test) = -23.42424568096847 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.8899999999999824 " " y[1] (analytic) = 2.339087835771535 " " y[1] (numeric) = 2.3390878357715463 " " absolute error = 1.154631945610162800000000000000E-14 " " relative error = 4.9362487716469790000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.23219900411558989 " " Order of pole (three term test) = -23.542639024235836 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.899999999999982 " " y[1] (analytic) = 2.349541834850391 " " y[1] (numeric) = 2.349541834850402 " " absolute error = 1.110223024625156500000000000000E-14 " " relative error = 4.7252745542019725000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.2237149114812163 " " Order of pole (three term test) = -23.656805747428255 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.909999999999982 " " y[1] (analytic) = 2.360102928936632 " " y[1] (numeric) = 2.360102928936644 " " absolute error = 1.19904086659516900000000000000E-14 " " relative error = 5.0804600591526270000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.2151414989174014 " " Order of pole (three term test) = -23.766700350918423 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.9199999999999817 " " y[1] (analytic) = 2.370771352418898 " " y[1] (numeric) = 2.3707713524189096 " " absolute error = 1.154631945610162800000000000000E-14 " " relative error = 4.8702796430878575000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.206482191037655 " " Order of pole (three term test) = -23.872279039353025 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.9299999999999815 " " y[1] (analytic) = 2.3815473299529666 " " y[1] (numeric) = 2.381547329952979 " " absolute error = 1.243449787580175300000000000000E-14 " " relative error = 5.2211844456802480000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.19774044655939355 " " Order of pole (three term test) = -23.973499738913258 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.9399999999999813 " " y[1] (analytic) = 2.392431076439295 " " y[1] (numeric) = 2.3924310764393075 " " absolute error = 1.243449787580175300000000000000E-14 " " relative error = 5.1974320172718520000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.1889197569283196 " " Order of pole (three term test) = -24.07032211389434 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.949999999999981 " " y[1] (analytic) = 2.403422797001525 " " y[1] (numeric) = 2.4034227970015376 " " absolute error = 1.243449787580175300000000000000E-14 " " relative error = 5.1736622833547420000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.18002364493009892 " " Order of pole (three term test) = -24.16270758259783 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.959999999999981 " " y[1] (analytic) = 2.4145226869659724 " " y[1] (numeric) = 2.414522686965985 " " absolute error = 1.243449787580175300000000000000E-14 " " relative error = 5.1498782525115250000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.1710556632898801 " " Order of pole (three term test) = -24.250619332530842 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.9699999999999807 " " y[1] (analytic) = 2.4257309318420948 " " y[1] (numeric) = 2.425730931842107 " " absolute error = 1.243449787580175300000000000000E-14 " " relative error = 5.1260829107534290000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.1620193932602058 " " Order of pole (three term test) = -24.33402233490634 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.9799999999999804 " " y[1] (analytic) = 2.43704770730394 " " y[1] (numeric) = 2.437047707303953 " " absolute error = 1.287858708565181600000000000000E-14 " " relative error = 5.2845034781445270000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.15291844319786113 " " Order of pole (three term test) = -24.41288335843907 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.9899999999999802 " " y[1] (analytic) = 2.4484731791725816 " " y[1] (numeric) = 2.4484731791725944 " " absolute error = 1.287858708565181600000000000000E-14 " " relative error = 5.2598440510603860000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.14375644713021565 " " Order of pole (three term test) = -24.487170982432144 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.99999999999998 " " y[1] (analytic) = 2.4600075033995314 " " y[1] (numeric) = 2.4600075033995448 " " absolute error = 1.332267629550187800000000000000E-14 " " relative error = 5.4157055525607210000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.13453706331161822 " " Order of pole (three term test) = -24.55685560914899 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.00999999999998 " " y[1] (analytic) = 2.4716508260511505 " " y[1] (numeric) = 2.4716508260511643 " " absolute error = 1.376676550535194000000000000000E-14 " " relative error = 5.5698666495487580000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.1252639727704056 " " Order of pole (three term test) = -24.621909475466534 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.0199999999999796 " " y[1] (analytic) = 2.483403283294039 " " y[1] (numeric) = 2.4834032832940527 " " absolute error = 1.376676550535194000000000000000E-14 " " relative error = 5.5435078136368610000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.11594087784708727 " " Order of pole (three term test) = -24.682306663804752 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.0299999999999794 " " y[1] (analytic) = 2.49526500138142 " " y[1] (numeric) = 2.495265001381434 " " absolute error = 1.376676550535194000000000000000E-14 " " relative error = 5.5171556919727680000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.1065715007242784 " " Order of pole (three term test) = -24.73802311232888 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.039999999999979 " " y[1] (analytic) = 2.5072360966405154 " " y[1] (numeric) = 2.50723609664053 " " absolute error = 1.465494392505206600000000000000E-14 " " relative error = 5.8450594041336800000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 9.7159581948949200E-2 " " Order of pole (three term test) = -24.789036624420184 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.049999999999979 " " y[1] (analytic) = 2.5193166754609133 " " y[1] (numeric) = 2.519316675460928 " " absolute error = 1.465494392505206600000000000000E-14 " " relative error = 5.8170312878078010000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 8.77088789475633500E-2 " " Order of pole (three term test) = -24.835326877411994 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.0599999999999787 " " y[1] (analytic) = 2.5315068342839275 " " y[1] (numeric) = 2.531506834283942 " " absolute error = 1.465494392505206600000000000000E-14 " " relative error = 5.7890200913470670000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 7.82231645346839300E-2 " " Order of pole (three term test) = -24.8768754305875 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.0699999999999785 " " y[1] (analytic) = 2.543806659592955 " " y[1] (numeric) = 2.54380665959297 " " absolute error = 1.50990331349021300000000000000E-14 " " relative error = 5.9356056318046550000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 6.87062254156232600E-2 " " Order of pole (three term test) = -24.913665732436517 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.0799999999999783 " " y[1] (analytic) = 2.5562162279048275 " " y[1] (numeric) = 2.5562162279048426 " " absolute error = 1.50990331349021300000000000000E-14 " " relative error = 5.906790266830391000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 5.91618606837165400E-2 " " Order of pole (three term test) = -24.945683127168348 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.089999999999978 " " y[1] (analytic) = 2.568735605762159 " " y[1] (numeric) = 2.5687356057621744 " " absolute error = 1.55431223447521920000000000000E-14 " " relative error = 6.050884454548780000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 4.959388031280357300E-2 " " Order of pole (three term test) = -24.972914860478436 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.099999999999978 " " y[1] (analytic) = 2.5813648497266923 " " y[1] (numeric) = 2.5813648497267083 " " absolute error = 1.598721155460225400000000000000E-14 " " relative error = 6.1933172896093850000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 4.000610364549956300E-2 " " Order of pole (three term test) = -24.995350084566578 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.1099999999999777 " " y[1] (analytic) = 2.5941040063736436 " " y[1] (numeric) = 2.5941040063736596 " " absolute error = 1.598721155460225400000000000000E-14 " " relative error = 6.1629030737865980000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 3.040235787784215700E-2 " " Order of pole (three term test) = -25.012979862404837 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.1199999999999775 " " y[1] (analytic) = 2.6069531122870426 " " y[1] (numeric) = 2.6069531122870586 " " absolute error = 1.598721155460225400000000000000E-14 " " relative error = 6.1325274625199920000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 2.078647654090022300E-2 " " Order of pole (three term test) = -25.025797171253558 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.1299999999999772 " " y[1] (analytic) = 2.6199121940560763 " " y[1] (numeric) = 2.6199121940560928 " " absolute error = 1.643130076445231700000000000000E-14 " " relative error = 6.271699029353280000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 1.116229797993256600E-2 " " Order of pole (three term test) = -25.03379690542423 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.139999999999977 " " y[1] (analytic) = 2.63298126827243 " " y[1] (numeric) = 2.632981268272447 " " absolute error = 1.68753899743023800000000000000E-14 " " relative error = 6.4092328257902030000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 1.5336638316842946000E-3 " " Order of pole (three term test) = -25.03697587828805 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.149999999999977 " " y[1] (analytic) = 2.6461603415286277 " " y[1] (numeric) = 2.646160341528644 " " absolute error = 1.643130076445231700000000000000E-14 " " relative error = 6.2094879537648580000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.1599999999999766 " " y[1] (analytic) = 2.6594494104173707 " " y[1] (numeric) = 2.6594494104173876 " " absolute error = 1.68753899743023800000000000000E-14 " " relative error = 6.3454450038415940000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.1699999999999764 " " y[1] (analytic) = 2.6728484615318826 " " y[1] (numeric) = 2.6728484615319 " " absolute error = 1.731947918415244200000000000000E-14 " " relative error = 6.4797834345708370000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.179999999999976 " " y[1] (analytic) = 2.6863574714672467 " " y[1] (numeric) = 2.6863574714672644 " " absolute error = 1.776356839400250500000000000000E-14 " " relative error = 6.6125110238215320000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.189999999999976 " " y[1] (analytic) = 2.6999764068227483 " " y[1] (numeric) = 2.6999764068227665 " " absolute error = 1.820765760385256700000000000000E-14 " " relative error = 6.7436358176473090000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.1999999999999758 " " y[1] (analytic) = 2.7137052242052135 " " y[1] (numeric) = 2.7137052242052317 " " absolute error = 1.820765760385256700000000000000E-14 " " relative error = 6.7095193101473290000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.2099999999999755 " " y[1] (analytic) = 2.7275438702333483 " " y[1] (numeric) = 2.727543870233367 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 6.8382939747571960000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.2199999999999753 " " y[1] (analytic) = 2.7414922815430787 " " y[1] (numeric) = 2.7414922815430973 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 6.8035014868633110000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.229999999999975 " " y[1] (analytic) = 2.755550384793884 " " y[1] (numeric) = 2.755550384793903 " " absolute error = 1.909583602355269200000000000000E-14 " " relative error = 6.929953496379660000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.239999999999975 " " y[1] (analytic) = 2.769718096676134 " " y[1] (numeric) = 2.769718096676153 " " absolute error = 1.909583602355269200000000000000E-14 " " relative error = 6.894505273467760000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.2499999999999747 " " y[1] (analytic) = 2.7839953239194175 " " y[1] (numeric) = 2.783995323919437 " " absolute error = 1.953992523340275500000000000000E-14 " " relative error = 7.0186630938351160000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.2599999999999745 " " y[1] (analytic) = 2.7983819633018703 " " y[1] (numeric) = 2.7983819633018903 " " absolute error = 1.998401444325281800000000000000E-14 " " relative error = 7.1412747456652610000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.2699999999999743 " " y[1] (analytic) = 2.8128779016604977 " " y[1] (numeric) = 2.8128779016605177 " " absolute error = 1.998401444325281800000000000000E-14 " " relative error = 7.1044727648704040000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.279999999999974 " " y[1] (analytic) = 2.827483015902489 " " y[1] (numeric) = 2.827483015902509 " " absolute error = 1.998401444325281800000000000000E-14 " " relative error = 7.0677752371482340000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.289999999999974 " " y[1] (analytic) = 2.8421971730175284 " " y[1] (numeric) = 2.842197173017549 " " absolute error = 2.04281036531028800000000000000E-14 " " relative error = 7.1874336682330150000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.2999999999999736 " " y[1] (analytic) = 2.857020230091096 " " y[1] (numeric) = 2.8570202300911167 " " absolute error = 2.087219286295294300000000000000E-14 " " relative error = 7.3055810536866360000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.3099999999999734 " " y[1] (analytic) = 2.871952034318757 " " y[1] (numeric) = 2.8719520343187783 " " absolute error = 2.131628207280300600000000000000E-14 " " relative error = 7.4222277454781190000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.319999999999973 " " y[1] (analytic) = 2.886992423021445 " " y[1] (numeric) = 2.8869924230214665 " " absolute error = 2.131628207280300600000000000000E-14 " " relative error = 7.3835601031796200000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.329999999999973 " " y[1] (analytic) = 2.902141223661727 " " y[1] (numeric) = 2.902141223661749 " " absolute error = 2.176037128265306800000000000000E-14 " " relative error = 7.4980401040571320000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.3399999999999728 " " y[1] (analytic) = 2.9173982538610597 " " y[1] (numeric) = 2.9173982538610814 " " absolute error = 2.176037128265306800000000000000E-14 " " relative error = 7.4588278284783670000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.3499999999999726 " " y[1] (analytic) = 2.9327633214180238 " " y[1] (numeric) = 2.932763321418046 " " absolute error = 2.22044604925031300000000000000E-14 " " relative error = 7.5711736880857560000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.3599999999999723 " " y[1] (analytic) = 2.9482362243275473 " " y[1] (numeric) = 2.94823622432757 " " absolute error = 2.264854970235319300000000000000E-14 " " relative error = 7.6820675071649060000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.369999999999972 " " y[1] (analytic) = 2.9638167508011044 " " y[1] (numeric) = 2.9638167508011275 " " absolute error = 2.309263891220325600000000000000E-14 " " relative error = 7.7915204797872320000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.379999999999972 " " y[1] (analytic) = 2.979504679287894 " " y[1] (numeric) = 2.9795046792879174 " " absolute error = 2.35367281220533200000000000000E-14 " " relative error = 7.8995439361681520000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.3899999999999717 " " y[1] (analytic) = 2.995299778496994 " " y[1] (numeric) = 2.995299778497018 " " absolute error = 2.39808173319033800000000000000E-14 " " relative error = 8.0061493357224730000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.3999999999999715 " " y[1] (analytic) = 3.011201807420494 " " y[1] (numeric) = 3.011201807420518 " " absolute error = 2.39808173319033800000000000000E-14 " " relative error = 7.9638692009308510000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.4099999999999713 " " y[1] (analytic) = 3.027210515357588 " " y[1] (numeric) = 3.0272105153576128 " " absolute error = 2.486899575160350700000000000000E-14 " " relative error = 8.2151524069563650000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.419999999999971 " " y[1] (analytic) = 3.0433256419396546 " " y[1] (numeric) = 3.0433256419396795 " " absolute error = 2.486899575160350700000000000000E-14 " " relative error = 8.1716512386605210000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.429999999999971 " " y[1] (analytic) = 3.059546917156284 " " y[1] (numeric) = 3.059546917156309 " " absolute error = 2.53130849614535700000000000000E-14 " " relative error = 8.2734750101433260000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.4399999999999706 " " y[1] (analytic) = 3.0758740613822857 " " y[1] (numeric) = 3.075874061382311 " " absolute error = 2.53130849614535700000000000000E-14 " " relative error = 8.2295583162068630000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.4499999999999704 " " y[1] (analytic) = 3.0923067854056465 " " y[1] (numeric) = 3.0923067854056723 " " absolute error = 2.575717417130363000000000000000E-14 " " relative error = 8.3294368763365840000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.45999999999997 " " y[1] (analytic) = 3.1088447904564545 " " y[1] (numeric) = 3.1088447904564807 " " absolute error = 2.620126338115369400000000000000E-14 " " relative error = 8.4279741020157870000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.46999999999997 " " y[1] (analytic) = 3.1254877682367734 " " y[1] (numeric) = 3.1254877682368 " " absolute error = 2.664535259100375700000000000000E-14 " " relative error = 8.5251821689372930000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.47999999999997 " " y[1] (analytic) = 3.1422354009514732 " " y[1] (numeric) = 3.142235400951501 " " absolute error = 2.753353101070388000000000000000E-14 " " relative error = 8.7624023974673230000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.4899999999999696 " " y[1] (analytic) = 3.159087361340011 " " y[1] (numeric) = 3.1590873613400383 " " absolute error = 2.753353101070388000000000000000E-14 " " relative error = 8.7156598920470520000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.4999999999999694 " " y[1] (analytic) = 3.176043312709152 " " y[1] (numeric) = 3.17604331270918 " " absolute error = 2.797762022055394500000000000000E-14 " " relative error = 8.8089542446098290000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.509999999999969 " " y[1] (analytic) = 3.193102908966644 " " y[1] (numeric) = 3.1931029089666723 " " absolute error = 2.84217094304040100000000000000E-14 " " relative error = 8.9009688195742740000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.519999999999969 " " y[1] (analytic) = 3.2102657946558235 " " y[1] (numeric) = 3.2102657946558524 " " absolute error = 2.88657986402540700000000000000E-14 " " relative error = 8.9917161028558410000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.5299999999999687 " " y[1] (analytic) = 3.2275316049911615 " " y[1] (numeric) = 3.227531604991191 " " absolute error = 2.93098878501041300000000000000E-14 " " relative error = 9.0812086254332420000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.5399999999999685 " " y[1] (analytic) = 3.2448999658947417 " " y[1] (numeric) = 3.2448999658947715 " " absolute error = 2.975397705995419500000000000000E-14 " " relative error = 9.1694589579589380000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.5499999999999683 " " y[1] (analytic) = 3.262370494033669 " " y[1] (numeric) = 3.2623704940336986 " " absolute error = 2.975397705995419500000000000000E-14 " " relative error = 9.1203550039363260000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.559999999999968 " " y[1] (analytic) = 3.279942796858399 " " y[1] (numeric) = 3.2799427968584296 " " absolute error = 3.06421554796543200000000000000E-14 " " relative error = 9.3422835023232880000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.569999999999968 " " y[1] (analytic) = 3.2976164726419985 " " y[1] (numeric) = 3.2976164726420296 " " absolute error = 3.10862446895043830000000000000E-14 " " relative error = 9.426883006985519000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.5799999999999677 " " y[1] (analytic) = 3.315391110520313 " " y[1] (numeric) = 3.315391110520344 " " absolute error = 3.10862446895043830000000000000E-14 " " relative error = 9.3763431381782740000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.5899999999999674 " " y[1] (analytic) = 3.3332662905330532 " " y[1] (numeric) = 3.3332662905330848 " " absolute error = 3.153033389935444600000000000000E-14 " " relative error = 9.459290423001919000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.5999999999999672 " " y[1] (analytic) = 3.351241583665794 " " y[1] (numeric) = 3.351241583665826 " " absolute error = 3.19744231092045100000000000000E-14 " " relative error = 9.5410677836686790000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.609999999999967 " " y[1] (analytic) = 3.369316551892872 " " y[1] (numeric) = 3.3693165518929042 " " absolute error = 3.24185123190545700000000000000E-14 " " relative error = 9.6216879060656830000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.619999999999967 " " y[1] (analytic) = 3.3874907482211896 " " y[1] (numeric) = 3.387490748221222 " " absolute error = 3.24185123190545700000000000000E-14 " " relative error = 9.5700666743010010000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.6299999999999666 " " y[1] (analytic) = 3.4057637167349126 " " y[1] (numeric) = 3.405763716734946 " " absolute error = 3.330669073875469600000000000000E-14 " " relative error = 9.7795071851565920000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.6399999999999664 " " y[1] (analytic) = 3.424134992641064 " " y[1] (numeric) = 3.4241349926410978 " " absolute error = 3.37507799486047600000000000000E-14 " " relative error = 9.8567317062965730000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.649999999999966 " " y[1] (analytic) = 3.4426041023159994 " " y[1] (numeric) = 3.4426041023160336 " " absolute error = 3.41948691584548200000000000000E-14 " " relative error = 9.9328497097445350000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.659999999999966 " " y[1] (analytic) = 3.4611705633527716 " " y[1] (numeric) = 3.4611705633528063 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 1.0007873849115013000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.6699999999999657 " " y[1] (analytic) = 3.47983388460937 " " y[1] (numeric) = 3.4798338846094046 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 9.9541988258423140000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.6799999999999655 " " y[1] (analytic) = 3.4985935662578336 " " y[1] (numeric) = 3.4985935662578687 " " absolute error = 3.508304757815494700000000000000E-14 " " relative error = 1.0027757415583567000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.6899999999999653 " " y[1] (analytic) = 3.517449099834235 " " y[1] (numeric) = 3.5174490998342707 " " absolute error = 3.55271367880050100000000000000E-14 " " relative error = 1.0100256117332096000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.699999999999965 " " y[1] (analytic) = 3.5363999682895253 " " y[1] (numeric) = 3.5363999682895617 " " absolute error = 3.641531520770513500000000000000E-14 " " relative error = 1.0297284112158382000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.709999999999965 " " y[1] (analytic) = 3.5554456460412394 " " y[1] (numeric) = 3.555445646041276 " " absolute error = 3.6859404417555197000000000000E-14 " " relative error = 1.036702795853335000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.7199999999999647 " " y[1] (analytic) = 3.574585599026052 " " y[1] (numeric) = 3.574585599026089 " " absolute error = 3.6859404417555197000000000000E-14 " " relative error = 1.031151818761818900000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.7299999999999645 " " y[1] (analytic) = 3.593819284753186 " " y[1] (numeric) = 3.593819284753223 " " absolute error = 3.73034936274052600000000000000E-14 " " relative error = 1.0379902457996623000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.7399999999999642 " " y[1] (analytic) = 3.6131461523586585 " " y[1] (numeric) = 3.6131461523586963 " " absolute error = 3.77475828372553200000000000000E-14 " " relative error = 1.0447289217075743000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.749999999999964 " " y[1] (analytic) = 3.6325656426603694 " " y[1] (numeric) = 3.6325656426604076 " " absolute error = 3.819167204710538500000000000000E-14 " " relative error = 1.0513690819124491000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.759999999999964 " " y[1] (analytic) = 3.652077188214017 " " y[1] (numeric) = 3.6520771882140557 " " absolute error = 3.86357612569554500000000000000E-14 " " relative error = 1.0579119571087044000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.7699999999999636 " " y[1] (analytic) = 3.671680213369843 " " y[1] (numeric) = 3.671680213369882 " " absolute error = 3.90798504668055100000000000000E-14 " " relative error = 1.0643587729808933000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 14.533564701308725 " " "Order of pole (ratio test) Not computed" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.7799999999999634 " " y[1] (analytic) = 3.691374134330197 " " y[1] (numeric) = 3.6913741343302364 " " absolute error = 3.95239396766555730000000000000E-14 " " relative error = 1.0707107499366825000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 14.841424363992722 " " "Order of pole (ratio test) Not computed" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.789999999999963 " " y[1] (analytic) = 3.711158359207915 " " y[1] (numeric) = 3.711158359207955 " " absolute error = 3.996802888650563500000000000000E-14 " " relative error = 1.076969102850037000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 15.153887416453099 " " "Order of pole (ratio test) Not computed" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.799999999999963 " " y[1] (analytic) = 3.7310322880855096 " " y[1] (numeric) = 3.7310322880855495 " " absolute error = 3.996802888650563500000000000000E-14 " " relative error = 1.0712324579483679000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 15.471121810061335 " " "Order of pole (ratio test) Not computed" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.8099999999999627 " " y[1] (analytic) = 3.7509953130751574 " " y[1] (numeric) = 3.7509953130751983 " " absolute error = 4.08562073062057600000000000000E-14 " " relative error = 1.0892097669061294000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 15.793302603675023 " " "Order of pole (ratio test) Not computed" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.8199999999999625 " " y[1] (analytic) = 3.7710468183794923 " " y[1] (numeric) = 3.7710468183795336 " " absolute error = 4.130029651605582300000000000000E-14 " " relative error = 1.0951944779567477000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 16.120612368721133 " " "Order of pole (ratio test) Not computed" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.8299999999999623 " " y[1] (analytic) = 3.79118618035318 " " y[1] (numeric) = 3.791186180353222 " " absolute error = 4.174438572590588600000000000000E-14 " " relative error = 1.101090364335972900000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 16.453241621632433 " " "Order of pole (ratio test) Not computed" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.839999999999962 " " y[1] (analytic) = 3.811412767565286 " " y[1] (numeric) = 3.811412767565328 " " absolute error = 4.21884749357559500000000000000E-14 " " relative error = 1.1068986097432255000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 16.791389285837763 " " "Order of pole (ratio test) Not computed" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.849999999999962 " " y[1] (analytic) = 3.8317259408624147 " " y[1] (numeric) = 3.831725940862457 " " absolute error = 4.21884749357559500000000000000E-14 " " relative error = 1.1010305952690473000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 17.135263185710787 " " "Order of pole (ratio test) Not computed" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.8599999999999617 " " y[1] (analytic) = 3.8521250534326263 " " y[1] (numeric) = 3.8521250534326694 " " absolute error = 4.307665335545607400000000000000E-14 " " relative error = 1.118256877903548000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 17.485080575107062 " " "Order of pole (ratio test) Not computed" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.8699999999999615 " " y[1] (analytic) = 3.872609450870118 " " y[1] (numeric) = 3.8726094508701614 " " absolute error = 4.352074256530613600000000000000E-14 " " relative error = 1.1238092329586107000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 17.841068703369324 " " "Order of pole (ratio test) Not computed" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.8799999999999613 " " y[1] (analytic) = 3.893178471240662 " " y[1] (numeric) = 3.8931784712407054 " " absolute error = 4.352074256530613600000000000000E-14 " " relative error = 1.1178717566327527000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 18.20346542195674 " " "Order of pole (ratio test) Not computed" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.889999999999961 " " y[1] (analytic) = 3.9138314451477987 " " y[1] (numeric) = 3.913831445147843 " " absolute error = 4.44089209850062600000000000000E-14 " " relative error = 1.1346661604464993000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 18.572519835161494 " " "Order of pole (ratio test) Not computed" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.899999999999961 " " y[1] (analytic) = 3.9345676957997786 " " y[1] (numeric) = 3.934567695799823 " " absolute error = 4.44089209850062600000000000000E-14 " " relative error = 1.128686158644915000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 18.94849299871636 " " "Order of pole (ratio test) Not computed" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.9099999999999606 " " y[1] (analytic) = 3.9553865390772365 " " y[1] (numeric) = 3.9553865390772818 " " absolute error = 4.52970994047063870000000000000E-14 " " relative error = 1.1452003225776734000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 19.331658670476116 " " "Order of pole (ratio test) Not computed" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.9199999999999604 " " y[1] (analytic) = 3.976287283601607 " " y[1] (numeric) = 3.9762872836016525 " " absolute error = 4.52970994047063870000000000000E-14 " " relative error = 1.1391807526461611000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 19.267525626352306 " " "Order of pole (ratio test) Not computed" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.92999999999996 " " y[1] (analytic) = 3.9972692308042586 " " y[1] (numeric) = 3.9972692308043047 " " absolute error = 4.61852778244065100000000000000E-14 " " relative error = 1.1554207424530658000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 18.88599376702037 " " "Order of pole (ratio test) Not computed" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.93999999999996 " " y[1] (analytic) = 4.018331674996352 " " y[1] (numeric) = 4.018331674996398 " " absolute error = 4.61852778244065100000000000000E-14 " " relative error = 1.1493645014867629000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 18.511972355076207 " " "Order of pole (ratio test) Not computed" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.9499999999999598 " " y[1] (analytic) = 4.039473903439407 " " y[1] (numeric) = 4.039473903439454 " " absolute error = 4.70734562441066400000000000000E-14 " " relative error = 1.1653363128308857000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 18.14516914423352 " " "Order of pole (ratio test) Not computed" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.9599999999999596 " " y[1] (analytic) = 4.060695196416578 " " y[1] (numeric) = 4.060695196416625 " " absolute error = 4.70734562441066400000000000000E-14 " " relative error = 1.1592462365963178000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 17.785305894116792 " " "Order of pole (ratio test) Not computed" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.9699999999999593 " " y[1] (analytic) = 4.081994827304621 " " y[1] (numeric) = 4.081994827304670 " " absolute error = 4.79616346638067600000000000000E-14 " " relative error = 1.174955792275618000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 17.432117519791618 " " "Order of pole (ratio test) Not computed" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.979999999999959 " " y[1] (analytic) = 4.103372062646561 " " y[1] (numeric) = 4.103372062646609 " " absolute error = 4.79616346638067600000000000000E-14 " " relative error = 1.1688346543177672000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 17.08535130201765 " " "Order of pole (ratio test) Not computed" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.989999999999959 " " y[1] (analytic) = 4.124826162225031 " " y[1] (numeric) = 4.12482616222508 " " absolute error = 4.88498130835068900000000000000E-14 " " relative error = 1.1842878017714113000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 16.744766153210122 " " "Order of pole (ratio test) Not computed" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.9999999999999587 " " y[1] (analytic) = 4.146356379136300 " " y[1] (numeric) = 4.146356379136348 " " absolute error = 4.88498130835068900000000000000E-14 " " relative error = 1.1781383126956994000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 16.410131934563086 " " "Order of pole (ratio test) Not computed" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.009999999999959 " " y[1] (analytic) = 4.167961959864953 " " y[1] (numeric) = 4.167961959865000 " " absolute error = 4.79616346638067600000000000000E-14 " " relative error = 1.150721506713578000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 16.081228820205748 " " "Order of pole (ratio test) Not computed" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.019999999999959 " " y[1] (analytic) = 4.189642144359250 " " y[1] (numeric) = 4.1896421443593 " " absolute error = 4.88498130835068900000000000000E-14 " " relative error = 1.1659662424695656000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 15.75784670464002 " " "Order of pole (ratio test) Not computed" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.0299999999999585 " " y[1] (analytic) = 4.211396166107134 " " y[1] (numeric) = 4.211396166107183 " " absolute error = 4.88498130835068900000000000000E-14 " " relative error = 1.1599434286578157000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 15.439784650043997 " " "Order of pole (ratio test) Not computed" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.039999999999958 " " y[1] (analytic) = 4.233223252212867 " " y[1] (numeric) = 4.233223252212917 " " absolute error = 4.97379915032070130000000000000E-14 " " relative error = 1.1749437376638965000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 15.126850370331084 " " "Order of pole (ratio test) Not computed" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.049999999999958 " " y[1] (analytic) = 4.255122623474334 " " y[1] (numeric) = 4.255122623474384 " " absolute error = 5.06261699229071400000000000000E-14 " " relative error = 1.1897699409087902000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 14.818859749127565 " " "Order of pole (ratio test) Not computed" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.059999999999958 " " y[1] (analytic) = 4.277093494460953 " " y[1] (numeric) = 4.2770934944610035 " " absolute error = 5.06261699229071400000000000000E-14 " " relative error = 1.1836582480245177000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 14.515636389078503 " " "Order of pole (ratio test) Not computed" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.069999999999958 " " y[1] (analytic) = 4.299135073592222 " " y[1] (numeric) = 4.299135073592272 " " absolute error = 5.06261699229071400000000000000E-14 " " relative error = 1.1775896559724862000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 14.217011190115072 " " "Order of pole (ratio test) Not computed" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.079999999999957 " " y[1] (analytic) = 4.321246563216874 " " y[1] (numeric) = 4.321246563216926 " " absolute error = 5.151434834260726000000000000000E-14 " " relative error = 1.1921177740956843000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 13.922821954517971 " " "Order of pole (ratio test) Not computed" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.089999999999957 " " y[1] (analytic) = 4.343427159692646 " " y[1] (numeric) = 4.343427159692698 " " absolute error = 5.24025267623073900000000000000E-14 " " relative error = 1.2064787743790677000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.099999999999957 " " y[1] (analytic) = 4.365676053466635 " " y[1] (numeric) = 4.365676053466688 " " absolute error = 5.24025267623073900000000000000E-14 " " relative error = 1.2003301692688884000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.109999999999957 " " y[1] (analytic) = 4.3879924291562595 " " y[1] (numeric) = 4.387992429156312 " " absolute error = 5.24025267623073900000000000000E-14 " " relative error = 1.1942255509402407000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.119999999999957 " " y[1] (analytic) = 4.410375465630793 " " y[1] (numeric) = 4.410375465630845 " " absolute error = 5.24025267623073900000000000000E-14 " " relative error = 1.1881647531070812000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.129999999999956 " " y[1] (analytic) = 4.432824336093477 " " y[1] (numeric) = 4.43282433609353 " " absolute error = 5.329070518200751000000000000000E-14 " " relative error = 1.2021840059868266000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.139999999999956 " " y[1] (analytic) = 4.455338208164203 " " y[1] (numeric) = 4.455338208164257 " " absolute error = 5.41788836017076400000000000000E-14 " " relative error = 1.2160442388509883000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.149999999999956 " " y[1] (analytic) = 4.477916243962746 " " y[1] (numeric) = 4.4779162439628 " " absolute error = 5.41788836017076400000000000000E-14 " " relative error = 1.209912840034763000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.159999999999956 " " y[1] (analytic) = 4.500557600192553 " " y[1] (numeric) = 4.500557600192607 " " absolute error = 5.41788836017076400000000000000E-14 " " relative error = 1.2038260236773692000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.1699999999999555 " " y[1] (analytic) = 4.523261428225075 " " y[1] (numeric) = 4.523261428225129 " " absolute error = 5.41788836017076400000000000000E-14 " " relative error = 1.1977836006478053000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.179999999999955 " " y[1] (analytic) = 4.546026874184621 " " y[1] (numeric) = 4.546026874184676 " " absolute error = 5.506706202140776000000000000000E-14 " " relative error = 1.2113228440006668000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.189999999999955 " " y[1] (analytic) = 4.568853079033757 " " y[1] (numeric) = 4.568853079033812 " " absolute error = 5.506706202140776000000000000000E-14 " " relative error = 1.2052710181053494000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.199999999999955 " " y[1] (analytic) = 4.591739178659197 " " y[1] (numeric) = 4.591739178659253 " " absolute error = 5.59552404411078900000000000000E-14 " " relative error = 1.2186066817812374000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.209999999999955 " " y[1] (analytic) = 4.614684303958222 " " y[1] (numeric) = 4.6146843039582786 " " absolute error = 5.68434188608080100000000000000E-14 " " relative error = 1.2317943139046557000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.2199999999999545 " " y[1] (analytic) = 4.6376875809255855 " " y[1] (numeric) = 4.637687580925642 " " absolute error = 5.68434188608080100000000000000E-14 " " relative error = 1.225684522057936000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.229999999999954 " " y[1] (analytic) = 4.660748130740914 " " y[1] (numeric) = 4.660748130740970 " " absolute error = 5.68434188608080100000000000000E-14 " " relative error = 1.2196200538253862000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.239999999999954 " " y[1] (analytic) = 4.683865069856589 " " y[1] (numeric) = 4.683865069856646 " " absolute error = 5.68434188608080100000000000000E-14 " " relative error = 1.2136006911605686000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.249999999999954 " " y[1] (analytic) = 4.7070375100861 " " y[1] (numeric) = 4.707037510086158 " " absolute error = 5.77315972805081400000000000000E-14 " " relative error = 1.2264953732958912000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.259999999999954 " " y[1] (analytic) = 4.730264558692864 " " y[1] (numeric) = 4.730264558692923 " " absolute error = 5.86197757002082700000000000000E-14 " " relative error = 1.2392494113776785000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.269999999999953 " " y[1] (analytic) = 4.753545318479498 " " y[1] (numeric) = 4.753545318479557 " " absolute error = 5.95079541199083900000000000000E-14 " " relative error = 1.2518646638030373000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.279999999999953 " " y[1] (analytic) = 4.776878887877535 " " y[1] (numeric) = 4.7768788878775945 " " absolute error = 5.95079541199083900000000000000E-14 " " relative error = 1.2457496938204558000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.289999999999953 " " y[1] (analytic) = 4.800264361037584 " " y[1] (numeric) = 4.8002643610376445 " " absolute error = 6.03961325396085200000000000000E-14 " " relative error = 1.2581834665154526000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.299999999999953 " " y[1] (analytic) = 4.823700827919914 " " y[1] (numeric) = 4.823700827919975 " " absolute error = 6.12843109593086400000000000000E-14 " " relative error = 1.270483248144056000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.3099999999999525 " " y[1] (analytic) = 4.847187374385453 " " y[1] (numeric) = 4.8471873743855145 " " absolute error = 6.12843109593086400000000000000E-14 " " relative error = 1.2643272526075708000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.319999999999952 " " y[1] (analytic) = 4.870723082287207 " " y[1] (numeric) = 4.8707230822872685 " " absolute error = 6.12843109593086400000000000000E-14 " " relative error = 1.2582179262494755000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.329999999999952 " " y[1] (analytic) = 4.89430702956207 " " y[1] (numeric) = 4.894307029562131 " " absolute error = 6.12843109593086400000000000000E-14 " " relative error = 1.2521550157999020000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.339999999999952 " " y[1] (analytic) = 4.917938290323028 " " y[1] (numeric) = 4.91793829032309 " " absolute error = 6.21724893790087700000000000000E-14 " " relative error = 1.2641982413920255000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.349999999999952 " " y[1] (analytic) = 4.941615934951754 " " y[1] (numeric) = 4.941615934951817 " " absolute error = 6.30606677987088900000000000000E-14 " " relative error = 1.2761143040818806000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.3599999999999515 " " y[1] (analytic) = 4.965339030191561 " " y[1] (numeric) = 4.965339030191625 " " absolute error = 6.39488462184090200000000000000E-14 " " relative error = 1.287904931155162000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.369999999999951 " " y[1] (analytic) = 4.989106639240733 " " y[1] (numeric) = 4.989106639240798 " " absolute error = 6.48370246381091400000000000000E-14 " " relative error = 1.299571833725654000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.379999999999951 " " y[1] (analytic) = 5.0129178218462 " " y[1] (numeric) = 5.012917821846265 " " absolute error = 6.48370246381091400000000000000E-14 " " relative error = 1.293398913414272000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.389999999999950 " " y[1] (analytic) = 5.036771634397565 " " y[1] (numeric) = 5.036771634397630 " " absolute error = 6.48370246381091400000000000000E-14 " " relative error = 1.287273462932455000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.399999999999950 " " y[1] (analytic) = 5.0606671300214625 " " y[1] (numeric) = 5.060667130021527 " " absolute error = 6.48370246381091400000000000000E-14 " " relative error = 1.2811952055387243000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.40999999999995 " " y[1] (analytic) = 5.084603358676248 " " y[1] (numeric) = 5.084603358676314 " " absolute error = 6.57252030578092700000000000000E-14 " " relative error = 1.2926318617490057000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.41999999999995 " " y[1] (analytic) = 5.108579367246999 " " y[1] (numeric) = 5.108579367247065 " " absolute error = 6.66133814775093900000000000000E-14 " " relative error = 1.3039511905128173000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.42999999999995 " " y[1] (analytic) = 5.132594199640826 " " y[1] (numeric) = 5.132594199640892 " " absolute error = 6.66133814775093900000000000000E-14 " " relative error = 1.2978501491929936000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.43999999999995 " " y[1] (analytic) = 5.15664689688248 " " y[1] (numeric) = 5.156646896882547 " " absolute error = 6.75015598972095200000000000000E-14 " " relative error = 1.3090204011839260000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.4499999999999496 " " y[1] (analytic) = 5.180736497210252 " " y[1] (numeric) = 5.1807364972103205 " " absolute error = 6.83897383169096400000000000000E-14 " " relative error = 1.3200775286242888000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.459999999999950 " " y[1] (analytic) = 5.204862036172147 " " y[1] (numeric) = 5.204862036172216 " " absolute error = 6.83897383169096400000000000000E-14 " " relative error = 1.3139587147867238000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.469999999999950 " " y[1] (analytic) = 5.2290225467223275 " " y[1] (numeric) = 5.229022546722397 " " absolute error = 6.92779167366097700000000000000E-14 " " relative error = 1.32487316927013000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.479999999999949 " " y[1] (analytic) = 5.253217059317818 " " y[1] (numeric) = 5.253217059317887 " " absolute error = 6.92779167366097700000000000000E-14 " " relative error = 1.3187712587228634000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.489999999999949 " " y[1] (analytic) = 5.277444602015457 " " y[1] (numeric) = 5.277444602015527 " " absolute error = 7.01660951563098900000000000000E-14 " " relative error = 1.3295467872749142000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.4999999999999485 " " y[1] (analytic) = 5.3017042005690955 " " y[1] (numeric) = 5.301704200569166 " " absolute error = 7.01660951563098900000000000000E-14 " " relative error = 1.3234630319205310000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.509999999999948 " " y[1] (analytic) = 5.325994878527014 " " y[1] (numeric) = 5.325994878527085 " " absolute error = 7.10542735760100200000000000000E-14 " " relative error = 1.3341033026990284000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.519999999999948 " " y[1] (analytic) = 5.350315657329572 " " y[1] (numeric) = 5.350315657329644 " " absolute error = 7.19424519957101400000000000000E-14 " " relative error = 1.3446393933253980000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.529999999999948 " " y[1] (analytic) = 5.374665556407061 " " y[1] (numeric) = 5.374665556407134 " " absolute error = 7.28306304154102700000000000000E-14 " " relative error = 1.3550727882703312000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.539999999999948 " " y[1] (analytic) = 5.39904359327776 " " y[1] (numeric) = 5.399043593277834 " " absolute error = 7.3718808835110390000000000000E-14 " " relative error = 1.3654049566648468000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.549999999999947 " " y[1] (analytic) = 5.423448783646185 " " y[1] (numeric) = 5.4234487836462595 " " absolute error = 7.46069872548105200000000000000E-14 " " relative error = 1.3756373523758480000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.559999999999947 " " y[1] (analytic) = 5.447880141501516 " " y[1] (numeric) = 5.4478801415015905 " " absolute error = 7.46069872548105200000000000000E-14 " " relative error = 1.3694682209775588000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.569999999999947 " " y[1] (analytic) = 5.4723366792161965 " " y[1] (numeric) = 5.472336679216272 " " absolute error = 7.54951656745106400000000000000E-14 " " relative error = 1.379578233211408200000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.579999999999947 " " y[1] (analytic) = 5.496817407644700 " " y[1] (numeric) = 5.496817407644775 " " absolute error = 7.54951656745106400000000000000E-14 " " relative error = 1.3734341178863924000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.589999999999947 " " y[1] (analytic) = 5.521321336222436 " " y[1] (numeric) = 5.5213213362225115 " " absolute error = 7.54951656745106400000000000000E-14 " " relative error = 1.3673387415296270000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.599999999999946 " " y[1] (analytic) = 5.545847473064814 " " y[1] (numeric) = 5.545847473064890 " " absolute error = 7.63833440942107700000000000000E-14 " " relative error = 1.3773069754476835000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.609999999999946 " " y[1] (analytic) = 5.570394825066425 " " y[1] (numeric) = 5.5703948250665025 " " absolute error = 7.7271522513910900000000000000E-14 " " relative error = 1.3871821466980028000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.619999999999946 " " y[1] (analytic) = 5.594962398000355 " " y[1] (numeric) = 5.594962398000433 " " absolute error = 7.81597009336110200000000000000E-14 " " relative error = 1.396965616096818900000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.629999999999946 " " y[1] (analytic) = 5.619549196617604 " " y[1] (numeric) = 5.619549196617682 " " absolute error = 7.81597009336110200000000000000E-14 " " relative error = 1.3908535755974020000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.6399999999999455 " " y[1] (analytic) = 5.644154224746612 " " y[1] (numeric) = 5.64415422474669 " " absolute error = 7.81597009336110200000000000000E-14 " " relative error = 1.3847903126197783000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.649999999999945 " " y[1] (analytic) = 5.668776485392874 " " y[1] (numeric) = 5.668776485392952 " " absolute error = 7.81597009336110200000000000000E-14 " " relative error = 1.3787754930011883000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.659999999999945 " " y[1] (analytic) = 5.6934149808386385 " " y[1] (numeric) = 5.6934149808387176 " " absolute error = 7.90478793533111500000000000000E-14 " " relative error = 1.3884088832335106000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.669999999999945 " " y[1] (analytic) = 5.718068712742683 " " y[1] (numeric) = 5.718068712742762 " " absolute error = 7.90478793533111500000000000000E-14 " " relative error = 1.3824226906744475000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.679999999999945 " " y[1] (analytic) = 5.742736682240139 " " y[1] (numeric) = 5.742736682240219 " " absolute error = 7.99360577730112700000000000000E-14 " " relative error = 1.3919506011867090000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.689999999999944 " " y[1] (analytic) = 5.767417890042386 " " y[1] (numeric) = 5.7674178900424655 " " absolute error = 7.99360577730112700000000000000E-14 " " relative error = 1.3859938588986795000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.699999999999944 " " y[1] (analytic) = 5.792111336536972 " " y[1] (numeric) = 5.792111336537053 " " absolute error = 8.0824236192711400000000000000E-14 " " relative error = 1.395419243460799000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.709999999999944 " " y[1] (analytic) = 5.81681602188758 " " y[1] (numeric) = 5.816816021887662 " " absolute error = 8.17124146124115200000000000000E-14 " " relative error = 1.4047618887195873000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" "NO REAL POLE (three term test) for Equation 1" "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.719999999999944 " " y[1] (analytic) = 5.841530946134009 " " y[1] (numeric) = 5.841530946134092 " " absolute error = 8.26005930321116500000000000000E-14 " " relative error = 1.4140230325541228000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 7.338913477308628000E-3 " " Order of pole (three term test) = -0.894257651745016 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.729999999999944 " " y[1] (analytic) = 5.866255109292167 " " y[1] (numeric) = 5.866255109292250 " " absolute error = 8.34887714518117700000000000000E-14 " " relative error = 1.4232038991888588000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 1.697853631389673600E-2 " " Order of pole (three term test) = -0.9003549199517773 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.739999999999943 " " y[1] (analytic) = 5.890987511454071 " " y[1] (numeric) = 5.8909875114541554 " " absolute error = 8.4376949871511900000000000000E-14 " " relative error = 1.4323056992983704000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 2.661135398006439500E-2 " " Order of pole (three term test) = -0.9112844839455716 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.749999999999943 " " y[1] (analytic) = 5.915727152887836 " " y[1] (numeric) = 5.9157271528879205 " " absolute error = 8.4376949871511900000000000000E-14 " " relative error = 1.426315779799314000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 3.623350556415961000E-2 " " Order of pole (three term test) = -0.9270419540531252 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.759999999999943 " " y[1] (analytic) = 5.940473034137646 " " y[1] (numeric) = 5.940473034137732 " " absolute error = 8.52651282912120200000000000000E-14 " " relative error = 1.4353255675301554000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 4.58411344559086440E-2 " " Order of pole (three term test) = -0.9476210015836062 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.769999999999943 " " y[1] (analytic) = 5.965224156123705 " " y[1] (numeric) = 5.96522415612379 " " absolute error = 8.52651282912120200000000000000E-14 " " relative error = 1.429370063213494000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 5.54303899016334400E-2 " " Order of pole (three term test) = -0.9730133614015779 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.7799999999999425 " " y[1] (analytic) = 5.989979520242133 " " y[1] (numeric) = 5.989979520242219 " " absolute error = 8.61533067109121500000000000000E-14 " " relative error = 1.4382905053309694000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 6.49974285570490400E-2 " " Order of pole (three term test) = -1.0032088352871376 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.789999999999942 " " y[1] (analytic) = 6.0147381284648365 " " y[1] (numeric) = 6.014738128464923 " " absolute error = 8.61533067109121500000000000000E-14 " " relative error = 1.4323700362479683000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 7.45384160370016000E-2 " " Order of pole (three term test) = -1.038195296081815 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.799999999999942 " " y[1] (analytic) = 6.039498983439303 " " y[1] (numeric) = 6.03949898343939 " " absolute error = 8.70414851306122700000000000000E-14 " " relative error = 1.441203738410846000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 8.40495284615051700E-2 " " Order of pole (three term test) = -1.0779586926184568 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.809999999999942 " " y[1] (analytic) = 6.064261088588342 " " y[1] (numeric) = 6.06426108858843 " " absolute error = 8.7929663550312400000000000000E-14 " " relative error = 1.4499650042406229000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 9.35269539974408400E-2 " " Order of pole (three term test) = -1.1224830554330052 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.819999999999942 " " y[1] (analytic) = 6.089023448209735 " " y[1] (numeric) = 6.089023448209824 " " absolute error = 8.88178419700125200000000000000E-14 " " relative error = 1.4586549505918933000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.10296689439528019 " " Order of pole (three term test) = -1.1717505032557325 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.8299999999999415 " " y[1] (analytic) = 6.113785067575810 " " y[1] (numeric) = 6.1137850675759 " " absolute error = 8.88178419700125200000000000000E-14 " " relative error = 1.4527472095977667000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.11236556652020069 " " Order of pole (three term test) = -1.2257412502791736 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.839999999999941 " " y[1] (analytic) = 6.138544953032910 " " y[1] (numeric) = 6.1385449530330005 " " absolute error = 8.97060203897126500000000000000E-14 " " relative error = 1.4613564138744478000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.12171920387696034 " " Order of pole (three term test) = -1.2844336141996577 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.849999999999941 " " y[1] (analytic) = 6.163302112100761 " " y[1] (numeric) = 6.163302112100852 " " absolute error = 9.05941988094127700000000000000E-14 " " relative error = 1.4698970967453312000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.13102405812790505 " " Order of pole (three term test) = -1.347804025029032 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.859999999999940 " " y[1] (analytic) = 6.188055553571717 " " y[1] (numeric) = 6.188055553571807 " " absolute error = 9.05941988094127700000000000000E-14 " " relative error = 1.4640172187388045000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.14027640060347835 " " Order of pole (three term test) = -1.415827034672798 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.869999999999940 " " y[1] (analytic) = 6.212804287609877 " " y[1] (numeric) = 6.212804287609968 " " absolute error = 9.1482377229112900000000000000E-14 " " relative error = 1.472481233821499000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.1494725238046181 " " Order of pole (three term test) = -1.4884753272706304 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.87999999999994 " " y[1] (analytic) = 6.237547325850074 " " y[1] (numeric) = 6.237547325850167 " " absolute error = 9.23705556488130200000000000000E-14 " " relative error = 1.4808794358321672000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.15860874289641474 " " Order of pole (three term test) = -1.565719730294838 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.88999999999994 " " y[1] (analytic) = 6.26228368149671 " " y[1] (numeric) = 6.262283681496802 " " absolute error = 9.23705556488130200000000000000E-14 " " relative error = 1.475029882816425000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.16768139719242278 " " Order of pole (three term test) = -1.6475292264020929 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.89999999999994 " " y[1] (analytic) = 6.287012369422427 " " y[1] (numeric) = 6.28701236942252 " " absolute error = 9.32587340685131500000000000000E-14 " " relative error = 1.48335534572967000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.17668685162900896 " " Order of pole (three term test) = -1.7338709660333504 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.90999999999994 " " y[1] (analytic) = 6.3117324062666285 " " y[1] (numeric) = 6.311732406266722 " " absolute error = 9.32587340685131500000000000000E-14 " " relative error = 1.4775457523503507000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.18562149822913657 " " Order of pole (three term test) = -1.824710280756647 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.9199999999999395 " " y[1] (analytic) = 6.336442810533809 " " y[1] (numeric) = 6.336442810533903 " " absolute error = 9.41469124882132700000000000000E-14 " " relative error = 1.4858007134807855000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.19448175755498098 " " Order of pole (three term test) = -1.9200106973470839 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.929999999999940 " " y[1] (analytic) = 6.361142602691705 " " y[1] (numeric) = 6.361142602691799 " " absolute error = 9.41469124882132700000000000000E-14 " " relative error = 1.480031471836132000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.20326408014878247 " " Order of pole (three term test) = -2.019733952598044 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.939999999999939 " " y[1] (analytic) = 6.385830805269245 " " y[1] (numeric) = 6.3858308052693395 " " absolute error = 9.41469124882132700000000000000E-14 " " relative error = 1.474309535581937000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.21196494796134271 " " Order of pole (three term test) = -2.12384000885733 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.949999999999939 " " y[1] (analytic) = 6.410506442954300 " " y[1] (numeric) = 6.410506442954396 " " absolute error = 9.5035090907913400000000000000E-14 " " relative error = 1.4824895935073143000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.22058087576758392 " " Order of pole (three term test) = -2.2322870702816906 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.959999999999939 " " y[1] (analytic) = 6.43516854269121 " " y[1] (numeric) = 6.435168542691306 " " absolute error = 9.59232693276135300000000000000E-14 " " relative error = 1.490610054596924000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.22910841256858552 " " Order of pole (three term test) = -2.3450315998027733 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.9699999999999385 " " y[1] (analytic) = 6.459816133778092 " " y[1] (numeric) = 6.459816133778188 " " absolute error = 9.59232693276135300000000000000E-14 " " relative error = 1.484922594406906000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.23754414297952903 " " Order of pole (three term test) = -2.462028336797388 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.979999999999938 " " y[1] (analytic) = 6.484448247963903 " " y[1] (numeric) = 6.484448247964 " " absolute error = 9.68114477473136500000000000000E-14 " " relative error = 1.4929789558843676000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.2458846886029823 " " Order of pole (three term test) = -2.5832303154545624 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.989999999999938 " " y[1] (analytic) = 6.509063919545275 " " y[1] (numeric) = 6.509063919545372 " " absolute error = 9.68114477473136500000000000000E-14 " " relative error = 1.4873328783361667000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.2541267093869622 " " Order of pole (three term test) = -2.7085888838316365 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.999999999999938 " " y[1] (analytic) = 6.533662185463074 " " y[1] (numeric) = 6.533662185463170 " " absolute error = 9.68114477473136500000000000000E-14 " " relative error = 1.481733291364713000000000000E-12 "%" Correct digits = 15 h = 1.00E-2 " " "NO INFO (given) for Equation 1" "NO POLE (ratio test) for Equation 1" Radius of convergence (three term test) for eq 1 = 0.2622669049672212 " " Order of pole (three term test) = -2.8380537235913152 " " "NO COMPLEX POLE (six term test) for Equation 1" "Finished!" "diff ( y , x , 1 ) = (0.1 * x + 1.0) - sin(x);" Iterations = 491 "Total Elapsed Time "= 0 Years 0 Days 0 Hours 2 Minutes 59 Seconds "Elapsed Time(since restart) "= 0 Years 0 Days 0 Hours 2 Minutes 56 Seconds "Time to Timeout "= 0 Years 0 Days 0 Hours 0 Minutes 0 Seconds Percent Done = 100.40816326530485 "%" (%o58) true (%o58) diffeq.max