Example 1 — Length of a vector
EasyProblem
Find the magnitude of the vector .
Solution
-
We want the size of a quantity ignoring direction, so this is magnitude.
Name the structure before touching arithmetic — that is what makes the right method obvious.
-
Ask the recognition question: Am I asking how big or how far, with the sign or direction thrown away (so the answer can't be negative)?
If the answer is yes, the concept applies; the cue, not a keyword, decides the method.
-
Use the Pythagorean length for a 2D vector.
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 — how big, ignoring direction. If it does not, revisit the recognition step before changing the arithmetic.
Answer
5
Takeaway: Magnitude is the non-negative size; for a vector it is the Pythagorean length.