(%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 : sin(array_x ), array_tmp1_g : cos(array_x ), 1 1 1 1 array_tmp2 : cos(array_x ), array_tmp2_g : sin(array_x ), 1 1 1 1 array_tmp3 : array_tmp1 array_tmp2 , 1 1 1 array_tmp4 : array_tmp3 + array_const_0D0 , 1 1 1 if not array_y_set_initial then (if 1 <= glob_max_terms 1, 2 then (temporary : array_tmp4 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_g array_x - array_tmp1 array_x 1 2 1 2 array_tmp1 : ----------------------, array_tmp1_g : ----------------------, 2 1 2 1 - array_tmp2_g array_x array_tmp2 array_x 1 2 1 2 array_tmp2 : ------------------------, array_tmp2_g : --------------------, 2 1 2 1 array_tmp3 : ats(2, array_tmp1, array_tmp2, 1), array_tmp4 : array_tmp3 , 2 2 2 if not array_y_set_initial then (if 2 <= glob_max_terms 1, 3 then (temporary : array_tmp4 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_tmp1_g array_x - array_tmp1 array_x 2 2 2 2 array_tmp1 : ----------------------, array_tmp1_g : ----------------------, 3 2 3 2 - array_tmp2_g array_x array_tmp2 array_x 2 2 2 2 array_tmp2 : ------------------------, array_tmp2_g : --------------------, 3 2 3 2 array_tmp3 : ats(3, array_tmp1, array_tmp2, 1), array_tmp4 : array_tmp3 , 3 3 3 if not array_y_set_initial then (if 3 <= glob_max_terms 1, 4 then (temporary : array_tmp4 expt(glob_h, 1) factorial_3(2, 3), 3 array_y : temporary, array_y_higher : temporary, 4 1, 4 temporary 3.0 temporary : -------------, array_y_higher : temporary, 0)), kkk : 4, glob_h 2, 3 array_tmp1_g array_x - array_tmp1 array_x 3 2 3 2 array_tmp1 : ----------------------, array_tmp1_g : ----------------------, 4 3 4 3 - array_tmp2_g array_x array_tmp2 array_x 3 2 3 2 array_tmp2 : ------------------------, array_tmp2_g : --------------------, 4 3 4 3 array_tmp3 : ats(4, array_tmp1, array_tmp2, 1), array_tmp4 : array_tmp3 , 4 4 4 if not array_y_set_initial then (if 4 <= glob_max_terms 1, 5 then (temporary : array_tmp4 expt(glob_h, 1) factorial_3(3, 4), 4 array_y : temporary, array_y_higher : temporary, 5 1, 5 temporary 4.0 temporary : -------------, array_y_higher : temporary, 0)), kkk : 5, glob_h 2, 4 array_tmp1_g array_x - array_tmp1 array_x 4 2 4 2 array_tmp1 : ----------------------, array_tmp1_g : ----------------------, 5 4 5 4 - array_tmp2_g array_x array_tmp2 array_x 4 2 4 2 array_tmp2 : ------------------------, array_tmp2_g : --------------------, 5 4 5 4 array_tmp3 : ats(5, array_tmp1, array_tmp2, 1), array_tmp4 : array_tmp3 , 5 5 5 if not array_y_set_initial then (if 5 <= glob_max_terms 1, 6 then (temporary : array_tmp4 expt(glob_h, 1) factorial_3(4, 5), 5 array_y : temporary, array_y_higher : temporary, 6 1, 6 temporary 5.0 temporary : -------------, array_y_higher : temporary, 0)), kkk : 6, glob_h 2, 5 array_tmp1_g array_x kkk - 1 2 while kkk <= glob_max_terms do (array_tmp1 : ----------------------------, kkk kkk - 1 - array_tmp1 array_x kkk - 1 2 array_tmp1_g : ----------------------------, kkk kkk - 1 - array_tmp2_g array_x kkk - 1 2 array_tmp2 : ------------------------------, kkk kkk - 1 array_tmp2 array_x kkk - 1 2 array_tmp2_g : --------------------------, kkk kkk - 1 array_tmp3 : ats(kkk, array_tmp1, array_tmp2, 1), kkk array_tmp4 : array_tmp3 , 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_tmp4 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 : sin(array_x ), array_tmp1_g : cos(array_x ), 1 1 1 1 array_tmp2 : cos(array_x ), array_tmp2_g : sin(array_x ), 1 1 1 1 array_tmp3 : array_tmp1 array_tmp2 , 1 1 1 array_tmp4 : array_tmp3 + array_const_0D0 , 1 1 1 if not array_y_set_initial then (if 1 <= glob_max_terms 1, 2 then (temporary : array_tmp4 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_g array_x - array_tmp1 array_x 1 2 1 2 array_tmp1 : ----------------------, array_tmp1_g : ----------------------, 2 1 2 1 - array_tmp2_g array_x array_tmp2 array_x 1 2 1 2 array_tmp2 : ------------------------, array_tmp2_g : --------------------, 2 1 2 1 array_tmp3 : ats(2, array_tmp1, array_tmp2, 1), array_tmp4 : array_tmp3 , 2 2 2 if not array_y_set_initial then (if 2 <= glob_max_terms 1, 3 then (temporary : array_tmp4 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_tmp1_g array_x - array_tmp1 array_x 2 2 2 2 array_tmp1 : ----------------------, array_tmp1_g : ----------------------, 3 2 3 2 - array_tmp2_g array_x array_tmp2 array_x 2 2 2 2 array_tmp2 : ------------------------, array_tmp2_g : --------------------, 3 2 3 2 array_tmp3 : ats(3, array_tmp1, array_tmp2, 1), array_tmp4 : array_tmp3 , 3 3 3 if not array_y_set_initial then (if 3 <= glob_max_terms 1, 4 then (temporary : array_tmp4 expt(glob_h, 1) factorial_3(2, 3), 3 array_y : temporary, array_y_higher : temporary, 4 1, 4 temporary 3.0 temporary : -------------, array_y_higher : temporary, 0)), kkk : 4, glob_h 2, 3 array_tmp1_g array_x - array_tmp1 array_x 3 2 3 2 array_tmp1 : ----------------------, array_tmp1_g : ----------------------, 4 3 4 3 - array_tmp2_g array_x array_tmp2 array_x 3 2 3 2 array_tmp2 : ------------------------, array_tmp2_g : --------------------, 4 3 4 3 array_tmp3 : ats(4, array_tmp1, array_tmp2, 1), array_tmp4 : array_tmp3 , 4 4 4 if not array_y_set_initial then (if 4 <= glob_max_terms 1, 5 then (temporary : array_tmp4 expt(glob_h, 1) factorial_3(3, 4), 4 array_y : temporary, array_y_higher : temporary, 5 1, 5 temporary 4.0 temporary : -------------, array_y_higher : temporary, 0)), kkk : 5, glob_h 2, 4 array_tmp1_g array_x - array_tmp1 array_x 4 2 4 2 array_tmp1 : ----------------------, array_tmp1_g : ----------------------, 5 4 5 4 - array_tmp2_g array_x array_tmp2 array_x 4 2 4 2 array_tmp2 : ------------------------, array_tmp2_g : --------------------, 5 4 5 4 array_tmp3 : ats(5, array_tmp1, array_tmp2, 1), array_tmp4 : array_tmp3 , 5 5 5 if not array_y_set_initial then (if 5 <= glob_max_terms 1, 6 then (temporary : array_tmp4 expt(glob_h, 1) factorial_3(4, 5), 5 array_y : temporary, array_y_higher : temporary, 6 1, 6 temporary 5.0 temporary : -------------, array_y_higher : temporary, 0)), kkk : 6, glob_h 2, 5 array_tmp1_g array_x kkk - 1 2 while kkk <= glob_max_terms do (array_tmp1 : ----------------------------, kkk kkk - 1 - array_tmp1 array_x kkk - 1 2 array_tmp1_g : ----------------------------, kkk kkk - 1 - array_tmp2_g array_x kkk - 1 2 array_tmp2 : ------------------------------, kkk kkk - 1 array_tmp2 array_x kkk - 1 2 array_tmp2_g : --------------------------, kkk kkk - 1 array_tmp3 : ats(kkk, array_tmp1, array_tmp2, 1), kkk array_tmp4 : array_tmp3 , 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_tmp4 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) expt(cos(x), 2) (%i56) exact_soln_y(x) := block(2.0 - ---------------) 2.0 expt(cos(x), 2) (%o56) exact_soln_y(x) := block(2.0 - ---------------) 2.0 (%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/mult2postode.ode#################"), omniout_str(ALWAYS, "diff ( y , x , 1 ) = sin(x) * cos(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:10.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:100,"), 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, " (2.0 - expt(cos(x),2)/2.0) "), omniout_str(ALWAYS, "));"), omniout_str(ALWAYS, ""), omniout_str(ALWAYS, "/* END USER DEF BLOCK */"), omniout_str(ALWAYS, "#######END OF ECHO OF PROBLEM#################"), glob_unchanged_h_cnt : 0, glob_warned : false, glob_warned2 : false, glob_small_float : 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_g, 1 + max_terms), array(array_tmp1, 1 + max_terms), array(array_tmp2_g, 1 + max_terms), array(array_tmp2, 1 + max_terms), array(array_tmp3, 1 + max_terms), array(array_tmp4, 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_g : 0.0, term term : 1 + term), term : 1, while term <= max_terms do (array_tmp1 : 0.0, term term : 1 + term), term : 1, while term <= max_terms do (array_tmp2_g : 0.0, term : 1 + term), term : 1, term while term <= max_terms do (array_tmp2 : 0.0, term : 1 + term), term : 1, term while term <= max_terms do (array_tmp3 : 0.0, term : 1 + term), term : 1, term while term <= max_terms do (array_tmp4 : 0.0, term : 1 + term), term : 1, term while term <= max_terms do (array_m1 : 0.0, term : 1 + term), ord : 1, term while ord <= 2 do (term : 1, while term <= max_terms do (array_y_higher : 0.0, term : 1 + term), ord : 1 + ord), ord, term 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_g, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_tmp1_g : 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_g, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_tmp2_g : 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, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_tmp4 : 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_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 : 10.0, array_y_init : exact_soln_y(x_start), 1 + 0 glob_look_poles : true, glob_max_iter : 100, 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 ) = sin(x) * cos(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-26T04:03:51-05:00"), logitem_str(html_log_file, "Maxima"), logitem_str(html_log_file, "mult2"), logitem_str(html_log_file, "diff ( y , x , 1 ) = sin(x) * cos(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, "mult2 diffeq.max"), logitem_str(html_log_file, "mult2 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/mult2postode.ode#################"), omniout_str(ALWAYS, "diff ( y , x , 1 ) = sin(x) * cos(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:10.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:100,"), 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, " (2.0 - expt(cos(x),2)/2.0) "), omniout_str(ALWAYS, "));"), omniout_str(ALWAYS, ""), omniout_str(ALWAYS, "/* END USER DEF BLOCK */"), omniout_str(ALWAYS, "#######END OF ECHO OF PROBLEM#################"), glob_unchanged_h_cnt : 0, glob_warned : false, glob_warned2 : false, glob_small_float : 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_g, 1 + max_terms), array(array_tmp1, 1 + max_terms), array(array_tmp2_g, 1 + max_terms), array(array_tmp2, 1 + max_terms), array(array_tmp3, 1 + max_terms), array(array_tmp4, 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_g : 0.0, term term : 1 + term), term : 1, while term <= max_terms do (array_tmp1 : 0.0, term term : 1 + term), term : 1, while term <= max_terms do (array_tmp2_g : 0.0, term : 1 + term), term : 1, term while term <= max_terms do (array_tmp2 : 0.0, term : 1 + term), term : 1, term while term <= max_terms do (array_tmp3 : 0.0, term : 1 + term), term : 1, term while term <= max_terms do (array_tmp4 : 0.0, term : 1 + term), term : 1, term while term <= max_terms do (array_m1 : 0.0, term : 1 + term), ord : 1, term while ord <= 2 do (term : 1, while term <= max_terms do (array_y_higher : 0.0, term : 1 + term), ord : 1 + ord), ord, term 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_g, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_tmp1_g : 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_g, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_tmp2_g : 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, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_tmp4 : 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_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 : 10.0, array_y_init : exact_soln_y(x_start), 1 + 0 glob_look_poles : true, glob_max_iter : 100, 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 ) = sin(x) * cos(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-26T04:03:51-05:00"), logitem_str(html_log_file, "Maxima"), logitem_str(html_log_file, "mult2"), logitem_str(html_log_file, "diff ( y , x , 1 ) = sin(x) * cos(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, "mult2 diffeq.max"), logitem_str(html_log_file, "mult2 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/mult2postode.ode#################" "diff ( y , x , 1 ) = sin(x) * cos(x) ;" "!" "/* BEGIN FIRST INPUT BLOCK */" "Digits:32," "max_terms:30," "!" "/* END FIRST INPUT BLOCK */" "/* BEGIN SECOND INPUT BLOCK */" "x_start:0.1," "x_end:10.0," "array_y_init[0 + 1] : exact_soln_y(x_start)," "glob_look_poles:true," "glob_max_iter:100," "/* 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(" " (2.0 - expt(cos(x),2)/2.0) " "));" "" "/* 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 = 9.9 "" estimated_steps = 9900000. "" step_error = 1.010101010101010100000000000000000E-17 "" est_needed_step_err = 1.010101010101010100000000000000000E-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 = 4.077147703906519600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000E-176 "" estimated_step_error = 4.077147703906519600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000E-176 "" 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 = 2.7361274871514973000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000E-168 "" estimated_step_error = 2.7361274871514973000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000E-168 "" 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.83618404664775750000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000E-160 "" estimated_step_error = 1.83618404664775750000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000E-160 "" 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 = 1.232242217648850100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000E-152 "" estimated_step_error = 1.232242217648850100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000E-152 "" 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 = 8.2694370432424970000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000E-145 "" estimated_step_error = 8.2694370432424970000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000E-145 "" 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 = 5.54952459227575500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000E-137 "" estimated_step_error = 5.54952459227575500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000E-137 "" 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 = 3.7242220165209694000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000E-129 "" estimated_step_error = 3.7242220165209694000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000E-129 "" 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 = 2.49928188718373440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000E-121 "" estimated_step_error = 2.49928188718373440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000E-121 "" 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.677238070716006400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000E-113 "" estimated_step_error = 1.677238070716006400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000E-113 "" 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 = 1.1255732521898258000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000E-105 "" estimated_step_error = 1.1255732521898258000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000E-105 "" 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 = 7.5535651864681400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000E-98 "" estimated_step_error = 7.5535651864681400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000E-98 "" 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 = 5.06907279558775000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000E-90 "" estimated_step_error = 5.06907279558775000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000E-90 "" 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 = 3.40174480522630940000000000000000000000000000000000000000000000000000000000000000000000000000000000E-82 "" estimated_step_error = 3.40174480522630940000000000000000000000000000000000000000000000000000000000000000000000000000000000E-82 "" 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 = 2.28280193823970500000000000000000000000000000000000000000000000000000000000000000000000000E-74 "" estimated_step_error = 2.28280193823970500000000000000000000000000000000000000000000000000000000000000000000000000E-74 "" 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 = 1.5318678129253896000000000000000000000000000000000000000000000000000000000000000000E-66 "" estimated_step_error = 1.5318678129253896000000000000000000000000000000000000000000000000000000000000000000E-66 "" 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 = 1.02789152242339430000000000000000000000000000000000000000000000000000000000E-58 "" estimated_step_error = 1.02789152242339430000000000000000000000000000000000000000000000000000000000E-58 "" 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 = 6.896336393028165000000000000000000000000000000000000000000000000000E-51 "" estimated_step_error = 6.896336393028165000000000000000000000000000000000000000000000000000E-51 "" 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 = 4.6256958194142950000000000000000000000000000000000000000000E-43 "" estimated_step_error = 4.6256958194142950000000000000000000000000000000000000000000E-43 "" best_h = 0.1 "" "START of Soultion" " " "TOP MAIN SOLVE Loop" x[1] = 0.1 " " y[1] (analytic) = 1.5049833555396894 " " y[1] (numeric) = 1.5049833555396894 " " 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.5060256376673486 " " y[1] (numeric) = 1.5060256376673484 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.474374667810778300000000000000E-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.12 " " y[1] (analytic) = 1.5071655062869926 " " y[1] (numeric) = 1.5071655062869924 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.473259598888072300000000000000E-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.13 " " y[1] (analytic) = 1.5084025054663717 " " y[1] (numeric) = 1.5084025054663714 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.472051419434489700000000000000E-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.14 " " y[1] (analytic) = 1.5097361404223073 " " y[1] (numeric) = 1.509736140422307 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.470751073514875200000000000000E-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.15000000000000002 " " y[1] (analytic) = 1.5111658777185986 " " y[1] (numeric) = 1.5111658777185983 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.46935957328689280000000000000E-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.16000000000000003 " " y[1] (analytic) = 1.5126911454793899 " " y[1] (numeric) = 1.5126911454793897 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.467877997359882000000000000000E-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.17000000000000004 " " y[1] (analytic) = 1.5143113336179135 " " y[1] (numeric) = 1.5143113336179133 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.466307489058633300000000000000E-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.5160257940805162 " " y[1] (numeric) = 1.5160257940805162 " " 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.19000000000000006 " " y[1] (analytic) = 1.5178338411058725 " " y[1] (numeric) = 1.5178338411058723 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.462904561168913700000000000000E-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.5197347514992787 " " y[1] (numeric) = 1.5197347514992785 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.461074734956053800000000000000E-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.521727764921923 " " y[1] (numeric) = 1.5217277649219227 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.459161159068580500000000000000E-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.5238120841950091 " " y[1] (numeric) = 1.523812084195009 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.45716527141423600000000000000E-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.2300000000000001 " " y[1] (analytic) = 1.5259868756186188 " " y[1] (numeric) = 1.5259868756186183 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.91017712501644930000000000000E-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.528251269305179 " " y[1] (numeric) = 1.5282512693051786 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.905865146455714500000000000000E-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.5306043595274068 " " y[1] (numeric) = 1.5306043595274066 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.450698892518445200000000000000E-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.5330452050805876 " " y[1] (numeric) = 1.5330452050805874 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.44838915505664500000000000000E-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.5355728296590438 " " y[1] (numeric) = 1.5355728296590438 " " 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.28000000000000014 " " y[1] (analytic) = 1.538186222246646 " " y[1] (numeric) = 1.5381862222466458 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.443548262971157700000000000000E-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.5408843375212034 " " y[1] (numeric) = 1.5408843375212031 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.44102058485603800000000000000E-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.5436660962725806 " " y[1] (numeric) = 1.5436660962725803 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.438423798133496600000000000000E-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.5465303858343664 " " y[1] (numeric) = 1.5465303858343664 " " 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.3200000000000002 " " y[1] (analytic) = 1.5494760605289268 " " y[1] (numeric) = 1.5494760605289268 " " absolute error = 0.0 " " relative error = 0.0 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 7.445438222209646 " " "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.3300000000000002 " " y[1] (analytic) = 1.5525019421256587 " " y[1] (numeric) = 1.5525019421256587 " " absolute error = 0.0 " " relative error = 0.0 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 7.761049128436642 " " "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.3400000000000002 " " y[1] (analytic) = 1.555606820312268 " " y[1] (numeric) = 1.555606820312268 " " absolute error = 0.0 " " relative error = 0.0 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 8.086613751425652 " " "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.3500000000000002 " " y[1] (analytic) = 1.558789453178878 " " y[1] (numeric) = 1.5587894531788777 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.42446822739408620000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 8.422883804630802 " " "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.3600000000000002 " " y[1] (analytic) = 1.5620485677147764 " " y[1] (numeric) = 1.5620485677147762 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.421496165448139500000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 8.770678998748348 " " "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.3700000000000002 " " y[1] (analytic) = 1.565382860317603 " " y[1] (numeric) = 1.565382860317603 " " absolute error = 0.0 " " relative error = 0.0 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 9.130895332743016 " " "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.3800000000000002 " " y[1] (analytic) = 1.5687909973147738 " " y[1] (numeric) = 1.5687909973147738 " " absolute error = 0.0 " " relative error = 0.0 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 9.504514606088035 " " "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.39000000000000024 " " y[1] (analytic) = 1.5722716154969307 " " y[1] (numeric) = 1.5722716154969307 " " absolute error = 0.0 " " relative error = 0.0 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 9.603122779840753 " " "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.40000000000000024 " " y[1] (analytic) = 1.5758233226632088 " " y[1] (numeric) = 1.5758233226632088 " " absolute error = 0.0 " " relative error = 0.0 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 9.226538706179495 " " "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.41000000000000025 " " y[1] (analytic) = 1.5794446981780967 " " y[1] (numeric) = 1.5794446981780967 " " absolute error = 0.0 " " relative error = 0.0 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 8.864307509834532 " " "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.42000000000000026 " " y[1] (analytic) = 1.583134293539673 " " y[1] (numeric) = 1.583134293539673 " " absolute error = 0.0 " " relative error = 0.0 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 8.51535007231459 " " "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.43000000000000027 " " y[1] (analytic) = 1.5868906329589871 " " y[1] (numeric) = 1.5868906329589871 " " absolute error = 0.0 " " relative error = 0.0 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 8.178685456619016 " " "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.4400000000000003 " " y[1] (analytic) = 1.5907122139503551 " " y[1] (numeric) = 1.5907122139503551 " " absolute error = 0.0 " " relative error = 0.0 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 7.85341966728519 " " "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.4500000000000003 " " y[1] (analytic) = 1.594597507932334 " " y[1] (numeric) = 1.594597507932334 " " absolute error = 0.0 " " relative error = 0.0 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 7.538735904502005 " " "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.4600000000000003 " " y[1] (analytic) = 1.5985449608391344 " " y[1] (numeric) = 1.5985449608391344 " " absolute error = 0.0 " " relative error = 0.0 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 7.233886084658579 " " "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.4700000000000003 " " y[1] (analytic) = 1.6025529937422256 " " y[1] (numeric) = 1.6025529937422256 " " absolute error = 0.0 " " relative error = 0.0 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 6.938183438423402 " " "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.4800000000000003 " " y[1] (analytic) = 1.606620003481886 " " y[1] (numeric) = 1.606620003481886 " " 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.4900000000000003 " " y[1] (analytic) = 1.610744363308446 " " y[1] (numeric) = 1.610744363308446 " " 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.5000000000000003 " " y[1] (analytic) = 1.6149244235329652 " " y[1] (numeric) = 1.6149244235329654 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.374953537697231600000000000000E-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.6191585121870877 " " y[1] (numeric) = 1.619158512187088 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.371358043414188700000000000000E-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.6234449356918055 " " y[1] (numeric) = 1.6234449356918057 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.367737211428181300000000000000E-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.6277819795348683 " " y[1] (numeric) = 1.6277819795348685 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.364093027915689300000000000000E-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.632167908956565 " " y[1] (numeric) = 1.6321679089565653 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.360427464028398000000000000000E-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.636600969643606 " " y[1] (numeric) = 1.636600969643606 " " 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.5600000000000004 " " y[1] (analytic) = 1.6410793884308221 " " y[1] (numeric) = 1.6410793884308221 " " 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.5700000000000004 " " y[1] (analytic) = 1.6456013740104107 " " y[1] (numeric) = 1.6456013740104107 " " 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.5800000000000004 " " y[1] (analytic) = 1.6501651176484318 " " y[1] (numeric) = 1.650165117648432 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.345590223367804600000000000000E-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.6547687939082798 " " y[1] (numeric) = 1.6547687939082798 " " 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.6000000000000004 " " y[1] (analytic) = 1.6594105613808319 " " y[1] (numeric) = 1.6594105613808319 " " 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.6100000000000004 " " y[1] (analytic) = 1.6640885634209885 " " y[1] (numeric) = 1.6640885634209885 " " 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.6200000000000004 " " y[1] (analytic) = 1.668800928890306 " " y[1] (numeric) = 1.6688009288903063 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.330563766360576000000000000000E-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.673545772905428 " " y[1] (numeric) = 1.673545772905428 " " 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.6400000000000005 " " y[1] (analytic) = 1.6783211975920114 " " y[1] (numeric) = 1.6783211975920114 " " 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.6500000000000005 " " y[1] (analytic) = 1.6831252928438534 " " y[1] (numeric) = 1.6831252928438534 " " 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.6600000000000005 " " y[1] (analytic) = 1.687956137086907 " " y[1] (numeric) = 1.687956137086907 " " 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.6700000000000005 " " y[1] (analytic) = 1.6928117980478854 " " y[1] (numeric) = 1.6928117980478854 " " 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.6800000000000005 " " y[1] (analytic) = 1.6976903335271454 " " y[1] (numeric) = 1.6976903335271454 " " 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.6900000000000005 " " y[1] (analytic) = 1.7025897921755417 " " y[1] (numeric) = 1.7025897921755417 " " 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.7000000000000005 " " y[1] (analytic) = 1.70750821427494 " " y[1] (numeric) = 1.70750821427494 " " 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.7100000000000005 " " y[1] (analytic) = 1.7124436325220787 " " y[1] (numeric) = 1.7124436325220789 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.296653511438534700000000000000E-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.7200000000000005 " " y[1] (analytic) = 1.717394072815464 " " y[1] (numeric) = 1.717394072815464 " " 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.7300000000000005 " " y[1] (analytic) = 1.722357555044983 " " y[1] (numeric) = 1.722357555044983 " " 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.7400000000000005 " " y[1] (analytic) = 1.727332093883923 " " y[1] (numeric) = 1.727332093883923 " " 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.7500000000000006 " " y[1] (analytic) = 1.7323156995830746 " " y[1] (numeric) = 1.7323156995830746 " " 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.7600000000000006 " " y[1] (analytic) = 1.7373063787666054 " " y[1] (numeric) = 1.7373063787666057 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.278096987606015300000000000000E-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.7700000000000006 " " y[1] (analytic) = 1.7423021352293837 " " y[1] (numeric) = 1.742302135229384 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.274432260830570000000000000000E-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.7800000000000006 " " y[1] (analytic) = 1.7473009707354334 " " y[1] (numeric) = 1.7473009707354337 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.270786250588377000000000000000E-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.7900000000000006 " " y[1] (analytic) = 1.7523008858172024 " " y[1] (numeric) = 1.7523008858172027 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.26716026181473200000000000000E-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.437234190789231000E-3 " " Order of pole (three term test) = -0.8949050896709203 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.8000000000000006 " " y[1] (analytic) = 1.7572998805753226 " " y[1] (numeric) = 1.7572998805753228 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.263555568286592600000000000000E-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.407232166663307800E-2 " " Order of pole (three term test) = -0.9134710156510107 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.8100000000000006 " " y[1] (analytic) = 1.762295955478543 " " y[1] (numeric) = 1.7622959554785433 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.519946825443813400000000000000E-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.368485014762314300E-2 " " Order of pole (three term test) = -0.9513431147005371 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.8200000000000006 " " y[1] (analytic) = 1.7672871121635159 " " y[1] (numeric) = 1.7672871121635163 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.51283001383067800000000000000E-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.325941026918400300E-2 " " Order of pole (three term test) = -1.00846055081868 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.8300000000000006 " " y[1] (analytic) = 1.772271354234115 " " y[1] (numeric) = 1.7722713542341155 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.505763063816913000000000000000E-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.27806539055681100E-2 " " Order of pole (three term test) = -1.0847315746605632 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.8400000000000006 " " y[1] (analytic) = 1.777246688059968 " " y[1] (numeric) = 1.7772466880599687 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.74812241457735800000000000000E-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.22333189213801600E-2 " " Order of pole (three term test) = -1.180033672712643 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.8500000000000006 " " y[1] (analytic) = 1.7822111235738816 " " y[1] (numeric) = 1.782211123573882 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.491787891883017500000000000000E-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.16022537810799600E-2 " " Order of pole (three term test) = -1.2942137664698559 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.8600000000000007 " " y[1] (analytic) = 1.7871626750678413 " " y[1] (numeric) = 1.7871626750678418 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.4848840905498700000000000000E-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.0872441975834100E-2 " " Order of pole (three term test) = -1.4270884612752737 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.8700000000000007 " " y[1] (analytic) = 1.7920993619872696 " " y[1] (numeric) = 1.79209936198727 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.478038993092489300000000000000E-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.00290262274509100E-2 " " Order of pole (three term test) = -1.578444344398953 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.8800000000000007 " " y[1] (analytic) = 1.7970192097232203 " " y[1] (numeric) = 1.7970192097232207 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.47125466131473320000000000000E-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.90573324295051400E-2 " " Order of pole (three term test) = -1.7480383318488197 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.8900000000000007 " " y[1] (analytic) = 1.8019202504021963 " " y[1] (numeric) = 1.8019202504021967 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.464533098792468800000000000000E-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.79428932862525900E-2 " " Order of pole (three term test) = -1.9355980633241832 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.9000000000000007 " " y[1] (analytic) = 1.806800523673272 " " y[1] (numeric) = 1.8068005236732725 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.457876251592056300000000000000E-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.10667147161046224 " " Order of pole (three term test) = -2.140822344640905 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.9100000000000007 " " y[1] (analytic) = 1.8116580774922089 " " y[1] (numeric) = 1.8116580774922093 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.451286009028778600000000000000E-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.11522908324191788 " " Order of pole (three term test) = -2.3633816368773934 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.9200000000000007 " " y[1] (analytic) = 1.8164909689022455 " " y[1] (numeric) = 1.816490968902246 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.44476420446195600000000000000E-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.12360201954900944 " " Order of pole (three term test) = -2.6029185914119157 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.9300000000000007 " " y[1] (analytic) = 1.8212972648112555 " " y[1] (numeric) = 1.821297264811256 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.43831261612356520000000000000E-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.13177686947658607 " " Order of pole (three term test) = -2.859048629944885 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.9400000000000007 " " y[1] (analytic) = 1.8260750427649586 " " y[1] (numeric) = 1.826075042764959 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.43193296797728100000000000000E-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.13974054110405057 " " Order of pole (three term test) = -3.131360568524604 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.9500000000000007 " " y[1] (analytic) = 1.8308223917158761 " " y[1] (numeric) = 1.8308223917158766 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.425626930604967400000000000000E-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.14748028267854352 " " Order of pole (three term test) = -3.419417284521679 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.9600000000000007 " " y[1] (analytic) = 1.8355374127877249 " " y[1] (numeric) = 1.8355374127877253 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.419396122117726500000000000000E-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.15498370308900503 " " Order of pole (three term test) = -3.7227564254263057 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.9700000000000008 " " y[1] (analytic) = 1.8402182200349422 " " y[1] (numeric) = 1.8402182200349426 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.413242109088726600000000000000E-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.162238791747882 " " Order of pole (three term test) = -4.04089115827337 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.9800000000000008 " " y[1] (analytic) = 1.844862941197039 " " y[1] (numeric) = 1.8448629411970394 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.40716640750513100000000000000E-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.16923393784830926 " " Order of pole (three term test) = -4.373310958434029 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 0.9900000000000008 " " y[1] (analytic) = 1.8494697184474793 " " y[1] (numeric) = 1.8494697184474798 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.401170483736545200000000000000E-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.1759579489656744 " " Order of pole (three term test) = -4.719482436447490 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.0000000000000007 " " y[1] (analytic) = 1.854036709136786 " " y[1] (numeric) = 1.8540367091367864 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.39525575551750800000000000000E-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.18240006897365355 " " Order of pole (three term test) = -5.078850201506026 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.0100000000000007 " " y[1] (analytic) = 1.8585620865295753 " " y[1] (numeric) = 1.858562086529576 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.584135389412473300000000000000E-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.18854999524597804 " " Order of pole (three term test) = -5.450837760145876 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.0200000000000007 " " y[1] (analytic) = 1.8630440405352282 " " y[1] (numeric) = 1.8630440405352289 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.57551297919786400000000000000E-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.19439789511646385 " " Order of pole (three term test) = -5.8348484486415675 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.0300000000000007 " " y[1] (analytic) = 1.8674807784319007 " " y[1] (numeric) = 1.8674807784319014 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.56701831937696200000000000000E-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.19993442157111058 " " Order of pole (three term test) = -6.230266397546805 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.0400000000000007 " " y[1] (analytic) = 1.8718705255835901 " " y[1] (numeric) = 1.8718705255835908 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.558653259778287000000000000000E-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.2051507281474145 " " Order of pole (three term test) = -6.636457526774745 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.0500000000000007 " " y[1] (analytic) = 1.8762115261499648 " " y[1] (numeric) = 1.8762115261499652 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.366946389895308300000000000000E-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.21003848301741065 " " Order of pole (three term test) = -7.052770569562955 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.0600000000000007 " " y[1] (analytic) = 1.880502043788677 " " y[1] (numeric) = 1.8805020437886777 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.54231901515524860000000000000E-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.21458988223236247 " " Order of pole (three term test) = -7.478538123623549 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.0700000000000007 " " y[1] (analytic) = 1.8847403623498782 " " y[1] (numeric) = 1.8847403623498786 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.356235472648211300000000000000E-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.21879766210845453 " " Order of pole (three term test) = -7.913077727737592 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.0800000000000007 " " y[1] (analytic) = 1.8889247865626535 " " y[1] (numeric) = 1.888924786562654 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.351015842500474600000000000000E-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.22265511073431493 " " Order of pole (three term test) = -8.355692962014723 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.0900000000000007 " " y[1] (analytic) = 1.8930536427131095 " " y[1] (numeric) = 1.89305364271311 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.34588814511139500000000000000E-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.22615607858267894 " " Order of pole (three term test) = -8.805674570003319 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.1000000000000008 " " y[1] (analytic) = 1.8971252793138367 " " y[1] (numeric) = 1.8971252793138371 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.340853367420644700000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 6.915009872045560 " " "Order of pole (ratio test) Not computed" Radius of convergence (three term test) for eq 1 = 0.22929498821003344 " " Order of pole (three term test) = -9.262301600805415 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.1100000000000008 " " y[1] (analytic) = 1.9011380677644827 " " y[1] (numeric) = 1.9011380677644831 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.335912458858182300000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 7.210011951595310 " " "Order of pole (ratio test) Not computed" Radius of convergence (three term test) for eq 1 = 0.23206684302961245 " " Order of pole (three term test) = -9.724842569321439 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.1200000000000008 " " y[1] (analytic) = 1.9050904030031701 " " y[1] (numeric) = 1.9050904030031706 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.331066332337844700000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 7.5141089523155244 " " "Order of pole (ratio test) Not computed" Radius of convergence (three term test) for eq 1 = 0.2344672351446695 " " Order of pole (three term test) = -10.192556632724793 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.1300000000000008 " " y[1] (analytic) = 1.908980704148501 " " y[1] (numeric) = 1.9089807041485012 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.163157932620770600000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 7.827983050721885 " " "Order of pole (ratio test) Not computed" Radius of convergence (three term test) for eq 1 = 0.23649235223052636 " " Order of pole (three term test) = -10.664694781244222 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.1400000000000008 " " y[1] (analytic) = 1.9128074151318868 " " y[1] (numeric) = 1.912807415131887 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.160830950196423500000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 8.152377189613262 " " "Order of pole (ratio test) Not computed" Radius of convergence (three term test) for eq 1 = 0.23813898345547452 " " Order of pole (three term test) = -11.140501041313433 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.1500000000000008 " " y[1] (analytic) = 1.9165690053199564 " " y[1] (numeric) = 1.9165690053199567 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.158552623509439800000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 8.488102401325754 " " "Order of pole (ratio test) Not computed" Radius of convergence (three term test) for eq 1 = 0.23940452443220378 " " Order of pole (three term test) = -11.619213689132103 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.1600000000000008 " " y[1] (analytic) = 1.9202639701267885 " " y[1] (numeric) = 1.9202639701267887 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.156323340849698100000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 8.83604619491139 " " "Order of pole (ratio test) Not computed" Radius of convergence (three term test) for eq 1 = 0.24028698119301914 " " Order of pole (three term test) = -12.100066472670239 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.1700000000000008 " " y[1] (analytic) = 1.923890831615726 " " y[1] (numeric) = 1.9238908316157262 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.154143474651071300000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 9.197182193396396 " " "Order of pole (ratio test) Not computed" Radius of convergence (three term test) for eq 1 = 0.24078497318371664 " " Order of pole (three term test) = -12.582289840139623 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.1800000000000008 " " y[1] (analytic) = 1.9274481390905305 " " y[1] (numeric) = 1.9274481390905307 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.152013381951762500000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 9.572581245358446 " " "Order of pole (ratio test) Not computed" Radius of convergence (three term test) for eq 1 = 0.24089773527258176 " " Order of pole (three term test) = -13.06511217295014 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.1900000000000008 " " y[1] (analytic) = 1.9309344696756425 " " y[1] (numeric) = 1.9309344696756428 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.149933404846878400000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 9.53487448790187 " " "Order of pole (ratio test) Not computed" Radius of convergence (three term test) for eq 1 = 0.24062511877257592 " " Order of pole (three term test) = -13.547761021167213 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.2000000000000008 " " y[1] (analytic) = 1.9343484288853117 " " y[1] (numeric) = 1.9343484288853119 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.147903870932843300000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 9.160142896734072 " " "Order of pole (ratio test) Not computed" Radius of convergence (three term test) for eq 1 = 0.23996759147636743 " " Order of pole (three term test) = -14.029464339487506 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.2100000000000009 " " y[1] (analytic) = 1.937688651181373 " " y[1] (numeric) = 1.9376886511813733 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.29185018748656900000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 8.79889643195377 " " "Order of pole (ratio test) Not computed" Radius of convergence (three term test) for eq 1 = 0.23892623670544785 " " Order of pole (three term test) = -14.509451721754298 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.2200000000000009 " " y[1] (analytic) = 1.9409538005194438 " " y[1] (numeric) = 1.9409538005194442 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.287994746352098600000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 8.450146011477896 " " "Order of pole (ratio test) Not computed" Radius of convergence (three term test) for eq 1 = 0.23750275137615096 " " Order of pole (three term test) = -14.986955632041818 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.2300000000000009 " " y[1] (analytic) = 1.9441425708833235 " " y[1] (numeric) = 1.944142570883324 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.28424199182208200000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 8.112989169883415 " " "Order of pole (ratio test) Not computed" Radius of convergence (three term test) for eq 1 = 0.23569944308695198 " " Order of pole (three term test) = -15.461212630348092 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.2400000000000009 " " y[1] (analytic) = 1.947253686807383 " " y[1] (numeric) = 1.9472536868073835 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.28059247163716200000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 7.78660044014339 " " "Order of pole (ratio test) Not computed" Radius of convergence (three term test) for eq 1 = 0.23351922623297103 " " Order of pole (three term test) = -15.931464590949817 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.2500000000000009 " " y[1] (analytic) = 1.9502859038867337 " " y[1] (numeric) = 1.9502859038867342 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.277046708716066500000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 7.470222972386577 " " "Order of pole (ratio test) Not computed" Radius of convergence (three term test) for eq 1 = 0.23096561715513533 " " Order of pole (three term test) = -16.39695991148958 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.260000000000001 " " y[1] (analytic) = 1.9532380092749728 " " y[1] (numeric) = 1.9532380092749733 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.27360520193289280000000000000E-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.22804272833296277 " " Order of pole (three term test) = -16.85695471088526 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.270000000000001 " " y[1] (analytic) = 1.956108822169306 " " y[1] (numeric) = 1.9561088221693064 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.270268426873981200000000000000E-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.22475526163141657 " " Order of pole (three term test) = -17.310714014174078 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.280000000000001 " " y[1] (analytic) = 1.9588971942828521 " " y[1] (numeric) = 1.9588971942828528 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.40055525486095800000000000000E-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.22110850061374523 " " Order of pole (three term test) = -17.757512922429523 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.290000000000001 " " y[1] (analytic) = 1.9616020103039442 " " y[1] (numeric) = 1.9616020103039449 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.395866293346011500000000000000E-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.21710830193365796 " " Order of pole (three term test) = -18.196637765917032 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.300000000000001 " " y[1] (analytic) = 1.964222188342237 " " y[1] (numeric) = 1.9642221883422377 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.391336370847623500000000000000E-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.21276108582159348 " " Order of pole (three term test) = -18.627387238685795 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.310000000000001 " " y[1] (analytic) = 1.966756680361451 " " y[1] (numeric) = 1.9667566803614516 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.386966071739345700000000000000E-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.2080738256812241 " " Order of pole (three term test) = -19.049073512827032 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.320000000000001 " " y[1] (analytic) = 1.9692044725985707 " " y[1] (numeric) = 1.9692044725985713 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.38275595066093300000000000000E-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.20305403681367742 " " Order of pole (three term test) = -19.4610233306655 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.330000000000001 " " y[1] (analytic) = 1.9715645859693383 " " y[1] (numeric) = 1.971564585969339 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.378706533458973300000000000000E-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.19770976428827888 " " Order of pole (three term test) = -19.86257907318939 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.340000000000001 " " y[1] (analytic) = 1.9738360764598732 " " y[1] (numeric) = 1.973836076459874 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.37481831809368100000000000000E-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.1920495699798935 " " Order of pole (three term test) = -20.253099803064487 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.350000000000001 " " y[1] (analytic) = 1.9760180355042656 " " y[1] (numeric) = 1.9760180355042662 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.3710917755115600000000000000E-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.1860825187941898 " " Order of pole (three term test) = -20.631962280621877 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.360000000000001 " " y[1] (analytic) = 1.9781095903479897 " " y[1] (numeric) = 1.9781095903479904 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.36752735048368830000000000000E-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.17981816410335336 " " Order of pole (three term test) = -20.99856195125381 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.370000000000001 " " y[1] (analytic) = 1.9801099043969954 " " y[1] (numeric) = 1.980109904396996 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.364125462409381400000000000000E-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.17326653241594503 " " Order of pole (three term test) = -21.352313902699606 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.380000000000001 " " y[1] (analytic) = 1.9820181775523333 " " y[1] (numeric) = 1.982018177552334 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.360886506085059600000000000000E-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.16643810730572267 " " Order of pole (three term test) = -21.692653790753344 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.390000000000001 " " y[1] (analytic) = 1.983833646530185 " " y[1] (numeric) = 1.9838336465301856 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.357810852438118000000000000000E-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.15934381262533015 " " Order of pole (three term test) = -22.01903873197635 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.400000000000001 " " y[1] (analytic) = 1.9855555851671647 " " y[1] (numeric) = 1.9855555851671653 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.35489884922567800000000000000E-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.1519949950318 " " Order of pole (three term test) = -22.330948162050927 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.410000000000001 " " y[1] (analytic) = 1.987183304710777 " " y[1] (numeric) = 1.9871833047107776 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.35215082169808100000000000000E-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.1444034058518123 " " Order of pole (three term test) = -22.627884658466748 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.420000000000001 " " y[1] (analytic) = 1.9887161540949068 " " y[1] (numeric) = 1.9887161540949074 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.349567073227004000000000000000E-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.13658118231560648 " " Order of pole (three term test) = -22.90937472628845 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.430000000000001 " " y[1] (analytic) = 1.9901535202002383 " " y[1] (numeric) = 1.990153520200239 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.34714788589812500000000000000E-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.12854082818935217 " " Order of pole (three term test) = -23.17496954581087 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.440000000000001 " " y[1] (analytic) = 1.9914948280994937 " " y[1] (numeric) = 1.9914948280994946 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.459858028091010000000000000000E-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.12029519383664351 " " Order of pole (three term test) = -23.42424568096871 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.450000000000001 " " y[1] (analytic) = 1.9927395412873978 " " y[1] (numeric) = 1.9927395412873985 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.3428042198868700000000000000E-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.11185745574059966 " " Order of pole (three term test) = -23.656805747428482 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.460000000000001 " " y[1] (analytic) = 1.9938871618952707 " " y[1] (numeric) = 1.9938871618952716 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.45450693837596900000000000000E-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.10324109551881848 " " Order of pole (three term test) = -23.872279039353238 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.470000000000001 " " y[1] (analytic) = 1.9949372308901712 " " y[1] (numeric) = 1.994937230890172 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.452162233213756700000000000000E-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.4459878464150600E-2 " " Order of pole (three term test) = -24.070322113894534 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.480000000000001 " " y[1] (analytic) = 1.9958893282585017 " " y[1] (numeric) = 1.9958893282585026 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.45003842209577100000000000000E-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.55278316449303200E-2 " " Order of pole (three term test) = -24.250619332531024 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.490000000000001 " " y[1] (analytic) = 1.9967430731740095 " " y[1] (numeric) = 1.9967430731740103 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.44813572478447500000000000000E-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.64592215989206100E-2 " " Order of pole (three term test) = -24.41288335843924 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.500000000000001 " " y[1] (analytic) = 1.9974981241501115 " " y[1] (numeric) = 1.9974981241501124 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.4464543368621400000000000000E-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.72685316557989200E-2 " " Order of pole (three term test) = -24.55685560914914 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.5100000000000011 " " y[1] (analytic) = 1.9981541791764843 " " y[1] (numeric) = 1.9981541791764854 " " absolute error = 1.1102230246251565000000000000000E-15 " " relative error = 5.556243037675510000000000000000E-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.79704389235330200E-2 " " Order of pole (three term test) = -24.682306663804884 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.5200000000000011 " " y[1] (analytic) = 1.998710975839865 " " y[1] (numeric) = 1.998710975839866 " " absolute error = 1.1102230246251565000000000000000E-15 " " relative error = 5.55469519127765400000000000000E-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.85797909744636900E-2 " " Order of pole (three term test) = -24.789036624420298 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.5300000000000011 " " y[1] (analytic) = 1.9991682914290116 " " y[1] (numeric) = 1.9991682914290128 " " absolute error = 1.1102230246251565000000000000000E-15 " " relative error = 5.553424538519295000000000000000E-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.9111582267330800E-2 " " Order of pole (three term test) = -24.876875430587596 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.5400000000000011 " " y[1] (analytic) = 1.9995259430237864 " " y[1] (numeric) = 1.9995259430237875 " " absolute error = 1.1102230246251565000000000000000E-15 " " relative error = 5.552431207500214000000000000000E-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.958093034184680600E-2 " " Order of pole (three term test) = -24.94568312716842 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.5500000000000012 " " y[1] (analytic) = 1.99978378756832 " " y[1] (numeric) = 1.9997837875683209 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.44137223844646160000000000000E-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.000305182273809400E-2 " " Order of pole (three term test) = -24.995350084566628 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.5600000000000012 " " y[1] (analytic) = 1.999941721928232 " " y[1] (numeric) = 1.9999417219282332 " " absolute error = 1.1102230246251565000000000000000E-15 " " relative error = 5.551276881982049000000000000000E-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.03932382704381500E-2 " " Order of pole (three term test) = -25.025797171253583 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.5700000000000012 " " y[1] (analytic) = 1.999999682931885 " " y[1] (numeric) = 1.999999682931886 " " absolute error = 1.1102230246251565000000000000000E-15 " " relative error = 5.551116003166726000000000000000E-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.6683191582995980000E-4 " " Order of pole (three term test) = -25.03697587828805 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 1.5800000000000012 " " y[1] (analytic) = 1.9999576473956495 " " y[1] (numeric) = 1.9999576473956506 " " absolute error = 1.1102230246251565000000000000000E-15 " " relative error = 5.55123267770641000000000000000E-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.5900000000000012 " " y[1] (analytic) = 1.9998156321331801 " " y[1] (numeric) = 1.9998156321331813 " " absolute error = 1.1102230246251565000000000000000E-15 " " relative error = 5.5516268939296900000000000000E-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.6000000000000012 " " y[1] (analytic) = 1.9995736939486883 " " y[1] (numeric) = 1.9995736939486892 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.44183888989948370000000000000E-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.6100000000000012 " " y[1] (analytic) = 1.9992319296142216 " " y[1] (numeric) = 1.9992319296142227 " " absolute error = 1.1102230246251565000000000000000E-15 " " relative error = 5.55324776570264600000000000000E-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.6200000000000012 " " y[1] (analytic) = 1.9987904758309576 " " y[1] (numeric) = 1.9987904758309585 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.44357940684544600000000000000E-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.6300000000000012 " " y[1] (analytic) = 1.9982495091745232 " " y[1] (numeric) = 1.998249509174524 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.44478237388398870000000000000E-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.6400000000000012 " " y[1] (analytic) = 1.9976092460243682 " " y[1] (numeric) = 1.997609246024369 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.446206992021955500000000000000E-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.6500000000000012 " " y[1] (analytic) = 1.996869942477216 " " y[1] (numeric) = 1.996869942477217 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.44785311655448100000000000000E-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.6600000000000013 " " y[1] (analytic) = 1.9960318942446285 " " y[1] (numeric) = 1.9960318942446293 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.44972057942112400000000000000E-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.6700000000000013 " " y[1] (analytic) = 1.9950954365347247 " " y[1] (numeric) = 1.9950954365347253 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.338856891638727000000000000000E-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.6800000000000013 " " y[1] (analytic) = 1.9940609439181023 " " y[1] (numeric) = 1.9940609439181032 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.45411872896400000000000000E-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.6900000000000013 " " y[1] (analytic) = 1.9929288301780155 " " y[1] (numeric) = 1.9929288301780161 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.342486719486076300000000000000E-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.7000000000000013 " " y[1] (analytic) = 1.9916995481448652 " " y[1] (numeric) = 1.9916995481448658 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.34454971080127500000000000000E-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.7100000000000013 " " y[1] (analytic) = 1.9903735895150745 " " y[1] (numeric) = 1.9903735895150754 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.46237040311872800000000000000E-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.7200000000000013 " " y[1] (analytic) = 1.9889514846544165 " " y[1] (numeric) = 1.9889514846544172 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.34917075612246930000000000000E-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.7300000000000013 " " y[1] (analytic) = 1.9874338023858737 " " y[1] (numeric) = 1.9874338023858746 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.46897108539607800000000000000E-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.7400000000000013 " " y[1] (analytic) = 1.9858211497621188 " " y[1] (numeric) = 1.9858211497621194 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.354450197364903000000000000000E-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.7500000000000013 " " y[1] (analytic) = 1.984114171822699 " " y[1] (numeric) = 1.9841141718226996 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.3573361061332100000000000000E-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.7600000000000013 " " y[1] (analytic) = 1.9823135513360306 " " y[1] (numeric) = 1.9823135513360313 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.36038571862728840000000000000E-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.7700000000000014 " " y[1] (analytic) = 1.9804200085263006 " " y[1] (numeric) = 1.9804200085263013 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.363598690718072600000000000000E-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.7800000000000014 " " y[1] (analytic) = 1.978434300785386 " " y[1] (numeric) = 1.9784343007853866 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.366974655214260000000000000000E-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.7900000000000014 " " y[1] (analytic) = 1.976357222369907 " " y[1] (numeric) = 1.976357222369908 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.49401762822555340000000000000E-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.8000000000000014 " " y[1] (analytic) = 1.9741896040835365 " " y[1] (numeric) = 1.9741896040835374 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.498951964203244400000000000000E-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.8100000000000014 " " y[1] (analytic) = 1.9719323129446873 " " y[1] (numeric) = 1.9719323129446882 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.50410196064898400000000000000E-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.8200000000000014 " " y[1] (analytic) = 1.9695862518397182 " " y[1] (numeric) = 1.9695862518397191 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.5094669952661903000000000000E-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.8300000000000014 " " y[1] (analytic) = 1.967152359161791 " " y[1] (numeric) = 1.9671523591617919 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.51504640992109300000000000000E-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.8400000000000014 " " y[1] (analytic) = 1.964631608435525 " " y[1] (numeric) = 1.964631608435526 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.52083950948645900000000000000E-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.8500000000000014 " " y[1] (analytic) = 1.9620250079276016 " " y[1] (numeric) = 1.9620250079276025 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.5268455606397600000000000000E-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.8600000000000014 " " y[1] (analytic) = 1.9593336002434696 " " y[1] (numeric) = 1.9593336002434705 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.53306379061615140000000000000E-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.8700000000000014 " " y[1] (analytic) = 1.9565584619103176 " " y[1] (numeric) = 1.9565584619103185 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.53949338591670700000000000000E-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.8800000000000014 " " y[1] (analytic) = 1.9537007029464777 " " y[1] (numeric) = 1.9537007029464786 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.546133490972374400000000000000E-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.8900000000000015 " " y[1] (analytic) = 1.9507614664174322 " " y[1] (numeric) = 1.950761466417433 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.55298320676418900000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 7.420712181996971 " " "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] = 1.9000000000000015 " " y[1] (analytic) = 1.9477419279786037 " " y[1] (numeric) = 1.9477419279786046 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.56004158940034900000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 7.735560905031306 " " "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] = 1.9100000000000015 " " y[1] (analytic) = 1.9446432954051076 " " y[1] (numeric) = 1.9446432954051085 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.56730764865080350000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 8.060306184361234 " " "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] = 1.9200000000000015 " " y[1] (analytic) = 1.9414668081086588 " " y[1] (numeric) = 1.9414668081086597 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.57478034644008270000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 8.395694642919574 " " "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] = 1.9300000000000015 " " y[1] (analytic) = 1.9382137366418233 " " y[1] (numeric) = 1.9382137366418242 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.582458595299173700000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 8.742540287554258 " " "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] = 1.9400000000000015 " " y[1] (analytic) = 1.9348853821898142 " " y[1] (numeric) = 1.9348853821898149 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.44275594258298840000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 9.101732710979132 " " "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] = 1.9500000000000015 " " y[1] (analytic) = 1.9314830760500346 " " y[1] (numeric) = 1.9314830760500352 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.448820354861022500000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 9.474246499358987 " " "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] = 1.9600000000000015 " " y[1] (analytic) = 1.9280081790995771 " " y[1] (numeric) = 1.9280081790995778 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.455036249307787400000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 9.633762813175336 " " "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] = 1.9700000000000015 " " y[1] (analytic) = 1.9244620812508904 " " y[1] (numeric) = 1.9244620812508912 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.61520353325337500000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 9.255986177537308 " " "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] = 1.9800000000000015 " " y[1] (analytic) = 1.9208462008958336 " " y[1] (numeric) = 1.9208462008958342 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.467918537488457500000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 8.89265294705763 " " "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] = 1.9900000000000015 " " y[1] (analytic) = 1.9171619843383372 " " y[1] (numeric) = 1.917161984338338 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.63277713075798800000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 8.54267565100806 " " "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] = 2.0000000000000013 " " y[1] (analytic) = 1.9134109052159025 " " y[1] (numeric) = 1.9134109052159032 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.48139447182637340000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 8.205065967280815 " " "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] = 2.010000000000001 " " y[1] (analytic) = 1.9095944639101643 " " y[1] (numeric) = 1.909594463910165 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.488352251561784000000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 7.878923352319311 " " "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] = 2.020000000000001 " " y[1] (analytic) = 1.90571418694676 " " y[1] (numeric) = 1.9057141869467604 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.3303033208854900000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 7.563425185164869 " " "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] = 2.0300000000000007 " " y[1] (analytic) = 1.9017716263847384 " " y[1] (numeric) = 1.9017716263847388 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.335134270008406600000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 7.257818194538592 " " "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] = 2.0400000000000005 " " y[1] (analytic) = 1.8977683591957577 " " y[1] (numeric) = 1.897768359195758 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.17003007163176700000000000000E-14 "%" Correct digits = 17 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 6.961410977258350 " " "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] = 2.0500000000000003 " " y[1] (analytic) = 1.893705986633317 " " y[1] (numeric) = 1.8937059866333172 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.172540016730835600000000000000E-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] = 2.06 " " y[1] (analytic) = 1.8895861335922775 " " y[1] (numeric) = 1.8895861335922775 " " 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] = 2.07 " " y[1] (analytic) = 1.8854104479589247 " " y[1] (numeric) = 1.8854104479589244 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.17769902657221700000000000000E-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] = 2.0799999999999996 " " y[1] (analytic) = 1.8811805999518367 " " y[1] (numeric) = 1.8811805999518365 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.180347091240023700000000000000E-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] = 2.0899999999999994 " " y[1] (analytic) = 1.8768982814538195 " " y[1] (numeric) = 1.876898281453819 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.36608032645262620000000000000E-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] = 2.099999999999999 " " y[1] (analytic) = 1.8725652053351753 " " y[1] (numeric) = 1.8725652053351747 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.55733307912159400000000000000E-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] = 2.109999999999999 " " y[1] (analytic) = 1.8681831047685777 " " y[1] (numeric) = 1.8681831047685773 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.377118220995122500000000000000E-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] = 2.1199999999999988 " " y[1] (analytic) = 1.8637537325358267 " " y[1] (numeric) = 1.8637537325358262 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.382767648415834700000000000000E-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] = 2.1299999999999986 " " y[1] (analytic) = 1.8592788603267576 " " y[1] (numeric) = 1.859278860326757 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.5827536632026500000000000000E-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] = 2.1399999999999983 " " y[1] (analytic) = 1.8547602780305896 " " y[1] (numeric) = 1.854760278030589 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.59148199724443200000000000000E-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] = 2.149999999999998 " " y[1] (analytic) = 1.8501997930199947 " " y[1] (numeric) = 1.8501997930199938 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.80044600075537300000000000000E-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] = 2.159999999999998 " " y[1] (analytic) = 1.8455992294281711 " " y[1] (numeric) = 1.8455992294281702 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.81241217236156300000000000000E-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] = 2.1699999999999977 " " y[1] (analytic) = 1.8409604274192157 " " y[1] (numeric) = 1.8409604274192146 " " absolute error = 1.1102230246251565000000000000000E-15 " " relative error = 6.03067294706352300000000000000E-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] = 2.1799999999999975 " " y[1] (analytic) = 1.8362852424520821 " " y[1] (numeric) = 1.8362852424520808 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 7.25523245926185900000000000000E-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] = 2.1899999999999973 " " y[1] (analytic) = 1.831575544538422 " " y[1] (numeric) = 1.8315755445384208 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 7.27388850284051200000000000000E-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] = 2.199999999999997 " " y[1] (analytic) = 1.8268332174946063 " " y[1] (numeric) = 1.826833217494605 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 7.29277099185504200000000000000E-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] = 2.209999999999997 " " y[1] (analytic) = 1.8220601581882219 " " y[1] (numeric) = 1.8220601581882203 " " absolute error = 1.5543122344752192000000000000000E-15 " " relative error = 8.53052094624998800000000000000E-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] = 2.2199999999999966 " " y[1] (analytic) = 1.8172582757793514 " " y[1] (numeric) = 1.8172582757793498 " " absolute error = 1.5543122344752192000000000000000E-15 " " relative error = 8.55306180299899800000000000000E-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] = 2.2299999999999964 " " y[1] (analytic) = 1.8124294909569343 " " y[1] (numeric) = 1.8124294909569327 " " absolute error = 1.5543122344752192000000000000000E-15 " " relative error = 8.57584939017167900000000000000E-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] = 2.239999999999996 " " y[1] (analytic) = 1.8075757351705166 " " y[1] (numeric) = 1.8075757351705148 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 9.82728858789797200000000000000E-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] = 2.249999999999996 " " y[1] (analytic) = 1.8026989498576969 " " y[1] (numeric) = 1.802698949857695 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 9.85387404558300900000000000000E-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] = 2.259999999999996 " " y[1] (analytic) = 1.7978010856675775 " " y[1] (numeric) = 1.7978010856675755 " " absolute error = 1.9984014443252818000000000000000E-15 " " relative error = 1.1115809531193020000000000000E-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] = 2.2699999999999956 " " y[1] (analytic) = 1.7928841016805301 " " y[1] (numeric) = 1.7928841016805281 " " absolute error = 1.9984014443252818000000000000000E-15 " " relative error = 1.11462946347291130000000000000E-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] = 2.2799999999999954 " " y[1] (analytic) = 1.787949964624591 " " y[1] (numeric) = 1.7879499646245889 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.24189495969286340000000000000E-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] = 2.289999999999995 " " y[1] (analytic) = 1.783000648088795 " " y[1] (numeric) = 1.7830006480887928 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.24534225583732550000000000000E-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] = 2.299999999999995 " " y[1] (analytic) = 1.7780381317337661 " " y[1] (numeric) = 1.778038131733764 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.24881801442872030000000000000E-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] = 2.3099999999999947 " " y[1] (analytic) = 1.7730644004998806 " " y[1] (numeric) = 1.7730644004998781 " " absolute error = 2.4424906541753444000000000000000E-15 " " relative error = 1.3775532651192660000000000000E-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] = 2.3199999999999945 " " y[1] (analytic) = 1.7680814438133163 " " y[1] (numeric) = 1.7680814438133137 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.50702065700866640000000000000E-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] = 2.3299999999999943 " " y[1] (analytic) = 1.7630912547903095 " " y[1] (numeric) = 1.7630912547903066 " " absolute error = 2.886579864025407000000000000000E-15 " " relative error = 1.63722657927239140000000000000E-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] = 2.339999999999994 " " y[1] (analytic) = 1.758095829439934 " " y[1] (numeric) = 1.7580958294399311 " " absolute error = 2.886579864025407000000000000000E-15 " " relative error = 1.6418785686699270000000000000E-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] = 2.349999999999994 " " y[1] (analytic) = 1.7530971658657257 " " y[1] (numeric) = 1.7530971658657226 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.77321858107922800000000000000E-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] = 2.3599999999999937 " " y[1] (analytic) = 1.748097263466466 " " y[1] (numeric) = 1.7480972634664629 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.77829033539361280000000000000E-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.6694567386754035000E-3 " " Order of pole (three term test) = -0.8942576517450322 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.3699999999999934 " " y[1] (analytic) = 1.7430981221364505 " " y[1] (numeric) = 1.743098122136447 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 2.03816046479705470000000000000E-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.330567699005326700E-2 " " Order of pole (three term test) = -0.91128448394563 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.3799999999999932 " " y[1] (analytic) = 1.7381017414655564 " " y[1] (numeric) = 1.7381017414655529 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 2.04401940004091800000000000000E-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.292056722797496400E-2 " " Order of pole (three term test) = -0.9476210015837051 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.389999999999993 " " y[1] (analytic) = 1.7331101199394348 " " y[1] (numeric) = 1.7331101199394312 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 2.04990648772200020000000000000E-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.249871427854547600E-2 " " Order of pole (three term test) = -1.0032088352872806 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.399999999999993 " " y[1] (analytic) = 1.728125254140142 " " y[1] (numeric) = 1.7281252541401384 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 2.05581954796917400000000000000E-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.20247642307733500E-2 " " Order of pole (three term test) = -1.0779586926186409 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.4099999999999926 " " y[1] (analytic) = 1.7231491379475337 " " y[1] (numeric) = 1.72314913794753 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 2.06175635095183140000000000000E-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.148344719766060000E-2 " " Order of pole (three term test) = -1.1717505032559574 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.4199999999999924 " " y[1] (analytic) = 1.7181837617417397 " " y[1] (numeric) = 1.718183761741736 " " absolute error = 3.774758283725532000000000000000E-15 " " relative error = 2.19694678053470980000000000000E-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.085960193850053000E-2 " " Order of pole (three term test) = -1.284433614199924 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.429999999999992 " " y[1] (analytic) = 1.7132311116070382 " " y[1] (numeric) = 1.7132311116070342 " " absolute error = 3.9968028886505635000000000000000E-15 " " relative error = 2.3329035187211250000000000000E-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.0138200301759300E-2 " " Order of pole (three term test) = -1.415827034673105 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.439999999999992 " " y[1] (analytic) = 1.7082931685374485 " " y[1] (numeric) = 1.7082931685374445 " " absolute error = 3.9968028886505635000000000000000E-15 " " relative error = 2.33964694249314240000000000000E-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.93043714482272300E-2 " " Order of pole (three term test) = -1.5657197302951849 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.4499999999999917 " " y[1] (analytic) = 1.7033719076443603 " " y[1] (numeric) = 1.703371907644356 " " absolute error = 4.218847493575595000000000000000E-15 " " relative error = 2.47676239970985260000000000000E-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.83434258145238600E-2 " " Order of pole (three term test) = -1.7338709660337333 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.4599999999999915 " " y[1] (analytic) = 1.6984692973665145 " " y[1] (numeric) = 1.6984692973665103 " " absolute error = 4.218847493575595000000000000000E-15 " " relative error = 2.48391154324481440000000000000E-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.72408787775100800E-2 " " Order of pole (three term test) = -1.9200106973475168 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.4699999999999913 " " y[1] (analytic) = 1.6935872986826555 " " y[1] (numeric) = 1.693587298682651 " " absolute error = 4.440892098500626000000000000000E-15 " " relative error = 2.6221808004553070000000000000E-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.10598247398069037 " " Order of pole (three term test) = -2.1238400088577967 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.479999999999991 " " y[1] (analytic) = 1.6887278643271637 " " y[1] (numeric) = 1.6887278643271593 " " absolute error = 4.440892098500626000000000000000E-15 " " relative error = 2.62972631192415500000000000000E-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.11455420628431116 " " Order of pole (three term test) = -2.3450315998032716 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.489999999999991 " " y[1] (analytic) = 1.6838929380089906 " " y[1] (numeric) = 1.6838929380089858 " " absolute error = 4.884981308350689000000000000000E-15 " " relative error = 2.90100468865117760000000000000E-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.1229423443015091 " " Order of pole (three term test) = -2.583230315455097 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.4999999999999907 " " y[1] (analytic) = 1.6790844536341978 " " y[1] (numeric) = 1.6790844536341931 " " absolute error = 4.6629367034256575000000000000000E-15 " " relative error = 2.7770709765868130000000000000E-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.13113345248362832 " " Order of pole (three term test) = -2.8380537235918912 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.5099999999999905 " " y[1] (analytic) = 1.6743043345324236 " " y[1] (numeric) = 1.6743043345324187 " " absolute error = 4.884981308350689000000000000000E-15 " " relative error = 2.91761850435327150000000000000E-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.1391144127186146 " " Order of pole (three term test) = -3.109092735059047 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.5199999999999902 " " y[1] (analytic) = 1.669554492687574 " " y[1] (numeric) = 1.6695544926875692 " " absolute error = 4.884981308350689000000000000000E-15 " " relative error = 2.92591905789613640000000000000E-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.14687244540726854 " " Order of pole (three term test) = -3.39591226736342 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.52999999999999 " " y[1] (analytic) = 1.6648368279730572 " " y[1] (numeric) = 1.664836827973052 " " absolute error = 5.10702591327572000000000000000E-15 " " relative error = 3.06758345770950800000000000000E-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.1543951299830604 " " Order of pole (three term test) = -3.6980519501829896 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.53999999999999 " " y[1] (analytic) = 1.6601532273918573 " " y[1] (numeric) = 1.660153227391852 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 3.20998714472450000000000000E-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.16167042484220306 " " Order of pole (three term test) = -4.0150268716020605 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.5499999999999896 " " y[1] (analytic) = 1.6555055643217598 " " y[1] (numeric) = 1.6555055643217542 " " absolute error = 5.551115123125783000000000000000E-15 " " relative error = 3.35312380867774700000000000000E-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.1686866866517178 " " Order of pole (three term test) = -4.346328363815667 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.5599999999999894 " " y[1] (analytic) = 1.6508956977660243 " " y[1] (numeric) = 1.6508956977660187 " " absolute error = 5.551115123125783000000000000000E-15 " " relative error = 3.36248687947851340000000000000E-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.1754326890043222 " " Order of pole (three term test) = -4.691424826982283 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.569999999999989 " " y[1] (analytic) = 1.6463254716098095 " " y[1] (numeric) = 1.6463254716098037 " " absolute error = 5.773159728050814000000000000000E-15 " " relative error = 3.50669404537956000000000000000E-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.18189764039012335 " " Order of pole (three term test) = -5.0497625898421745 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.579999999999989 " " y[1] (analytic) = 1.6417967138826421 " " y[1] (numeric) = 1.6417967138826361 " " absolute error = 5.995204332975845000000000000000E-15 " " relative error = 3.6516118483377540000000000000E-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.18807120145628808 " " Order of pole (three term test) = -5.420766805659189 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.5899999999999888 " " y[1] (analytic) = 1.6373112360272302 " " y[1] (numeric) = 1.6373112360272244 " " absolute error = 5.773159728050814000000000000000E-15 " " relative error = 3.5260001892241340000000000000E-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.19394350152711629 " " Order of pole (three term test) = -5.803842381987523 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.5999999999999885 " " y[1] (analytic) = 1.6328708321749108 " " y[1] (numeric) = 1.6328708321749048 " " absolute error = 5.995204332975845000000000000000E-15 " " relative error = 3.67157292226875150000000000000E-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.19950515435821964 " " Order of pole (three term test) = -6.198374942710876 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.6099999999999883 " " y[1] (analytic) = 1.62847727842802 " " y[1] (numeric) = 1.628477278428014 " " absolute error = 5.995204332975845000000000000000E-15 " " relative error = 3.68147865026588250000000000000E-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.20474727309984683 " " Order of pole (three term test) = -6.603731820750939 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.619999999999988 " " y[1] (analytic) = 1.6241323321494767 " " y[1] (numeric) = 1.6241323321494705 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 3.82804332801662000000000000000E-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.2096614844457547 " " Order of pole (three term test) = -7.01926307979382 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.629999999999988 " " y[1] (analytic) = 1.6198377312598602 " " y[1] (numeric) = 1.619837731259854 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 3.83819244231660860000000000000E-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.21423994194543364 " " Order of pole (three term test) = -7.444302563338650 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.6399999999999877 " " y[1] (analytic) = 1.615595193542266 " " y[1] (numeric) = 1.6155951935422599 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 3.8482714994151940000000000000E-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.21847533845892747 " " Order of pole (three term test) = -7.8781689693305 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.6499999999999875 " " y[1] (analytic) = 1.6114064159552148 " " y[1] (numeric) = 1.6114064159552086 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 3.8582749059090693000000000000E-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.22236091773495323 " " Order of pole (three term test) = -8.320166948601479 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.6599999999999873 " " y[1] (analytic) = 1.6072730739538919 " " y[1] (numeric) = 1.6072730739538854 " " absolute error = 6.439293542825908000000000000000E-15 " " relative error = 4.0063469283320013000000000000E-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.2258904850945184 " " Order of pole (three term test) = -8.769588225308171 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.669999999999987 " " y[1] (analytic) = 1.603196820819987 " " y[1] (numeric) = 1.6031968208199803 " " absolute error = 6.661338147750939000000000000000E-15 " " relative error = 4.1550345292874680000000000000E-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.22905841720374884 " " Order of pole (three term test) = -9.225712737521949 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.679999999999987 " " y[1] (analytic) = 1.5991792870004045 " " y[1] (numeric) = 1.5991792870003976 " " absolute error = 6.8833827526759700000000000000000E-15 " " relative error = 4.30432210361303250000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 7.186195464248366 " " "Order of pole (ratio test) Not computed" Radius of convergence (three term test) for eq 1 = 0.23185967092117357 " " Order of pole (three term test) = -9.687809796099163 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.6899999999999866 " " y[1] (analytic) = 1.5952220794551055 " " y[1] (numeric) = 1.5952220794550986 " " absolute error = 6.8833827526759700000000000000000E-15 " " relative error = 4.31499967391824830000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 7.48954396841549 " " "Order of pole (ratio test) Not computed" Radius of convergence (three term test) for eq 1 = 0.23428979120627386 " " Order of pole (three term test) = -10.155139259933563 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.6999999999999864 " " y[1] (analytic) = 1.5913267810143465 " " y[1] (numeric) = 1.5913267810143397 " " absolute error = 6.8833827526759700000000000000000E-15 " " relative error = 4.32556206229895200000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 7.802613109880836 " " "Order of pole (ratio test) Not computed" Radius of convergence (three term test) for eq 1 = 0.23634491807766378 " " Order of pole (three term test) = -10.626952725670098 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.709999999999986 " " y[1] (analytic) = 1.5874949497455673 " " y[1] (numeric) = 1.5874949497455602 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 4.47587399175021660000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 8.126140736989559 " " "Order of pole (ratio test) Not computed" Radius of convergence (three term test) for eq 1 = 0.23802179261085746 " " Order of pole (three term test) = -11.102494729941272 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.719999999999986 " " y[1] (analytic) = 1.5837281183301846 " " y[1] (numeric) = 1.5837281183301775 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 4.4865196717556940000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 8.460932167691675 " " "Order of pole (ratio test) Not computed" Radius of convergence (three term test) for eq 1 = 0.2393177619671669 " " Order of pole (three term test) = -11.58100396217098 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.7299999999999858 " " y[1] (analytic) = 1.580027793450541 " " y[1] (numeric) = 1.5800277934505338 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 4.49702681627126730000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 8.807868485624823 " " "Order of pole (ratio test) Not computed" Radius of convergence (three term test) for eq 1 = 0.2402307834468665 " " Order of pole (three term test) = -12.061714485978927 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.7399999999999856 " " y[1] (analytic) = 1.5763954551872512 " " y[1] (numeric) = 1.5763954551872439 " " absolute error = 7.327471962526033000000000000000E-15 " " relative error = 4.6482447906167330000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 9.167916070161695 " " "Order of pole (ratio test) Not computed" Radius of convergence (three term test) for eq 1 = 0.2407594275613663 " " Order of pole (three term test) = -12.543856967209575 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.7499999999999853 " " y[1] (analytic) = 1.57283255642719 " " y[1] (numeric) = 1.5728325564271828 " " absolute error = 7.327471962526033000000000000000E-15 " " relative error = 4.6587743447852760000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 9.542137581326504 " " "Order of pole (ratio test) Not computed" Radius of convergence (three term test) for eq 1 = 0.24090288012073108 " " Order of pole (three term test) = -13.026659906604044 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.759999999999985 " " y[1] (analytic) = 1.569340522282357 " " y[1] (numeric) = 1.5693405222823498 " " absolute error = 7.327471962526033000000000000000E-15 " " relative error = 4.6691408642589477000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 9.565326717559257 " " "Order of pole (ratio test) Not computed" Radius of convergence (three term test) for eq 1 = 0.2406609433344822 " " Order of pole (three term test) = -13.50935087513111 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.769999999999985 " " y[1] (analytic) = 1.5659207495198504 " " y[1] (numeric) = 1.5659207495198428 " " absolute error = 7.549516567451064000000000000000E-15 " " relative error = 4.8211357884911676000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 9.189475923638177 " " "Order of pole (ratio test) Not computed" Radius of convergence (three term test) for eq 1 = 0.24003403592521427 " " Order of pole (three term test) = -13.99115774999415 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.7799999999999847 " " y[1] (analytic) = 1.5625746060031782 " " y[1] (numeric) = 1.5625746060031707 " " absolute error = 7.549516567451064000000000000000E-15 " " relative error = 4.8314599113840384000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 8.827193061740104 " " "Order of pole (ratio test) Not computed" Radius of convergence (three term test) for eq 1 = 0.23902319225613988 " " Order of pole (three term test) = -14.471309949335227 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.7899999999999845 " " y[1] (analytic) = 1.559303430145133 " " y[1] (numeric) = 1.5593034301451254 " " absolute error = 7.549516567451064000000000000000E-15 " " relative error = 4.8415955621596946000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 8.477481697079705 " " "Order of pole (ratio test) Not computed" Radius of convergence (three term test) for eq 1 = 0.23763006047525564 " " Order of pole (three term test) = -14.949039663664633 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.7999999999999843 " " y[1] (analytic) = 1.5561085303724425 " " y[1] (numeric) = 1.556108530372435 " " absolute error = 7.549516567451064000000000000000E-15 " " relative error = 4.8515360079956293000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 8.139432836897543 " " "Order of pole (ratio test) Not computed" Radius of convergence (three term test) for eq 1 = 0.23585689968038193 " " Order of pole (three term test) = -15.423583082054508 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.809999999999984 " " y[1] (analytic) = 1.552991184602418 " " y[1] (numeric) = 1.5529911846024103 " " absolute error = 7.771561172376096000000000000000E-15 " " relative error = 5.0042532433084590000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 7.8122152047830165 " " "Order of pole (ratio test) Not computed" Radius of convergence (three term test) for eq 1 = 0.23370657611088025 " " Order of pole (three term test) = -15.894181611149133 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.819999999999984 " " y[1] (analytic) = 1.5499526397318033 " " y[1] (numeric) = 1.5499526397317955 " " absolute error = 7.771561172376096000000000000000E-15 " " relative error = 5.014063638564370000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 7.495066768064427 " " "Order of pole (ratio test) Not computed" Radius of convergence (three term test) for eq 1 = 0.23118255837337917 " " Order of pole (three term test) = -16.36008308506044 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.8299999999999836 " " y[1] (analytic) = 1.5469941111380334 " " y[1] (numeric) = 1.5469941111380254 " " absolute error = 7.993605777301127000000000000000E-15 " " relative error = 5.1671856536161580000000000000E-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.22828891171035348 " " Order of pole (three term test) = -16.820542964236854 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.8399999999999834 " " y[1] (analytic) = 1.544116782193099 " " y[1] (numeric) = 1.544116782193091 " " absolute error = 7.993605777301127000000000000000E-15 " " relative error = 5.1768142600897450000000000000E-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.2250302913218883 " " Order of pole (three term test) = -17.274825521416552 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.849999999999983 " " y[1] (analytic) = 1.5413218037902148 " " y[1] (numeric) = 1.5413218037902066 " " absolute error = 8.215650382226158000000000000000E-15 " " relative error = 5.3302628704942190000000000000E-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.22141193475242624 " " Order of pole (three term test) = -17.722205012800554 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.859999999999983 " " y[1] (analytic) = 1.5386102938834754 " " y[1] (numeric) = 1.5386102938834672 " " absolute error = 8.215650382226158000000000000000E-15 " " relative error = 5.3396564515955070000000000000E-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.21743965335573606 " " Order of pole (three term test) = -18.161966832609682 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.869999999999983 " " y[1] (analytic) = 1.5359833370406908 " " y[1] (numeric) = 1.5359833370406824 " " absolute error = 8.43769498715119000000000000000E-15 " " relative error = 5.493350600669740000000000000E-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.21311982285274764 " " Order of pole (three term test) = -18.593408649219946 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.8799999999999826 " " y[1] (analytic) = 1.5334419840095723 " " y[1] (numeric) = 1.5334419840095639 " " absolute error = 8.43769498715119000000000000000E-15 " " relative error = 5.5024546576510840000000000000E-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.20845937299828657 " " Order of pole (three term test) = -19.015841521104008 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.8899999999999824 " " y[1] (analytic) = 1.5309872512974483 " " y[1] (numeric) = 1.5309872512974398 " " absolute error = 8.43769498715119000000000000000E-15 " " relative error = 5.5112771056719070000000000000E-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.203465776374087 " " Order of pole (three term test) = -19.428590990842665 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.899999999999982 " " y[1] (analytic) = 1.5286201207646744 " " y[1] (numeric) = 1.528620120764666 " " absolute error = 8.43769498715119000000000000000E-15 " " relative error = 5.5198115427986980000000000000E-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.19814703632677916 " " Order of pole (three term test) = -19.830998155507974 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.909999999999982 " " y[1] (analytic) = 1.5263415392319022 " " y[1] (numeric) = 1.5263415392318938 " " absolute error = 8.43769498715119000000000000000E-15 " " relative error = 5.5280517304123640000000000000E-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.19251167407083258 " " Order of pole (three term test) = -20.222420711761032 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.9199999999999817 " " y[1] (analytic) = 1.5241524181013641 " " y[1] (numeric) = 1.5241524181013557 " " absolute error = 8.43769498715119000000000000000E-15 " " relative error = 5.5359916022454110000000000000E-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.186568714977677 " " Order of pole (three term test) = -20.602233974049852 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.9299999999999815 " " y[1] (analytic) = 1.5220536329923247 " " y[1] (numeric) = 1.5220536329923162 " " absolute error = 8.43769498715119000000000000000E-15 " " relative error = 5.5436252732847950000000000000E-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.18032767407343792 " " Order of pole (three term test) = -20.969831864338303 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.9399999999999813 " " y[1] (analytic) = 1.520046023390844 " " y[1] (numeric) = 1.5200460233908353 " " absolute error = 8.659739592076221000000000000000E-15 " " relative error = 5.6970246024251950000000000000E-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.17379854076888615 " " Order of pole (three term test) = -21.32462787184426 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.949999999999981 " " y[1] (analytic) = 1.5181303923139946 " " y[1] (numeric) = 1.518130392313986 " " absolute error = 8.659739592076221000000000000000E-15 " " relative error = 5.7042133112668290000000000000E-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.16699176284633557 " " Order of pole (three term test) = -21.666055981314507 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.959999999999981 " " y[1] (analytic) = 1.5163075059886661 " " y[1] (numeric) = 1.5163075059886575 " " absolute error = 8.659739592076221000000000000000E-15 " " relative error = 5.71107084669470000000000000E-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.15991822972930544 " " Order of pole (three term test) = -21.993571568415515 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.9699999999999807 " " y[1] (analytic) = 1.5145780935450839 " " y[1] (numeric) = 1.5145780935450752 " " absolute error = 8.659739592076221000000000000000E-15 " " relative error = 5.7175920006916770000000000000E-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.15258925506181484 " " Order of pole (three term test) = -22.306652260871807 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.9799999999999804 " " y[1] (analytic) = 1.5129428467251667 " " y[1] (numeric) = 1.512942846725158 " " absolute error = 8.659739592076221000000000000000E-15 " " relative error = 5.7237717940374410000000000000E-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.14501655862517127 " " Order of pole (three term test) = -22.604798764039394 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.9899999999999802 " " y[1] (analytic) = 1.5114024196058395 " " y[1] (numeric) = 1.5114024196058309 " " absolute error = 8.659739592076221000000000000000E-15 " " relative error = 5.7296054841136250000000000000E-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.13721224762107806 " " Order of pole (three term test) = -22.887535649657707 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 2.99999999999998 " " y[1] (analytic) = 1.5099574283374113 " " y[1] (numeric) = 1.5099574283374027 " " absolute error = 8.659739592076221000000000000000E-15 " " relative error = 5.7350885724051930000000000000E-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.12918879735079475 " " Order of pole (three term test) = -23.15441210658223 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.00999999999998 " " y[1] (analytic) = 1.5086084508971231 " " y[1] (numeric) = 1.5086084508971145 " " absolute error = 8.659739592076221000000000000000E-15 " " relative error = 5.7402168116760440000000000000E-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.12095903132094889 " " Order of pole (three term test) = -23.40500265235947 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.0199999999999796 " " y[1] (analytic) = 1.507356026857965 " " y[1] (numeric) = 1.5073560268579564 " " absolute error = 8.659739592076221000000000000000E-15 " " relative error = 5.7449862127974960000000000000E-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.11253610080741736 " " Order of pole (three term test) = -23.63890780456736 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.0299999999999794 " " y[1] (analytic) = 1.5062006571728541 " " y[1] (numeric) = 1.5062006571728455 " " absolute error = 8.659739592076221000000000000000E-15 " " relative error = 5.7493930512091230000000000000E-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.10393346390946706 " " Order of pole (three term test) = -23.855754710906446 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.039999999999979 " " y[1] (analytic) = 1.5051428039742594 " " y[1] (numeric) = 1.5051428039742507 " " absolute error = 8.659739592076221000000000000000E-15 " " relative error = 5.7534338729923720000000000000E-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.51648641270652600E-2 " " Order of pole (three term test) = -24.055197737091316 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.049999999999979 " " y[1] (analytic) = 1.5041828903893557 " " y[1] (numeric) = 1.504182890389347 " " absolute error = 8.659739592076221000000000000000E-15 " " relative error = 5.7571055005383420000000000000E-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.62443084949439700E-2 " " Order of pole (three term test) = -24.236919011656312 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.0599999999999787 " " y[1] (analytic) = 1.5033213003707788 " " y[1] (numeric) = 1.50332130037077 " " absolute error = 8.881784197001252000000000000000E-15 " " relative error = 5.9081077310689680000000000000E-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.71860453076300E-2 " " Order of pole (three term test) = -24.400628926855898 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.0699999999999785 " " y[1] (analytic) = 1.5025583785430479 " " y[1] (numeric) = 1.502558378543039 " " absolute error = 8.881784197001252000000000000000E-15 " " relative error = 5.9111075641623010000000000000E-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.80045414702223700E-2 " " Order of pole (three term test) = -24.546066594906748 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.0799999999999783 " " y[1] (analytic) = 1.5018944300647221 " " y[1] (numeric) = 1.5018944300647132 " " absolute error = 8.881784197001252000000000000000E-15 " " relative error = 5.9137207111278140000000000000E-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.87144595102261700E-2 " " Order of pole (three term test) = -24.67300025888681 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.089999999999978 " " y[1] (analytic) = 1.5013297205063405 " " y[1] (numeric) = 1.5013297205063314 " " absolute error = 9.103828801926284000000000000000E-15 " " relative error = 6.0638437230536630000000000000E-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.93306342862263100E-2 " " Order of pole (three term test) = -24.781227657674926 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.099999999999978 " " y[1] (analytic) = 1.5008644757441965 " " y[1] (numeric) = 1.5008644757441876 " " absolute error = 8.881784197001252000000000000000E-15 " " relative error = 5.9177789470946480000000000000E-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.986804942960397000E-2 " " Order of pole (three term test) = -24.87057634438451 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.1099999999999777 " " y[1] (analytic) = 1.5004988818699925 " " y[1] (numeric) = 1.5004988818699834 " " absolute error = 9.103828801926284000000000000000E-15 " " relative error = 6.0672013234562780000000000000E-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.03418135558737400E-2 " " Order of pole (three term test) = -24.940903957814257 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.1199999999999775 " " y[1] (analytic) = 1.500233085116403 " " y[1] (numeric) = 1.5002330851163939 " " absolute error = 9.103828801926284000000000000000E-15 " " relative error = 6.0682762513665790000000000000E-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.076713628253798000E-2 " " Order of pole (three term test) = -24.99209844651004 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.1299999999999772 " " y[1] (analytic) = 1.500067191798586 " " y[1] (numeric) = 1.5000671917985768 " " absolute error = 9.103828801926284000000000000000E-15 " " relative error = 6.0689473456257380000000000000E-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.115930409062372600E-2 " " Order of pole (three term test) = -25.024078245102807 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.139999999999977 " " y[1] (analytic) = 1.5000012682716561 " " y[1] (numeric) = 1.5000012682716473 " " absolute error = 8.881784197001252000000000000000E-15 " " relative error = 5.9211844582205550000000000000E-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.5336560672837607000E-3 " " Order of pole (three term test) = -25.036792402659064 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.149999999999977 " " y[1] (analytic) = 1.500035340904146 " " y[1] (numeric) = 1.5000353409041371 " " absolute error = 8.881784197001252000000000000000E-15 " " relative error = 5.9210499611614210000000000000E-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) = 1.5001693960674565 " " y[1] (numeric) = 1.5001693960674476 " " absolute error = 8.881784197001252000000000000000E-15 " " relative error = 5.9205208560339640000000000000E-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) = 1.5004033801413097 " " y[1] (numeric) = 1.5004033801413008 " " absolute error = 8.881784197001252000000000000000E-15 " " relative error = 5.9195975659324060000000000000E-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) = 1.5007371995351957 " " y[1] (numeric) = 1.5007371995351868 " " absolute error = 8.881784197001252000000000000000E-15 " " relative error = 5.9182808287500930000000000000E-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) = 1.501170720725808 " " y[1] (numeric) = 1.5011707207257992 " " absolute error = 8.881784197001252000000000000000E-15 " " relative error = 5.91657169592740100000000000E-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) = 1.5017037703104505 " " y[1] (numeric) = 1.5017037703104417 " " absolute error = 8.881784197001252000000000000000E-15 " " relative error = 5.9144715306701940000000000000E-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) = 1.5023361350763964 " " y[1] (numeric) = 1.5023361350763877 " " absolute error = 8.659739592076221000000000000000E-15 " " relative error = 5.7641824555034470000000000000E-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) = 1.503067562086171 " " y[1] (numeric) = 1.5030675620861624 " " absolute error = 8.659739592076221000000000000000E-15 " " relative error = 5.761377472651330000000000000E-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) = 1.5038977587787226 " " y[1] (numeric) = 1.503897758778714 " " absolute error = 8.659739592076221000000000000000E-15 " " relative error = 5.7581970193961710000000000000E-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) = 1.5048263930864432 " " y[1] (numeric) = 1.5048263930864345 " " absolute error = 8.659739592076221000000000000000E-15 " " relative error = 5.7546436132840820000000000000E-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) = 1.5058530935679915 " " y[1] (numeric) = 1.5058530935679828 " " absolute error = 8.659739592076221000000000000000E-15 " " relative error = 5.750720059655820000000000000E-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) = 1.5069774495568637 " " y[1] (numeric) = 1.506977449556855 " " absolute error = 8.659739592076221000000000000000E-15 " " relative error = 5.7464294469852030000000000000E-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) = 1.5081990113256558 " " y[1] (numeric) = 1.5081990113256472 " " absolute error = 8.659739592076221000000000000000E-15 " " relative error = 5.7417751417729710000000000000E-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) = 1.5095172902659473 " " y[1] (numeric) = 1.5095172902659388 " " absolute error = 8.43769498715119000000000000000E-15 " " relative error = 5.5896643526783540000000000000E-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) = 1.5109317590837392 " " y[1] (numeric) = 1.5109317590837308 " " absolute error = 8.43769498715119000000000000000E-15 " " relative error = 5.5844315512091590000000000000E-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) = 1.5124418520103635 " " y[1] (numeric) = 1.512441852010355 " " absolute error = 8.43769498715119000000000000000E-15 " " relative error = 5.578855792661159000000000000E-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) = 1.514046965028784 " " y[1] (numeric) = 1.5140469650287756 " " absolute error = 8.43769498715119000000000000000E-15 " " relative error = 5.5729413829582090000000000000E-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) = 1.5157464561151943 " " y[1] (numeric) = 1.5157464561151859 " " absolute error = 8.43769498715119000000000000000E-15 " " relative error = 5.5666928681309350000000000000E-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) = 1.5175396454958197 " " y[1] (numeric) = 1.5175396454958112 " " absolute error = 8.43769498715119000000000000000E-15 " " relative error = 5.5601150271065080000000000000E-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) = 1.5194258159188165 " " y[1] (numeric) = 1.5194258159188083 " " absolute error = 8.215650382226158000000000000000E-15 " " relative error = 5.4070756835588240000000000000E-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) = 1.5214042129411647 " " y[1] (numeric) = 1.5214042129411562 " " absolute error = 8.43769498715119000000000000000E-15 " " relative error = 5.5459916012980640000000000000E-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) = 1.523474045230433 " " y[1] (numeric) = 1.5234740452304245 " " absolute error = 8.43769498715119000000000000000E-15 " " relative error = 5.5384566698508790000000000000E-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) = 1.5256344848813033 " " y[1] (numeric) = 1.5256344848812948 " " absolute error = 8.43769498715119000000000000000E-15 " " relative error = 5.5306137025394100000000000000E-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) = 1.5278846677467208 " " y[1] (numeric) = 1.5278846677467124 " " absolute error = 8.43769498715119000000000000000E-15 " " relative error = 5.5224685247970020000000000000E-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) = 1.5302236937835412 " " y[1] (numeric) = 1.530223693783533 " " absolute error = 8.215650382226158000000000000000E-15 " " relative error = 5.3689211685858980000000000000E-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) = 1.5326506274125367 " " y[1] (numeric) = 1.5326506274125284 " " absolute error = 8.215650382226158000000000000000E-15 " " relative error = 5.3604195472102130000000000000E-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) = 1.535164497892614 " " y[1] (numeric) = 1.535164497892606 " " absolute error = 7.993605777301127000000000000000E-15 " " relative error = 5.2070027598177860000000000000E-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) = 1.5377642997090992 " " y[1] (numeric) = 1.5377642997090912 " " absolute error = 7.993605777301127000000000000000E-15 " " relative error = 5.1981996062812020000000000000E-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) = 1.5404489929759293 " " y[1] (numeric) = 1.5404489929759213 " " absolute error = 7.993605777301127000000000000000E-15 " " relative error = 5.1891401881854030000000000000E-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) = 1.5432175038515927 " " y[1] (numeric) = 1.5432175038515847 " " absolute error = 7.993605777301127000000000000000E-15 " " relative error = 5.1798309423982870000000000000E-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) = 1.5460687249686522 " " y[1] (numeric) = 1.5460687249686444 " " absolute error = 7.771561172376096000000000000000E-15 " " relative error = 5.0266595830231740000000000000E-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) = 1.549001515876677 " " y[1] (numeric) = 1.5490015158766692 " " absolute error = 7.771561172376096000000000000000E-15 " " relative error = 5.0171423931613670000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 7.3960445183934755 " " "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.46999999999997 " " y[1] (analytic) = 1.5520147034984069 " " y[1] (numeric) = 1.5520147034983993 " " absolute error = 7.549516567451064000000000000000E-15 " " relative error = 4.864333147381690000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 7.710135407732386 " " "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.47999999999997 " " y[1] (analytic) = 1.5551070825989686 " " y[1] (numeric) = 1.5551070825989612 " " absolute error = 7.327471962526033000000000000000E-15 " " relative error = 4.711876143139940300000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 8.034066074254044 " " "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.4899999999999696 " " y[1] (analytic) = 1.5582774162679534 " " y[1] (numeric) = 1.558277416267946 " " absolute error = 7.327471962526033000000000000000E-15 " " relative error = 4.7022897758957430000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 8.36857809578451 " " "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.4999999999999694 " " y[1] (analytic) = 1.5615244364141638 " " y[1] (numeric) = 1.5615244364141565 " " absolute error = 7.327471962526033000000000000000E-15 " " relative error = 4.6925118759925470000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 8.714479827242107 " " "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.509999999999969 " " y[1] (analytic) = 1.5648468442728345 " " y[1] (numeric) = 1.5648468442728274 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 4.54065353654645230000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 9.072654514635294 " " "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.519999999999969 " " y[1] (analytic) = 1.5682433109251204 " " y[1] (numeric) = 1.5682433109251133 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 4.53081948961698340000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 9.444069599341203 " " "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.5299999999999687 " " y[1] (analytic) = 1.5717124778296458 " " y[1] (numeric) = 1.571712477829639 " " absolute error = 6.8833827526759700000000000000000E-15 " " relative error = 4.37954323692914260000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 9.664501978827294 " " "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.5399999999999685 " " y[1] (analytic) = 1.5752529573659042 " " y[1] (numeric) = 1.5752529573658975 " " absolute error = 6.661338147750939000000000000000E-15 " " relative error = 4.2287418770442120000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 9.285525180954203 " " "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.5499999999999683 " " y[1] (analytic) = 1.578863333389287 " " y[1] (numeric) = 1.57886333338928 " " absolute error = 6.8833827526759700000000000000000E-15 " " relative error = 4.35970777654305860000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 8.921083027181153 " " "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.559999999999968 " " y[1] (analytic) = 1.5825421617975217 " " y[1] (numeric) = 1.5825421617975153 " " absolute error = 6.439293542825908000000000000000E-15 " " relative error = 4.06895544287545040000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 8.57007961124301 " " "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.569999999999968 " " y[1] (analytic) = 1.5862879711082964 " " y[1] (numeric) = 1.58628797110829 " " absolute error = 6.439293542825908000000000000000E-15 " " relative error = 4.05934714257900340000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 8.231519153969122 " " "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.5799999999999677 " " y[1] (analytic) = 1.59009926304783 " " y[1] (numeric) = 1.5900992630478235 " " absolute error = 6.439293542825908000000000000000E-15 " " relative error = 4.04961733677139330000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 7.904494501329558 " " "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.5899999999999674 " " y[1] (analytic) = 1.5939745131501626 " " y[1] (numeric) = 1.5939745131501564 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 3.90046947840700650000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 7.588177156954159 " " "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.5999999999999672 " " y[1] (analytic) = 1.5979121713669233 " " y[1] (numeric) = 1.597912171366917 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 3.89085773880949450000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 7.2818086145360725 " " "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.609999999999967 " " y[1] (analytic) = 1.6019106626873265 " " y[1] (numeric) = 1.6019106626873203 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 3.8811458608253290000000000000E-13 "%" Correct digits = 16 h = 1.00E-2 " " "NO INFO (given) for Equation 1" Radius of convergence (ratio test) for eq 1 = 6.984692795576638 " " "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.619999999999967 " " y[1] (analytic) = 1.6059683877681568 " " y[1] (numeric) = 1.6059683877681505 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 3.87133955142236640000000000000E-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) = 1.6100837235734837 " " y[1] (numeric) = 1.6100837235734775 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 3.8614444993593670000000000000E-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) = 1.6142550240238558 " " y[1] (numeric) = 1.6142550240238496 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 3.85146637016692160000000000000E-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) = 1.6184806206547093 " " y[1] (numeric) = 1.6184806206547033 " " absolute error = 5.995204332975845000000000000000E-15 " " relative error = 3.70421755841022050000000000000E-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) = 1.6227588232837327 " " y[1] (numeric) = 1.622758823283727 " " absolute error = 5.773159728050814000000000000000E-15 " " relative error = 3.5576202977399560000000000000E-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.6699999999999657 " " y[1] (analytic) = 1.6270879206869162 " " y[1] (numeric) = 1.6270879206869104 " " absolute error = 5.773159728050814000000000000000E-15 " " relative error = 3.54815474606530730000000000000E-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) = 1.6314661812830191 " " y[1] (numeric) = 1.6314661812830134 " " absolute error = 5.773159728050814000000000000000E-15 " " relative error = 3.5386327919532357000000000000E-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.6899999999999653 " " y[1] (analytic) = 1.635891853826179 " " y[1] (numeric) = 1.6358918538261733 " " absolute error = 5.773159728050814000000000000000E-15 " " relative error = 3.5290595246550070000000000000E-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.699999999999965 " " y[1] (analytic) = 1.6403631681063866 " " y[1] (numeric) = 1.640363168106381 " " absolute error = 5.551115123125783000000000000000E-15 " " relative error = 3.38407691117200300000000000000E-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.709999999999965 " " y[1] (analytic) = 1.644878335657547 " " y[1] (numeric) = 1.6448783356575414 " " absolute error = 5.551115123125783000000000000000E-15 " " relative error = 3.3747876683576730000000000000E-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.7199999999999647 " " y[1] (analytic) = 1.6494355504728406 " " y[1] (numeric) = 1.649435550472835 " " absolute error = 5.551115123125783000000000000000E-15 " " relative error = 3.3654634893339450000000000000E-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.7299999999999645 " " y[1] (analytic) = 1.6540329897271036 " " y[1] (numeric) = 1.6540329897270982 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 3.2218647096512787000000000000E-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.7399999999999642 " " y[1] (analytic) = 1.658668814505933 " " y[1] (numeric) = 1.6586688145059274 " " absolute error = 5.551115123125783000000000000000E-15 " " relative error = 3.34672906042385030000000000000E-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.749999999999964 " " y[1] (analytic) = 1.6633411705412267 " " y[1] (numeric) = 1.6633411705412213 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 3.20383491527883650000000000000E-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.759999999999964 " " y[1] (analytic) = 1.6680481889528684 " " y[1] (numeric) = 1.668048188952863 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 3.1947941033682730000000000000E-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.7699999999999636 " " y[1] (analytic) = 1.6727879869962528 " " y[1] (numeric) = 1.6727879869962476 " " absolute error = 5.10702591327572000000000000000E-15 " " relative error = 3.0530025041883330000000000000E-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.7799999999999634 " " y[1] (analytic) = 1.677558668815359 " " y[1] (numeric) = 1.6775586688153539 " " absolute error = 5.10702591327572000000000000000E-15 " " relative error = 3.04432030200299740000000000000E-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.789999999999963 " " y[1] (analytic) = 1.6823583262010673 " " y[1] (numeric) = 1.6823583262010624 " " absolute error = 4.884981308350689000000000000000E-15 " " relative error = 2.90365092398684350000000000000E-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.799999999999963 " " y[1] (analytic) = 1.6871850393544183 " " y[1] (numeric) = 1.6871850393544134 " " absolute error = 4.884981308350689000000000000000E-15 " " relative error = 2.8953441349977060000000000000E-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.8099999999999627 " " y[1] (analytic) = 1.6920368776545058 " " y[1] (numeric) = 1.6920368776545012 " " absolute error = 4.6629367034256575000000000000000E-15 " " relative error = 2.7558126923861140000000000000E-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.8199999999999625 " " y[1] (analytic) = 1.6969119004307003 " " y[1] (numeric) = 1.6969119004306958 " " absolute error = 4.440892098500626000000000000000E-15 " " relative error = 2.61704340536091700000000000000E-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.8299999999999623 " " y[1] (analytic) = 1.7018081577388906 " " y[1] (numeric) = 1.7018081577388862 " " absolute error = 4.440892098500626000000000000000E-15 " " relative error = 2.6095139327578630000000000000E-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.839999999999962 " " y[1] (analytic) = 1.7067236911414359 " " y[1] (numeric) = 1.7067236911414316 " " absolute error = 4.218847493575595000000000000000E-15 " " relative error = 2.47189836027534220000000000000E-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.849999999999962 " " y[1] (analytic) = 1.711656534490515 " " y[1] (numeric) = 1.7116565344905108 " " absolute error = 4.218847493575595000000000000000E-15 " " relative error = 2.46477456695560730000000000000E-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.8599999999999617 " " y[1] (analytic) = 1.7166047147145584 " " y[1] (numeric) = 1.7166047147145544 " " absolute error = 3.9968028886505635000000000000000E-15 " " relative error = 2.3283187179846251000000000000E-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.8699999999999615 " " y[1] (analytic) = 1.7215662526074516 " " y[1] (numeric) = 1.7215662526074478 " " absolute error = 3.774758283725532000000000000000E-15 " " relative error = 2.19263027374540760000000000000E-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.8799999999999613 " " y[1] (analytic) = 1.72653916362019 " " y[1] (numeric) = 1.7265391636201863 " " absolute error = 3.774758283725532000000000000000E-15 " " relative error = 2.18631489123632560000000000000E-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.889999999999961 " " y[1] (analytic) = 1.7315214586546737 " " y[1] (numeric) = 1.7315214586546699 " " absolute error = 3.774758283725532000000000000000E-15 " " relative error = 2.18002396958936670000000000000E-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.899999999999961 " " y[1] (analytic) = 1.736511144859318 " " y[1] (numeric) = 1.7365111448593145 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 2.0458916657792720000000000000E-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.9099999999999606 " " y[1] (analytic) = 1.7415062264261696 " " y[1] (numeric) = 1.7415062264261663 " " absolute error = 3.3306690738754696000000000000000E-15 " " relative error = 1.91252205897104320000000000000E-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.9199999999999604 " " y[1] (analytic) = 1.746504705389202 " " y[1] (numeric) = 1.7465047053891987 " " absolute error = 3.3306690738754696000000000000000E-15 " " relative error = 1.9070484400059160000000000000E-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.92999999999996 " " y[1] (analytic) = 1.7515045824234754 " " y[1] (numeric) = 1.751504582423472 " " absolute error = 3.3306690738754696000000000000000E-15 " " relative error = 1.90160454462926840000000000000E-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.901641978889145000E-3 " " Order of pole (three term test) = -0.8937328533157674 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.93999999999996 " " y[1] (analytic) = 1.7565038576448402 " " y[1] (numeric) = 1.756503857644837 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.76977947154556860000000000000E-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.253889703400690400E-2 " " Order of pole (three term test) = -0.9092204182683081 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.9499999999999598 " " y[1] (analytic) = 1.761500531409864 " " y[1] (numeric) = 1.761500531409861 " " absolute error = 2.886579864025407000000000000000E-15 " " relative error = 1.63870507703739120000000000000E-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.215605127526443200E-2 " " Order of pole (three term test) = -0.9440209843036244 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.9599999999999596 " " y[1] (analytic) = 1.7664926051156624 " " y[1] (numeric) = 1.7664926051156595 " " absolute error = 2.886579864025407000000000000000E-15 " " relative error = 1.63407412839772750000000000000E-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.17376878771059600E-2 " " Order of pole (three term test) = -0.998078649280507 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.9699999999999593 " " y[1] (analytic) = 1.7714780819993128 " " y[1] (numeric) = 1.7714780819993101 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.5041310904017210000000000000E-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.12684473003404160E-2 " " Order of pole (three term test) = -1.0713065785892026 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.979999999999959 " " y[1] (analytic) = 1.776454967936534 " " y[1] (numeric) = 1.7764549679365316 " " absolute error = 2.4424906541753444000000000000000E-15 " " relative error = 1.37492404719521450000000000000E-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.07330520625249400E-2 " " Order of pole (three term test) = -1.163587146337631 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.989999999999959 " " y[1] (analytic) = 1.781421272239309 " " y[1] (numeric) = 1.7814212722393066 " " absolute error = 2.4424906541753444000000000000000E-15 " " relative error = 1.3710909891095260000000000000E-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.01163313728096800E-2 " " Order of pole (three term test) = -1.2747721265854701 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 3.9999999999999587 " " y[1] (analytic) = 1.786375008452133 " " y[1] (numeric) = 1.7863750084521306 " " absolute error = 2.4424906541753444000000000000000E-15 " " relative error = 1.36728886298724340000000000000E-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.94032455905884100E-2 " " Order of pole (three term test) = -1.4046829343004985 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.009999999999959 " " y[1] (analytic) = 1.7913141951465699 " " y[1] (numeric) = 1.7913141951465674 " " absolute error = 2.4424906541753444000000000000000E-15 " " relative error = 1.36351884040950920000000000000E-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.85789104676163900E-2 " " Order of pole (three term test) = -1.5531109156271263 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.019999999999959 " " y[1] (analytic) = 1.7962368567137965 " " y[1] (numeric) = 1.7962368567137943 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.23616550954900480000000000000E-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.76286211336420600E-2 " " Order of pole (three term test) = -1.7198176869732849 " " "NO COMPLEX POLE (six term test) for Equation 1" " " "TOP MAIN SOLVE Loop" x[1] = 4.0299999999999585 " " y[1] (analytic) = 1.801141024154821 " " y[1] (numeric) = 1.8011410241548187 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.23279966391984750000000000000E-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.65378757860722700E-2 " " Order of pole (three term test) = -1.904535522339345 " " "NO COMPLEX POLE (six term test) for Equation 1" "Finished!" "Maximum Time Reached before Solution Completed!" "diff ( y , x , 1 ) = sin(x) * cos(x) ;" Iterations = 394 "Total Elapsed Time "= 0 Years 0 Days 0 Hours 3 Minutes 1 Seconds "Elapsed Time(since restart) "= 0 Years 0 Days 0 Hours 2 Minutes 56 Seconds "Expected Time Remaining "= 0 Years 0 Days 0 Hours 4 Minutes 33 Seconds "Optimized Time Remaining "= 0 Years 0 Days 0 Hours 4 Minutes 25 Seconds "Expected Total Time "= 0 Years 0 Days 0 Hours 7 Minutes 26 Seconds "Time to Timeout " Unknown Percent Done = 39.89898989898947 "%" (%o58) true (%o58) diffeq.max