Example 1 — Is the function monotonic?
EasyProblem
For , check whether it is monotonic over all real numbers.
Solution
-
I need the direction of change everywhere, so test whether bigger always gives bigger .
Name the structure before touching arithmetic — that is what makes the right method obvious.
-
Ask the recognition question: Does larger input always give a same-direction change (always up, or always down) with no turn-around?
If the answer is yes, the concept applies; the cue, not a keyword, decides the method.
-
Compare outputs for : , which is positive whenever .
The rule is chosen only after the structure matches, so the steps mean something.
-
Every increase in raises by a positive amount.
Keep units, shape, or answer form tied to the story so the work does not become symbol pushing.
-
Check the answer against the original question.
It should fit the mental model — one direction the whole way. If it does not, revisit the recognition step before changing the arithmetic.
Answer
Yes, strictly increasing (monotonic)
Takeaway: Monotonic means the same-direction change holds for all inputs.