Example 1 — Use the machine
EasyProblem
A function machine adds 4 to whatever goes in. What comes out when 7 goes in, and what went in if 10 came out?
Solution
-
Treat it as a box with a fixed in-to-out rule.
Name the structure before touching arithmetic — that is what makes the right method obvious.
-
Ask the recognition question: Am I tracking what comes out for a given input, treating the rule as a sealed box?
If the answer is yes, the concept applies; the cue, not a keyword, decides the method.
-
Forward: apply the rule to 7. Backward: undo the rule from 10.
The rule is chosen only after the structure matches, so the steps mean something.
-
; for output 10, input was .
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 — function as a black box. If it does not, revisit the recognition step before changing the arithmetic.
Answer
Out: 11; in: 6
Takeaway: A function box has one output per input and can be run forward or backward.