2025-09-12¶
1. The error of values \(x_k\) in a bisection iteration is given by \(e_k \approx \left( b - a \right) \left(\frac{1}{2} \right)^k\) for the initial interval \(\left[ a, b \right]\). This method is
divergent
linearly convergent
\(q\)-linearly convergent
quadratically convergent
Answer
c2. The irrational number \(e\) can be approximated by applying Newton’s method to solve the nonlinear equation \(f \left( x \right) = ln \left( x \right) - 1 = 0\). What is the Newton iteration formula? (Note: \(\frac{d}{dx} ln \left( x \right) = \frac{1}{x}\))
\(x_{k + 1} = ln \left( x_k \right)\)
\(x_{k + 1} = x_k - ln \left( x_k \right)\)
\(x_{k + 1} = x_k \left( ln \left( x_k \right) - 1 \right)\)
\(x_{k + 1} = 2 x_k - x_k ln \left( x_k \right)\)
Answer
d3. Sketch the graph of a continuous function \(f \left( x \right)\) that has a root \(f \left( 1 \right) = 0\) that cannot be located using bisection. Explain why this root cannot be located with bisection.