Example 1 — Evaluate a chain
EasyProblem
Let , , . Find .
Solution
-
It's a composition chain; evaluate innermost first, right to left.
Name the structure before touching arithmetic — that is what makes the right method obvious.
-
Ask the recognition question: Is one function's output being fed as the input to the next in a fixed order?
If the answer is yes, the concept applies; the cue, not a keyword, decides the method.
-
; then ; then .
The rule is chosen only after the structure matches, so the steps mean something.
-
.
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 — inside-out, right to left. If it does not, revisit the recognition step before changing the arithmetic.
Answer
Takeaway: Work innermost-out: apply , then , then .