Theory
A sequence is monotone if it is increasing, non-decreasing, decreasing,
or non-increasing.
Common methods to test monotonicity:
- Difference: an+1−an
- Ratio: anan+1
- Derivative of the related function f(x)
Every bounded monotone sequence is convergent.
Beginner Checking Pattern
- Choose a method (difference, ratio, or derivative)
- Determine increasing or decreasing
- Check boundedness
- Conclude convergence or divergence
Decision Tree: Monotone, Bounded, Convergent
- Check for oscillation.
If the sequence alternates signs or oscillates
(e.g. (−1)n, sinn, cos(nπ)),
then it is not monotone.
- Test monotonicity.
If possible, compute
an+1−anoranan+1.
- Positive ⇒ increasing
- Negative ⇒ decreasing
- Use derivatives if needed.
Write an=f(n) and compute f′(x).
- f'(x) > 0 \Rightarrow increasing
- f'(x) < 0 \Rightarrow decreasing
- Check boundedness.
Find constants m and M such that
m≤an≤M.
- Conclude.
- Monotone + bounded ⇒ convergent
- Unbounded ⇒ divergent
Exercises
Exercise 1
Question
Check whether
{1,2!22,3!23,4!24,…}is monotone.
Show solution ↓Hide solution ↑
Solution
Method: Ratio.
\frac{a_{n+1}}{a_n}
= \frac{2^{n+1}/(n+1)!}{2^n/n!}
= \frac{2}{n+1} < 1 \quad \text{for } n \ge 2.Conclusion: The sequence is decreasing (monotone decreasing).
Exercise 2
Question
Check whether
{n−(21)n}is monotone.
Show solution ↓Hide solution ↑
Solution
Method: Difference.
a_{n+1} - a_n
= \left[(n+1) - \left(\frac12\right)^{n+1}\right]
- \left[n - \left(\frac12\right)^n\right]
= 1 + \left(\frac12\right)^n\!\left(1 - \frac12\right) > 0.Conclusion: The sequence is increasing (monotone increasing).
Exercise 3
Question
Is
{cos(nπ)}monotone, bounded, or convergent?
Show solution ↓Hide solution ↑
Solution
Observation:
cos(nπ)=(−1)n=1,−1,1,−1,…Conclusion:
- Not monotone
- Bounded between −1 and 1
- Not convergent
Exercise 4
Question
Is
{n2+1(−1)n+1n}monotone, bounded, or convergent?
Show solution ↓Hide solution ↑
Solution
Boundedness:
\left| \frac{(-1)^{n+1} n}{n^2+1} \right|
\le \frac{n}{n^2+1} < 1.Limit:
n→∞limn2+1(−1)n+1n=0.Conclusion:
- Not monotone (sign alternates)
- Bounded
- Convergent to 0