Assume that the sequence ${a_n}$ is defined recursively by $a_{n+1} = \sqrt{3a_n + 1}$ for all $n \in \mathbb N$, with $a_1 = 1$. Use mathematical induction to prove that $a_n \leq a_{n+1}$ for all $n \in \mathbb N$.
I've gotten most of the way, but I need help with the last bit. I've proven the base case, and gotten as far as:
Assume $P(k)$ is true. That is, $a_k \leq a_{k+1}$ for any $k \in \mathbb N$. Prove $P(k+1)$. That is, $a_{k+1} \leq a_{k+1+1}$.
And now I'm stuck.
and then to reduce you square both sides to get: 3a(n) + 1 <= 3*sqrt(3a(n) + 1) + 1?
– Ben Davis May 04 '15 at 02:33