Vectors in Space
Core Titles
Key headlines and terms for quick recall- Vector — magnitude + direction
- Position vector
- Components or
- Magnitude
- Unit vector
- Standard basis
- Vector addition, Scalar multiplication
Basic Idea
What it is, why it matters, how it worksScalars vs vectors
A scalar has only magnitude (e.g., temperature, mass). A vector has both magnitude and direction (e.g., velocity, force).
Representing a vector in 3D
A vector in is written: where are the standard unit vectors along the axes.
The position vector of a point is .
Magnitude
Unit vector
A vector of magnitude 1 in the same direction:
Operations
- Addition: (component-wise; parallelogram law geometrically).
- Scalar multiplication: — scales magnitude, reverses direction if .
Vector from one point to another
.
Why this matters in Data Science
A datapoint with features is a vector in . All ML operations are vector operations: distance, dot product, projection.
Mind Map
Visual structure of the conceptVECTORS IN SPACE
├── Definition: magnitude + direction
├── Components ⟨a, b, c⟩ = aî + bĵ + ck̂
├── Magnitude ‖v‖ = √(a² + b² + c²)
├── Unit vector v̂ = v / ‖v‖
├── Standard basis î, ĵ, k̂
└── Operations
├── Addition (component-wise)
├── Scalar mult. kv
└── Vector from A to B = ⟨b₁−a₁, b₂−a₂, b₃−a₃⟩
Exam Q&A
Part A (2 marks) and Part B (20 marks) style questionsPart A (2 marks each)
Q1. Define a position vector. The vector from the origin to the point , denoted .
Q2. Find a unit vector in the direction of . , so .
Q3. If and , find and its magnitude. , .
Q4. State the parallelogram law of vector addition. If two vectors are represented by adjacent sides of a parallelogram from a common point, their sum is the diagonal of the parallelogram.
Part B (20 marks)
Q. Define vectors in space. Derive magnitude and unit vector. Given and , find (i) , (ii) , (iii) the unit vector along .
Definitions. A vector in has both magnitude and direction. Written as .
Magnitude: — Pythagoras in 3D.
Unit vector: . Always has magnitude 1.
Computations.
(i) Sum. .
(ii) Difference. . Magnitude: .
(iii) Unit vector along . . . Magnitude: . Unit vector: .