Example 1 — Piecewise area
EasyProblem
A region splits into a rectangle and a triangle of base , height sharing the top edge. Find the total area.
Solution
-
The pieces are already solved; the task is to reassemble them into the whole, checking they share an edge cleanly.
Name the structure before touching arithmetic — that is what makes the right method obvious.
-
Ask the recognition question: Have I already solved the pieces, and is my job now to fit them into one whole with matching seams?
If the answer is yes, the concept applies; the cue, not a keyword, decides the method.
-
Confirm the triangle's base aligns with the rectangle's top, then combine the two areas.
The rule is chosen only after the structure matches, so the steps mean something.
-
Rectangle , triangle ; matching seam means add: .
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 — put the pieces back together right. If it does not, revisit the recognition step before changing the arithmetic.
Answer
square units
Takeaway: Reassemble solved pieces only after verifying their boundaries line up.