Let $k\in\mathbb N$ with $k\ge2$ and fix $a>0$. Let $x_1=\sqrt[k]{a}$ and $x_{n+1}=\sqrt[k]{a+x_n}$. I want to prove that this sequence is bounded above.
My proof is by induction. Suppose that $L>0$ be such that $L^k=L+a$. If $n=1$, then $x_1=\sqrt[k]{a}\le L$, since $a\le a+L$. So if $x_n\le L$, then we have
$$x_{n+1}^k=x_n+a\le L+a=L^k$$
and so $x_{n+1}\le L$.
But I don't know how to justify if such a $L$ exists. So I think maybe there is some better ways. So my main question is,
What other methods can we use to prove that $\{x_n\}$ is bounded above? Thanks!
Let's say that we want to prove $|x_n|\leq L$ for all $n\in\mathbb N$. We would like to prove it by induction, since your sequence is given recursively. But, here's the thing, we don't know what $L$ we should choose yet, so we will try to go through the inductive proof first and see what $L$ will allow us to get through it.
Assume that we have $|x_n|\leq L$ and we want to prove that it implies $|x_{n+1}| \leq L$. We have
$$|x_{n+1}|\leq L \iff |x_{n+1}|^k\leq L^k \iff |x_n + a| \leq L^k$$
and the question is what can we use to prove $|x_n+a|\leq L^k$. We know that $|x_n|\leq L$, so one should think of triangle inequality: $|x_n + a|\leq |x_n|+|a|\leq L + |a|$. Now we see that it is sufficient to find $L$ such that $$L + |a| \leq L^k.\tag{1}$$ We also need to have $|x_1| = |\sqrt[k]a| \leq L$, so we might want to try $L = |\sqrt[k]a|$ in $(1)$. Unfortunately, it doesn't work. The next obvious thing to try is $L = |a|$. In that case $(1)$ becomes $$|a|+|a| \leq |a|^k \iff |a|^{k-1} \geq 2.$$ Ah, so now we know that $L = |a|$ works for $|a| \geq 2$ (this is a crude estimate, but we don't really want to depend on $k$). And what about $|a|< 2$? Since $2$ seems to be the magical number here, why don't we try $L = 2$:
$$2+|a| < 2 + 2 \leq 2^k,\ k\geq 2.$$
Great, it works.
Finally, we see that $L = \max\{|a|,2\}$ will do the job and let us prove the boundedness by induction.
Hopefully, this sheds some light onto how someone can stumble upon seemingly unmotivated bounds in analysis.