Use Newton's method to find all solutions of the equation correct to six decimal places. (Enter your answers as a comma-separated list.)
$5\cos(x) = x + 1$
I got $1.130597$ as an answer but apparently I am suppose to have 3 different answers. Also how do I find the initial approximation? Thank you

For Newton use e.g. the start values $1$, $-2$ and $-4$ because the start values have to be near by the solution. (It's not difficult to create your list, you can easily create it yourself.)
Note without Newton, only a recursion:
It's $\cos 2x=2\cos^2 x-1$.
To avoid the cyclic property of cosine, the variable of cosine should be less than $\pi/2$ . For the first solution with start value $1$ you can use $5\cos x -x-1$ but for the second solution with start value $-2$ you should use e.g. $10\cos^2(\frac{x}{2})-x-6$ and for the third solution with the start value $-4$ it's senseful to use e.g. $40\cos^2(\frac{x}{4})-40\cos(\frac{x}{4})-x+4$ .