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.
$a_{n+1} - a_n = \sqrt{3a_n+1} - \sqrt{3a_{n-1}+1} = \dfrac{3(a_n-a_{n-1})}{\sqrt{3a_n+1}+\sqrt{3a_{n-1}+1}} \geq 0$ since by the inductive step: $a_n \geq a_{n-1}$, and the proof is completed.