The Lumin Archive
Vector Geometry: Direction, Magnitude & 2D/3D Space - Printable Version

+- The Lumin Archive (https://theluminarchive.co.uk)
+-- Forum: The Lumin Archive — Core Forums (https://theluminarchive.co.uk/forumdisplay.php?fid=3)
+--- Forum: Mathematics (https://theluminarchive.co.uk/forumdisplay.php?fid=6)
+---- Forum: Geometry & Space (https://theluminarchive.co.uk/forumdisplay.php?fid=16)
+---- Thread: Vector Geometry: Direction, Magnitude & 2D/3D Space (/showthread.php?tid=277)



Vector Geometry: Direction, Magnitude & 2D/3D Space - Leejohnston - 11-17-2025

Thread 2 — Vector Geometry: Direction, Magnitude & 2D/3D Space

Understanding Vectors — The Language of Space, Motion, and Force

Vectors are one of the most important tools in mathematics, physics, computer graphics, and engineering. 
They describe *movement, direction, forces, positions, velocities, accelerations,* and more.

This thread gives learners a clear introduction to vector geometry — accessible, but powerful.



1. What Is a Vector?

A vector is a quantity with:
magnitude (how big it is) 
direction (where it points)

Examples:
• A force of 10 N pushing east 
• A velocity of 25 m/s at 30° 
• A displacement of (3, 4) units in 2D 
• A 3D movement of (1, –2, 5)

We write vectors in coordinate form as:
• 2D → (x, y) 
• 3D → (x, y, z)



2. Magnitude (Vector Length)

The magnitude of a vector (its length) uses Pythagoras:

For a 2D vector (x, y): 
\[ |v| = \sqrt{x^2 + y^2} \]

Example: 
v = (3, 4) 
|v| = √(3² + 4²) = √25 = 5

For 3D vectors: 
\[ |v| = \sqrt{x^2 + y^2 + z^2} \]

Example: 
v = (1, –2, 2) 
|v| = √(1 + 4 + 4) = 3



3. Direction (Unit Vectors)

To find the direction of a vector, we convert it into a unit vector:

\[ \hat{v} = \frac{v}{|v|} \]

Example: 
v = (3, 4) 
|v| = 5 

Unit vector: 
\(\hat{v} = (3/5, 4/5)\)

This tells us the vector’s direction without its size.



4. Adding & Subtracting Vectors

Vectors add by combining components:

(3, 2) + (1, –4) = (4, –2)

Subtract the same way:

(3, 2) – (1, –4) = (2, 6)

This is why vectors are so easy to work with.



5. Scalar Multiplication

Multiplying a vector by a scalar stretches or shrinks it:

k(3, –2) = (3k, –2k)

Examples:
• 2(3, –2) = (6, –4) 
• –1(3, –2) = (–3, 2) (reverses direction)



6. Dot Product — Measuring Alignment

The dot product tells us how similar two vectors' directions are.

For vectors a = (a₁, a₂) and b = (b₁, b₂):

\[ a \cdot b = a₁b₁ + a₂b₂ \]

Interpretation:
• If a·b > 0 → vectors point roughly the same way 
• If a·b < 0 → vectors point opposite directions 
• If a·b = 0 → vectors are perpendicular (90°)

Example: 
(2, 1) · (1, 4) = 2 + 4 = 6 (same-ish direction)



7. Cross Product — A Perpendicular Vector (3D Only)

Only in 3D, the cross product creates a vector perpendicular to both inputs.

If a = (a₁, a₂, a₃) and b = (b₁, b₂, b₃):

\[ a \times b =
(a₂b₃ - a₃b₂,\;
a₃b₁ - a₁b₃,\;
a₁b₂ - a₂b₁ ) \]

This is used in:
• physics (torque, angular momentum) 
• 3D graphics (surface normals) 
• robotics 
• engineering



8. Why Vectors Matter in the Real World

Vectors power:
• computer game engines 
• physics simulations 
• GPS and navigation 
• machine learning 
• robotics pathfinding 
• satellite orbits 
• 3D modelling and animation 
• architectural design 
• engineering stress calculations 

Understanding vectors unlocks a huge part of modern science and technology.



9. A Quick Practice Set (Optional for Learners)

Try these:
1. Find the magnitude of (6, 8). 
2. Convert (4, –3) into a unit vector. 
3. Compute (2, 1) + (–5, 3). 
4. Find the dot product of (3, 4) and (4, –3). 
5. Compute the cross product of (1, 0, 0) × (0, 1, 0).



Written by Leejohnston — The Lumin Archive