As per the title, I need to examine the following sqeuences of numbers $(a_n)$ with $n \in \mathbb{N}$ for the properties of monotonicity and boundedness. These sequences are given via the following functions, which are to be examined:
- $a_n = \frac{n^2}{n!}$
- $b_n = \frac{(-2)^{n+1}+3^n}{3^{n+1}+(-2)^n}$
- $c_{n+1} = \sqrt{2+c_n}; c_0 = \sqrt{2}$
Since sequences are a new topic for me, I will refer to the following definitions:
- Sequence (mathematics): (here) The resulting ordered set of numbers produced from a function.
- Monotonicity
- Boundedness
Also, here I am avoiding limits as I believe they are being purposely excluded from this task.
Progress so far:
- Here I wasn't really sure what to expect, so i just decided to substitute $n = \{0, 1, 2, 3, 4\}$ which produces the set $\{0, 1, 2, \frac{3}{2}, \frac{2}{3}\}$. So from observation, the set of numbers is increasing until the value of $b_2$, but then the set is decreasing. Thus, before any proof, it would appear that the function $a$ is monotonically decreasing, but not strictly.
To prove this, I write an inequality with $n$ and $n + 1$.
$ \begin{align*} \frac{n^2}{n!} &> \frac{(n+1)^2}{(n+1)!} \\ \frac{n^2}{n!} &> \frac{(n+1)^2}{(n+1)n!} \\ n^2 &> \frac{(n+1)^2}{(n+1)} \\ n^2 &> n + 1 \\ \end{align*} $
By substituting values for n it can be seen that the function is monotonically decreasing from n $\geq 2$.
To prove boundedness, for the upper bound we observe that $\frac{n^2}{n!} \leq 2$ (supremum). For the lower bound we consider that $n!$ grows faster than $n^2$, and both are always greater than $0$. Thus $n^2/n!$ will tend towards the (lower bound) value of $0$ (infimum).
Thus, $a_n$ is nonstrictly monotonically decreasing and bounded.
- Here, the first thing I notice is that the sign of the function changes every time n increases. So according to the definition I would reason that the function is neither increasing nor decreasing, i.e the function is not monotonic.
the second thing that I notice is that the function is composed of powers of (negative) 2 and 3. Since powers of 3 grow faster than powers of 2, I reason that for very large values of n the function will tend towards $\frac{3^n}{3^{n+1}} = \frac{1}{3}$ (the infimum and supremum are the same), i.e $b_n$ is non-monotonic but bounded (This feels very non-rigorous however, is there a better way of handling this question?)
- This function appears to have been given in recursive notation (as opposed to index notation). The first 3 values are as follows:
\begin{align*} c_0 &= \sqrt{2} \\ c_1 &= \sqrt{2 + \sqrt{2}} \\ c_2 &= \sqrt{2 + \sqrt{2 + \sqrt{2}}}\\ \end{align*}
Monotonicity: Since more terms are added for each successive recursive call, and the elements are greater than zero, I would reason that the function is monotonically increasing.
For the boundedness of the function, After plugging a few values into wolfram, it appears that this sequence tends towards 2.
Can anyone offer some pointers? At this stage I get stuck.