Given that $s$ is a solution to the equation $x = \arccos(x)$, and assuming that we start with $x_0 = 0.5$ we want to provide an estimate for the number of steps that are necessary until $|x_n - s| < 10^{-15}$.
How do I solve this problem? I have never really used fixed point iterations to do this..
When you do fixed point iteration, you want the derivative of the right side to be less than $1$ in absolute value, which is not the case with your iteration. This is why your iteration fails. When you are close to the root, the error is multiplied by the first derivative at every step. If the first derivative is $d$ and the initial error is $e$, after $n$ steps the error will be about $ed^n$, so you want $ed^n \lt 10^{-15}$. Now you can solve for $n$.