Questions: Bisection Method for Root Finding

5 questions to test your understanding

Score: 0 / 5
Question 1 Multiple Choice

A numerical analyst wants to find a root of f(x) = x³ − 2 on the interval [1, 2] to within error ε = 10⁻⁶. Approximately how many bisection iterations are required?

AAbout 6 iterations — one per decimal place of accuracy
BAbout 20 iterations — since (b − a)/2ⁿ ≤ ε gives 1/2ⁿ ≤ 10⁻⁶, so n ≥ log₂(10⁶) ≈ 20
CAbout 3 iterations — bisection converges quickly once near the root
DIt cannot be determined without knowing the derivative of f near the root
Question 2 Multiple Choice

Newton's method finds a root in 5 iterations; bisection requires 50 iterations on the same problem. A student concludes bisection is the inferior method in all practical situations. What is the critical flaw in this reasoning?

AThere is no flaw — Newton's method is strictly superior in all cases and bisection is obsolete
BBisection is faster for polynomial equations specifically, so the comparison is unfair
CNewton's method requires computing the derivative f'(x) and can diverge or cycle if the initial guess is poorly chosen; bisection requires no derivative and guarantees convergence from any valid bracket — making it indispensable when derivatives are unavailable or the function is ill-behaved
DBisection converges faster than Newton's for functions with multiple roots
Question 3 True / False

After n bisection iterations starting from an interval [a, b], the interval containing the root is guaranteed to have width exactly (b − a)/2ⁿ, regardless of the function's behavior.

TTrue
FFalse
Question 4 True / False

Bisection can be started from any two points a and b as long as f(a) ≠ f(b), without needing to check for a sign change.

TTrue
FFalse
Question 5 Short Answer

Why is finding the initial bracket [a, b] the step that requires human judgment, and what mathematical condition must that bracket satisfy for bisection to be guaranteed to work?

Think about your answer, then reveal below.