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?