Consider the equation $\cos x = c$, where $c$ is constant. Find the value of $c$ so that the approximate solution by Newton-Raphson method at the $k$th iteration is $x_k = (-1)^k$, where $k = 0, 1, 2, \cdots$.
Can anyone explain this problem? I can not understand what it mean or how to solve it.
The Newton-Raphson method solves $\cos x -c=0$ by iterating $x\mapsto x+\frac{\cos x -c}{\sin x}$. We require this to map $1$ to $-1$, so $-1=1+\frac{\cos 1 -c}{\sin 1}$. Rearranging gives $c=\cos 1+2\sin 1$.