When we want to solve $x = \cos\left(\,x\,\right)$, usually we use Matlab. Here is my matlab code from Zhihu, a Chinese academic discussion website like Quora (And I run it on my laptop):
x = 1; %The code is from Zhihu. 本代码来自知乎
delta = inf;
count = 0;
while abs(delta) > 1e-10
delta = (x - cos(x))/(1 + sin(x));
x = x - delta;%Newton's method, 牛顿迭代法
count = count + 1;
disp([num2str(count),':',num2str(x, 10)]);%Output the answer
end
And its output:
1:0.7503638678
2:0.7391128909
3:0.7390851334
4:0.7390851332
5:0.7390851332
It converges fastly.
However a paper, published by $2$ professors in North Carolina State University and was cited $30$ times, claims that they have got a complicated $\textbf{exact}$ analytical solution to Kepler's equation: $$ e\sin\left(\,E\,\right)= E - M $$
Suppose $x = \cos\left(\,x\,\right)$. Let $x = y - \pi/2$, then it is reduced to Kepler's equation $\sin\left(\,y\,\right) = y - \pi/2$ with $$ e = 1\,,\ E = y\,,\ M = {\pi \over 2} $$ According to the paper, $x = \cos\left(\,x\,\right)$ can be solved exactly ( That's incredible ). How do you look on this paper ? I fail to catch its steps while reading it.