Why Vectors Matter in Real Life?
Ever wondered how a GPS tells you the shortest route, or how a video game character moves? Both use vectors – arrows that show direction and size.
💡 In Simple Words: A vector is like an arrow you draw on paper. It tells you how far to go (its length) and which way to point (its direction). You can add arrows, stretch them, or find how they line up.
What Is a Vector?
Vector (pronounced "VEK-tor") is a quantity that has both magnitude (how big) and direction (which way). Think of wind: it blows at a certain speed and from a certain direction.
Components of a Vector
We break a vector into components – the horizontal (x) and vertical (y) parts. It’s like splitting a staircase step into a run (horizontal) and rise (vertical).
How to Write a Vector
In 2‑D we write \(\vec{A}=a\hat{i}+b\hat{j}\) where \(a\) is the x‑component, \(b\) is the y‑component, and \(\hat{i},\hat{j}\) are unit vectors (vectors of length 1) pointing along the x‑ and y‑axes.
Basic Operations in Vector Algebra
1. Vector Addition
Adding vectors is like joining two arrows tip‑to‑tail. The result (resultant) points from the start of the first to the end of the second.
Formula: \(\vec{R}=\vec{A}+\vec{B}= (a_1+b_1)\hat{i}+(a_2+b_2)\hat{j}\)
2. Scalar Multiplication
Multiplying a vector by a scalar (a plain number) stretches or shrinks it without changing its direction, unless the scalar is negative – then the arrow flips.
Formula: k\vec{A}= (k a)\hat{i}+(k b)\hat{j}
3. Dot Product (Scalar Product)
The dot product turns two vectors into a single number (scalar). It measures how much one vector goes in the same direction as another.
First time term: dot product – multiply the magnitudes of the vectors and the cosine of the angle between them.
Formula: \(\vec{A}\cdot\vec{B}=|\vec{A}|\,|\vec{B}|\cos\theta = a_1b_1 + a_2b_2\)
4. Cross Product (Vector Product) – 3‑D only
The cross product gives a new vector that is perpendicular (at right angles) to the plane containing the original two. It’s handy for torque and magnetic force problems.
Formula (using determinant): \(\vec{A}\times\vec{B}=\begin{vmatrix} \hat{i}&\hat{j}&\hat{k}\\ a_1&a_2&a_3\\ b_1&b_2&b_3 \end{vmatrix}\)
Quick Reference Table
| Operation | Result Type | Formula (2‑D) | Key Use |
|---|---|---|---|
| Addition | Vector | (a₁+b₁)ĭ + (a₂+b₂)ĵ | Resultant force, displacement |
| Scalar × Vector | Vector | k·aĭ + k·bĵ | Changing speed, reversing direction |
| Dot Product | Scalar | a₁b₁ + a₂b₂ | Finding angle, work done |
| Cross Product | Vector (3‑D) | — | Torque, magnetic force |
Finding the Magnitude and Direction of a Vector
The magnitude is the length of the arrow. Use Pythagoras: |\vec{A}| = \sqrt{a^2 + b^2}. The direction (angle with x‑axis) comes from \theta = \tan^{-1}(b/a).
Worked Example
Problem: Two forces act on a point: \(\vec{F_1}=3\hat{i}+4\hat{j}\) N and \(\vec{F_2}= -2\hat{i}+5\hat{j}\) N. Find the resultant force, its magnitude, and direction.
- Add components: \(\vec{R}= (3-2)\hat{i} + (4+5)\hat{j}= 1\hat{i}+9\hat{j}\).
- Magnitude: \(|\vec{R}| = \sqrt{1^2+9^2}=\sqrt{82}\approx 9.06\) N.
- Direction: \(\theta = \tan^{-1}(9/1) \approx 83.7^{\circ}\) above the positive x‑axis.
So the resultant points almost straight up, a little to the right.
Common Mistakes to Avoid
- Mixing up scalar and vector results – dot product gives a number, not an arrow.
- Forgetting to use the same units for all components.
- Using \(\tan\) instead of \(\tan^{-1}\) when finding direction.
📝 Likely Exam Questions
- Question: Find the unit vector (vector of length 1) in the direction of \(\vec{A}=6\hat{i}-8\hat{j}\).
Answer: Magnitude \(|\vec{A}|=\sqrt{6^2+(-8)^2}=10\). Unit vector = \(\frac{1}{10}(6\hat{i}-8\hat{j}) = 0.6\hat{i}-0.8\hat{j}\). - Question: Two vectors \(\vec{P}=4\hat{i}+3\hat{j}\) and \(\vec{Q}= -1\hat{i}+7\hat{j}\) are given. Compute \(\vec{P}\cdot\vec{Q}\) and the angle between them.
Answer: Dot product = \(4(-1)+3(7)= -4+21=17\). Magnitudes: \(|\vec{P}|=5\), \(|\vec{Q}|=\sqrt{1+49}=\sqrt{50}=5\sqrt{2}\). \(\cos\theta = 17/(5\cdot5\sqrt{2})=17/(25\sqrt{2})\). \(\theta = \cos^{-1}(17/(25\sqrt{2})) \approx 28.1^{\circ}\). - Question: A particle moves with displacement vectors \(\vec{d_1}=2\hat{i}+\hat{j}\) m and \(\vec{d_2}= -\hat{i}+3\hat{j}\) m in successive intervals. Find the total displacement and its direction.
Answer: Total \(\vec{D}= (2-1)\hat{i}+(1+3)\hat{j}=1\hat{i}+4\hat{j}\). Magnitude \(\sqrt{1^2+4^2}=\sqrt{17}\approx4.12\) m. Direction \(\theta=\tan^{-1}(4/1)\approx75.96^{\circ}\) above x‑axis. - Question: For vectors \(\vec{A}=5\hat{i}+12\hat{j}\) and \(\vec{B}=3\hat{i}-4\hat{j}\), find \(\vec{A}\times\vec{B}\) (in 3‑D notation).
Answer: Treat them as \(5\hat{i}+12\hat{j}+0\hat{k}\) and \(3\hat{i}-4\hat{j}+0\hat{k}\). Cross product = \((0\cdot0-12\cdot0)\hat{i}-(5\cdot0-0\cdot3)\hat{j}+(5(-4)-12\cdot3)\hat{k}\) = \(0\hat{i}+0\hat{j}+(-20-36)\hat{k}= -56\hat{k}\). So the vector points into the page.