52268712
Use Newton's method to approximate the zero of \(f(x) = x^3 + 2x - 5\).
Start with \(x_0 = 1\) and perform two iterations. Round \(x_1\) and \(x_2\) to four decimal places.
Hints
- Recall the general iteration rule for Newton's method.
- Determine which derivative is needed in the formula.
- Evaluate the function and its derivative at the current approximation before substituting.
- Keep full precision until the final rounding step.
Solution
1. Differentiate the function: \(f'(x) = 3x^2 + 2\).
2. For the first iteration, \(f(1) = 1^3 + 2 \cdot 1 - 5 = -2\) and \(f'(1) = 3 \cdot 1^2 + 2 = 5\). Therefore, \(x_1 = 1 - \frac{-2}{5} = 1.4\).
3. For the second iteration, \(f(1.4) = 1.4^3 + 2 \cdot 1.4 - 5 = 0.544\) and \(f'(1.4) = 3 \cdot 1.4^2 + 2 = 7.88\).
4. Thus, \(x_2 = 1.4 - \frac{0.544}{7.88} \approx 1.330964\).
5. Rounded to four decimal places, \(x_1 = 1.4000\) and \(x_2 \approx 1.3310\).
Answer
\(x_1 = 1.4000\)
\(x_2 \approx 1.3310\)
