Questions: Secant Method

5 questions to test your understanding

Score: 0 / 5
Question 1 Multiple Choice

Why does the secant method require two initial points rather than one, unlike Newton's method?

ABecause the secant method applies only to polynomials, which need two roots specified to initialize
BBecause it approximates the derivative using a finite difference slope between two known function values, requiring two previous points at every step
CBecause it checks convergence by comparing consecutive iterates, and convergence checking needs two points
DBecause two starting points allow the method to bracket the root, guaranteeing convergence
Question 2 Multiple Choice

A function f(x) has an expensive-to-compute but analytically available derivative. Which root-finding method is most appropriate, and why?

ASecant method — because it always uses fewer function evaluations regardless of derivative cost
BBisection — because its guaranteed convergence outweighs any speed advantage
CNewton's method — the cheap derivative makes quadratic convergence dominant, minimizing total steps to full precision
DSecant method — because avoiding the derivative is always safer than using it
Question 3 True / False

The secant method converges faster than the bisection method, though it does not guarantee convergence from arbitrary starting points.

TTrue
FFalse
Question 4 True / False

The secant method's convergence order is exactly 2, the same as Newton's method, because the finite difference approximation becomes exact near the root.

TTrue
FFalse
Question 5 Short Answer

Explain why the secant method's convergence order is the golden ratio φ ≈ 1.618 rather than a simpler value like 1.5 or 2.0.

Think about your answer, then reveal below.