Example 1 — Compose two functions
EasyProblem
Given and , find .
Solution
-
Run the inner function first, then on its output.
Name the structure before touching arithmetic — that is what makes the right method obvious.
-
Ask the recognition question: Is the output of one function being used as the input of another, in a fixed order?
If the answer is yes, the concept applies; the cue, not a keyword, decides the method.
-
Compute , then substitute that into .
The rule is chosen only after the structure matches, so the steps mean something.
-
, then .
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 — output of one becomes input of the next. If it does not, revisit the recognition step before changing the arithmetic.
Answer
Takeaway: Evaluate the inner function first, then apply the outer one.