Example 1 — Iterate a loop
EasyProblem
A savings rule is (each year's balance feeds back, growing 10%). Starting at , find and name the feedback type.
Solution
-
Output feeds back as next input with a multiplier above 1 — positive feedback.
Name the structure before touching arithmetic — that is what makes the right method obvious.
-
Ask the recognition question: Does the system's output get fed back in as the input for the next step?
If the answer is yes, the concept applies; the cue, not a keyword, decides the method.
-
Iterate: , then .
The rule is chosen only after the structure matches, so the steps mean something.
-
, and balances keep amplifying each round.
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 feeds the next input. If it does not, revisit the recognition step before changing the arithmetic.
Answer
, positive feedback
Takeaway: Feedback means iterate the same rule, feeding each output back in; a multiplier amplifies.