Example 1 — Invert a 2x2
EasyProblem
Find the inverse of .
Solution
-
Square matrix; first compute .
Name the structure before touching arithmetic — that is what makes the right method obvious.
-
Ask the recognition question: Is the matrix square with nonzero determinant, so an undo-matrix exists?
If the answer is yes, the concept applies; the cue, not a keyword, decides the method.
-
, nonzero, so swap/negate and scale by .
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 — the matrix that undoes to give the identity. If it does not, revisit the recognition step before changing the arithmetic.
Answer
Takeaway: Check , swap the diagonal, negate the off-diagonal, divide by .