How do you prove the sum of two monotone sequences is also monotone?
Here is my thought process:
Let $a_n$ and $b_n$ be two monotone increasing sequences. Then $\forall n \in N$, $a_n \leq a_{n+1}$ and $b_n \leq b_{n+1}$. Adding both inequalities you get $a_n + b_n \leq a_{n+1} + b_{n+1}$. Therefore in this specific case of both sequences being monotone increasing I have proven their sum is monotone increasing, and so it is also monotone.
But I'm having trouble figuring out how to apply similar logic for an $a_n$ is monotone increasing but $b_n$ is monotone decreasing. I also tried to do proof by contradiction (like supposing the sum is not monotone), but that also lead to nowhere.
How do I prove the other cases?
The result is not true when $a_n$ is monotone increasing and $b_n$ is monotone decreasing.
For example, $$a_n = 0, +1, +1, +2, +2, +3, +3, +4, +4, +5, +5, \dots$$ $$b_n = 0, \ \ 0, -1, -1, -2, -2, -3, -3, -4, -4, -5, \dots $$ gives $$ a_n + b_n = 0, +1, \ \ 0, +1, \ \ 0, +1, \ \ 0, +1, \ \ 0, +1, \ \ 0, \dots$$