Example 1 — Multiply two matrices
EasyProblem
Compute for , .
Solution
-
Both , inner dimensions match, so result is .
Name the structure before touching arithmetic — that is what makes the right method obvious.
-
Ask the recognition question: Does the column count of equal the row count of , and am I dotting rows with columns?
If the answer is yes, the concept applies; the cue, not a keyword, decides the method.
-
Dot row 1 with col 1: ; continue for each slot.
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 — row of a dotted with column of b. If it does not, revisit the recognition step before changing the arithmetic.
Answer
Takeaway: Row-by-column dot products fill each result entry.