- #1
- 1,271
- 12
Homework Statement
I am having some trouble understanding the following solved problem:
Use two iterations of the Secant method to estimate where ##x^2 -x## has a local minimum. Start with ##x^{(0)} =1##, ##x^{(1)} =1/2.##
Answer:
Homework Equations
Secant iteration:
$$x_k = x_{k-1} - \frac{x_{k-1} - x_{k-2}}{f'_{k-1} - f'_{k-2}}$$
The Attempt at a Solution
So I understand that for the minimum we need to solve at the derivative of the function, which is
$$3x^2 -1$$
Using the given initial values ##x^{(0)} =1##, ##x^{(1)} =1/2,## the first iteration of the Secant method becomes
$$x^{(3)} = \frac{1}{2} - \frac{(1/2)- 1}{(3(1/2)^2 -1) - (3(1)^2 -1)} = 0.2778$$
So, how did they get ##0.556## for the first iteration?
Also, why did they use ##1/4## instead of ##1/2## as ##x_{k-1}##?
I can't really follow the given answer, so I am wondering if there is an error in the solution. Any help is greatly appreciated.