Vector Operations
After understanding what vectors are, the next step is learning how to work with them.
Vector operations allow us to combine, scale, and manipulate vectors to model motion, forces, data, and directions accurately.
Why Vector Operations Are Important
Real-world problems rarely involve a single vector.
We often need to:
- Add multiple forces
- Combine movements
- Scale directions
- Compare data vectors
Vector operations make this possible.
Basic Vector Operations
The most common vector operations are:
- Vector addition
- Vector subtraction
- Scalar multiplication
These form the foundation of vector algebra.
Vector Addition (Concept)
Vector addition combines two or more vectors to form a resultant vector.
Geometrically, vectors are added by placing them head-to-tail.
The resulting vector represents the combined effect.
Vector Addition (Algebraic Method)
If:
a = (x₁, y₁)
b = (x₂, y₂)
Then:
a + b = (x₁ + x₂, y₁ + y₂)
Addition is done component-wise.
Example: Vector Addition
Let:
a = (2, 3), b = (4, 1)
Then:
a + b = (6, 4)
This represents the net movement or effect.
Properties of Vector Addition
Vector addition has important properties:
- Commutative: a + b = b + a
- Associative: (a + b) + c = a + (b + c)
- Identity: a + 0 = a
These properties simplify calculations.
Vector Subtraction (Concept)
Vector subtraction represents the difference between two vectors.
It can be interpreted as:
a − b = a + (−b)
Here, −b is the vector b reversed in direction.
Vector Subtraction (Algebraic Method)
If:
a = (x₁, y₁), b = (x₂, y₂)
Then:
a − b = (x₁ − x₂, y₁ − y₂)
Subtraction is also component-wise.
Example: Vector Subtraction
Let:
a = (5, 4), b = (2, 1)
Then:
a − b = (3, 3)
This can represent relative displacement.
Scalar Multiplication
Scalar multiplication scales a vector by a real number (scalar).
It changes:
- Magnitude (length)
- Possibly direction (if scalar is negative)
Scalar Multiplication (Algebraic Form)
If:
a = (x, y)
Then:
k·a = (kx, ky)
Here, k is a scalar.
Example: Scalar Multiplication
Let:
a = (3, −2), k = 2
Then:
2a = (6, −4)
The vector becomes twice as long.
Negative Scalars and Direction
If the scalar is negative, the vector reverses direction.
Example:
−1 · (3, 2) = (−3, −2)
Magnitude stays the same, direction flips.
Zero Vector
The zero vector is:
0 = (0, 0)
It has zero magnitude and no direction.
It acts as the identity in vector addition.
Unit Vectors (Preview)
A unit vector has magnitude 1.
It represents direction only.
Unit vectors are important in physics, engineering, and AI.
(We will study them in detail later.)
Vector Operations in Real Life
Vector operations model real-world situations:
- Combining forces acting on an object
- Finding total displacement
- Navigation and GPS calculations
Simple arithmetic is not enough.
Vector Operations in Physics
Physics heavily depends on vector operations.
- Net force = sum of forces
- Velocity addition
- Acceleration changes
All use vector addition and scaling.
Vector Operations in Data Science & AI
In machine learning:
- Feature vectors are added and scaled
- Weights are updated using vector operations
- Optimization uses vector arithmetic
Training models is vector math in action.
Vector Operations in Competitive Exams
Exams commonly test:
- Vector addition and subtraction
- Scalar multiplication
- Algebraic manipulation of vectors
Careful component-wise calculation is essential.
Common Mistakes to Avoid
Students often make these mistakes:
- Adding magnitudes instead of components
- Ignoring direction
- Incorrect scalar multiplication
Practice Questions
Q1. Find a + b if a = (1, 2) and b = (3, 4)
Q2. Find 3a if a = (2, −1)
Q3. What is a − b if a = (5, 3) and b = (2, 1)?
Quick Quiz
Q1. Is vector addition commutative?
Q2. What happens when a vector is multiplied by a negative scalar?
Quick Recap
- Vector addition combines effects
- Vector subtraction finds difference
- Scalar multiplication scales vectors
- Operations are component-wise
- Essential for physics, AI, and data science
With vector operations mastered, you are now ready to explore matrices, the next major structure in linear algebra.