Given iterative method: $x_{n+1}=0.7\sin x_n +5 = \phi(x_n)$ for finding solution for $x=0.7\sin x +5$, I want to estimate $|e_6|=|x_6-r|$ as good as possible, with $x_0=5$, where $r$ is exact solution. This method obviously converges, because $\phi$ is contraction mapping, so $r=\phi(r)$ is a fixed point. So, with mean value theorem:
$|e_{n+1}|=|x_{n+1}-r|=|\phi(x_n)-\phi(r)|\le \max_{c\in\mathbb{R}}|\phi'(c)|\cdot |x_n-r|$
and we have:
$|e_n|\le 0.7^n \cdot |e_0|$
But I don't know how can I estimate $|e_0|$ without a computer? I suppose there is some simple way to finish it and with clever observation $|e_0|\le 0.7$. Can anybody help?