This is my recursive sequence:
$a_1=\frac{1}{4};\space a_{n+1}=a_n^2+\frac{1}{4}$
for $n\ge 1$
In order to check if this converges I think I have to show that
1) The sequence is monotone increasing/decreasing
2) The sequences is bounded by some value
For 1) I am going to use the ratio test.
$\frac{a_{n+2}}{a_{n+1}}>1$ $\implies$ monotone increasing
$\frac{a_{n+2}}{a_{n+1}}<1$ $\implies$ monotone decreasing
$\frac{(a_{n+1})^2+\frac{1}{4}}{a_{n+1}}=a_{n+1}+\frac{1}{4}>0$ $\implies$monotone increasing
I am really not sure about this. How would I checkt/show it is bounded by some value?
$a_n$ is increasing because $$ \begin{align} a_{n+1}-a_n &=a_n^2-a_n+\tfrac14\\ &=(a_n-\tfrac12)^2\\ &\ge0 \end{align} $$ If $a_n\le\frac12$, then $$ \begin{align} a_{n+1} &=a_n^2+\tfrac14\\ &\le\frac12 \end{align} $$ This implies that $a_n$ converges to some value less than or equal to $\frac12$. Let this value be $a$, then take the limit of the recursive equation $$ \begin{align} a &=\lim_{n\to\infty}a_{n+1}\\ &=\lim_{n\to\infty}a_n^2+\tfrac14\\ &=a^2+\tfrac14 \end{align} $$ which implies that $0=a^2-a+\frac14=(a-\frac12)^2$; that is, $a=\frac12$.