Back to Questions
CSS Applied Mathematics
QUESTION #4162
Question 1
Using Newton-Raphson method for $f(x) = \cos(x) - x = 0$ starting with $x_0 = \frac{\pi}{4}$, what is $x_1$?
Correct Answer Explanation
Newton-Raphson: $x_{n+1} = x_n - \frac{f(x_n)}{f'(x_n)}$. Here $f'(x) = -\sin(x) - 1$. So $x_1 = x_0 - \frac{\cos(x_0) - x_0}{-\sin(x_0) - 1}$.
Sign in to join the conversation and share your thoughts.
Log In to Comment