Prove by induction that $u_n>\frac{1}{2}$ $∀n∈\mathbb{N}$ ; given $u_{n+1}=\frac{u_n^2+1}{u_n+2}$ and $u_1=1$.
(Where $\mathbb{N}=${$1,2,3,...$})
Let $P_n$ be the statement to be proved.
The base case is when $n=1$;
$P_1:$ $u_1=1>\frac{1}{2}$
$∴ P_1$ is true.
Now assume that for some n=k;
($P_k$) $u_k>\frac{1}{2}$ $:k∈ \mathbb {N}$
This is the inductive hypothesis.
Now we aim to prove that;
$u_{k+1}>\frac{1}{2}$
(Given the inductive hypothesis.)
$u_{k+1}=\frac{u_n^2+1}{u_n+2}$
$u_{k+1}-\frac{1}{2}=u_k-\frac{5}{2}+\frac{5}{u_k+2}$
Now;
$u_k>\frac{1}{2}$ $\implies \frac{5}{u_k+2}>2$ $∧$ $u_k-\frac{5}{2}>-2$
I set things up so that I could prove that $u_{k+1}-\frac{1}{2}>0$ but I don't know what to do after this last step. Did I make a mistake?
We have the recurrence:
$$ u_{n + 1} = \frac{u_n^2 + 1}{u_n + 2} $$
where $u_1 = 1$ and would like to prove $u_n > \frac{1}{2}$, $\forall n \in \mathbb{N}$. This is equivalent to proving $u_n - \frac{1}{2} > 0$, $\forall n \in \mathbb{N}$. We do so using induction. We first rewrite the recurrence:
$$ u_{n + 1} - \frac{1}{2} = \frac{u_{n}^2 + 1}{u_n + 2} - \frac{1}{2} = u_n - \frac{5u_n}{2u_n + 4} $$
Now we assume $u_n - \frac{1}{2} > 0$ and apply induction:
$$ u_{n + 1} - \frac{1}{2} = u_n - \frac{5u_n}{2u_n + 4} > 0 $$ $$ u_n > \frac{5u_n}{2u_n + 4} $$ $$ 1 > \frac{5}{2u_n + 4}$$ $$ 2u_n + 4 > 5$$ $$ u_n - \frac{1}{2} > 0 $$
We have that $u_1 = 1$ so the base case holds and so we conclude $u_n > \frac{1}{2}$, $\forall n \in \mathbb{N}$.