If I have a recursive sequence like: $$ x_{n+1} = \frac{cos(x_n)}{2}$$ with$$ x_0=\frac{\pi}{4}$$ And I would like to show that is converges, I tried to show that is would be monotone and bounded, so looking at the first terms $$ x_1 =\frac{\sqrt2}{4}$$ which is smaller than x_0, so I could guess that my function is decreasing and since $$ \frac{-1}{2} <= \frac{cos(x_n)}{2} <=\frac{1}{2}$$ it is also bounded from below thus it must converge and consequently be cauchy.
Is this type of reasoning correct to determine the convergence of this recursive sequence?
Perhaps this proof is more intuitive: The equation $$x=cos(x)/2$$ has a solution $x^* \in \left]0,\frac{1}{2}\right[$ without loss of generality we can define the sequence $x_n$ in terms of $\delta x_n$ such that: $$ x_n=x^*+\delta x_n $$ so now the equation $$ x_{n+1}=\frac{\cos(x_n)}{2} $$ becomes after substitution: $$ \delta x_{n+1}+x^*=\frac{\cos(\delta x_n+x^*)}{2} $$ we also have the equality $$x^*=\frac{\cos(x^*)}{2}$$ subtracting the two equations leaves: $$ \delta x_{n+1}+x^*-x^*=\frac{\cos(\delta x_n+x^*)}{2}-\frac{\cos(x^*)}{2} $$ simplifying $$ \delta x_{n+1}=\frac{\cos(\delta x_n+x^*)-\cos(x^*)}{2}=-\frac{1}{2}\int_{x^*}^{\delta x_n+x^*}\sin(x)dx $$ so we have: $$ |\delta x_{n+1}|=\frac{1}{2}\left|\int_{x^*}^{\delta x_n+x^*}\sin(x)dx\right|\le\frac{1}{2}\left|\int_{x^*}^{\delta x_n+x^*}\left|\sin(x)\right|dx\right|\le\frac{1}{2}\left|\int_{x^*}^{\delta x_n+x^*}1dx\right|=\frac{1}{2}|\delta x_n| $$ finally: $$ \frac{|\delta x_{n+1}|}{|\delta x_n|}\le \frac{1}{2}\implies \lim_{n\to \infty}\delta x_n=0 $$ this proves that $x_n = x^* +\delta x_n\to x^* +0=x^*$.