06 December 2023 10:58:18 AM bisection_test(): C++ version Test bisection() Function = x^2 - 2*x - 15 a = 5, f(a) = 0 b = 5, f(b) = 0 Interval tolerance = 1.77636e-14 Number of bisections = 3 x = 5, f(x) = 0 Function = cos(x) - x a = 0.739085, f(a) = 2.55351e-15 b = 0.739085, f(b) = -4.44089e-16 Interval tolerance = 2.22045e-15 Number of bisections = 49 x = 0.739085, f(x) = 1.11022e-15 Function = Kepler function a = 3.79083, f(a) = 3.33067e-14 b = 3.79083, f(b) = -1.28786e-14 Interval tolerance = 2.22045e-14 Number of bisections = 49 x = 3.79083, f(x) = 1.02141e-14 bisection_test(): Normal end of execution. 06 December 2023 10:58:18 AM