1.1.10 · D3Measurement, Vectors & Kinematics

Worked examples — Unit vectors — î, ĵ, k̂; constructing unit vector

2,588 words12 min readBack to topic

Before we start, one reminder of the two symbols you must never confuse:

  • (arrow on top) = the whole vector — it has a size and a direction.
  • (vertical bars) = the magnitude — a single positive number, the vector's length.
  • (hat) = the unit vector — same direction as , but length locked to .

The recipe glues them: , and its reverse .


The scenario matrix

Every problem this topic can throw is one (or a blend) of these case classes:

# Case class What is tricky about it Hit by
C1 All-positive 2D The friendly baseline Ex 1
C2 Mixed signs (a quadrant other than the first) Signs must survive into Ex 2
C3 3D with a negative component Pythagoras twice; sign kept Ex 3
C4 Already a unit vector Dividing by changes nothing Ex 4
C5 Zero vector (degenerate) is undefined — no direction Ex 5
C6 Ugly / irrational magnitude Answer must stay exact, not rounded away Ex 6
C7 Real-world word problem (units!) Strip units to get direction, restore later Ex 7
C8 Exam twist: vector hidden in a difference Build the vector first, then normalise Ex 8
C9 Limiting behaviour: one component huge leans toward that axis Ex 9

Each example below is tagged with the cell it fills.


Worked Examples


Recall Quick self-test across the matrix

Cover the answers and name the trap in each.

Which case gives an undefined unit vector, and why? ::: The zero vector (C5) — magnitude forces division by zero, and a zero-length arrow has no direction. Normalising an already-unit vector gives what? ::: The same vector back (C4) — dividing by is a no-op. When you're asked for the direction "from to ", what must you build first? ::: The displacement (C8), then normalise. As one component grows without bound, the unit vector approaches what? ::: The basis vector of that axis (C9), e.g. . Do negative components survive into ? ::: Yes — dividing by the positive magnitude keeps every sign (C2/C3).


Connections