What Exactly Is a Vector?
A vector is a quantity defined by both a size and a direction. Two vectors are equal only when they match on both — same length and same way of pointing. Move an arrow around the page without rotating or stretching it and it stays the same vector; that freedom is what makes vectors so useful for describing motion and force.
Vectors are written a few standard ways, and you should recognise all of them:
Bold letter: $\mathbf{v}$ — common in print.
Arrow overhead: $\vec{v}$ — common in handwriting and Indian textbooks.
Component form: $\langle 3, 4 \rangle$ or $(3, 4)$ — the horizontal and vertical amounts.
The two numbers in component form are the vector's components: how far it reaches across (the $x$-component) and how far up (the $y$-component) on the coordinate plane. A vector that starts at the origin and ends at a point is a position vector of that point. The same components are just the variables $x$ and $y$ you already use to name a point.
How Do You Find the Magnitude and Direction of a Vector?
The magnitude of a vector is its length, and it comes straight from the Pythagorean theorem. For a vector $\mathbf{v} = \langle x, y \rangle$:
$$|\mathbf{v}| = \sqrt{x^2 + y^2}.$$
The vertical bars mean "the magnitude of." The direction is the angle $\theta$ the vector makes with the positive $x$-axis:
$$\theta = \tan^{-1}!\left(\frac{y}{x}\right).$$
Together, magnitude and direction pin a vector down completely — they are just the polar version of the component form. Vectors also combine in ways scalars cannot. You add them tip-to-tail (or component by component), scale them by multiplying by a plain number, and multiply two vectors together as a dot or cross product, which is a topic in its own right.
Examples of a Vector
Example 1
Find the magnitude of the vector $\mathbf{v} = \langle 3, 4 \rangle$.
Apply $\sqrt{x^2 + y^2}$:
$$|\mathbf{v}| = \sqrt{3^2 + 4^2} = \sqrt{9 + 16} = \sqrt{25} = 5.$$
Final answer: $|\mathbf{v}| = 5$.
Example 2
Add the vectors $\mathbf{a} = \langle 2, 3 \rangle$ and $\mathbf{b} = \langle 5, 1 \rangle$.
Wrong attempt. A student multiplies the components, writing $\langle 2 \times 5, , 3 \times 1 \rangle = \langle 10, 3 \rangle$. Check it against an arrow drawing and the result does not match the tip-to-tail picture — the components were combined with the wrong operation.
Where it broke. Vector addition adds matching components; it does not multiply them. (Multiplying components is a different operation entirely, and it does not even give a vector.)
Correct. Add component by component:
$$\mathbf{a} + \mathbf{b} = \langle 2 + 5, ; 3 + 1 \rangle = \langle 7, 4 \rangle.$$
Final answer: $\langle 7, 4 \rangle$.
Example 3
Multiply the vector $\mathbf{v} = \langle 4, -2 \rangle$ by the scalar $3$.
Scalar multiplication scales every component:
$$3\mathbf{v} = \langle 3 \times 4, ; 3 \times (-2) \rangle = \langle 12, -6 \rangle.$$
Final answer: $\langle 12, -6 \rangle$.
Example 4
Find the direction (angle with the positive $x$-axis) of $\mathbf{v} = \langle 1, 1 \rangle$.
Use $\theta = \tan^{-1}(y/x)$:
$$\theta = \tan^{-1}!\left(\frac{1}{1}\right) = \tan^{-1}(1) = 45°.$$
Final answer: $45°$.
Example 5
Subtract $\mathbf{b} = \langle 1, 4 \rangle$ from $\mathbf{a} = \langle 6, 2 \rangle$.
Subtraction works component by component, like addition with the second vector reversed:
$$\mathbf{a} - \mathbf{b} = \langle 6 - 1, ; 2 - 4 \rangle = \langle 5, -2 \rangle.$$
Final answer: $\langle 5, -2 \rangle$.
Example 6
A boat heads east at $8$ km/h while a current pushes it north at $6$ km/h. Find the boat's resultant speed.
The two velocities are perpendicular vectors, $\langle 8, 0 \rangle$ and $\langle 0, 6 \rangle$. Their resultant is $\langle 8, 6 \rangle$, and the speed is its magnitude:
$$|\langle 8, 6 \rangle| = \sqrt{8^2 + 6^2} = \sqrt{64 + 36} = \sqrt{100} = 10 \text{ km/h}.$$
Final answer: $10$ km/h.
Why Vectors Run the Physical World
Almost everything that moves, pushes, or flows is described by a vector — which is why vectors are the working language of physics, engineering, and computer graphics.
Navigation. A ship's course combines its own velocity vector with the current's; the resultant vector is the path it actually takes. Pilots and sailors add vectors constantly, exactly as in Example 6.
Forces in structures. Every beam in a bridge carries a force vector; engineers resolve them into components and balance them so the structure does not move. Get one vector's direction wrong and the balance fails.
Computer graphics and games. Every position, velocity, surface normal, and lighting direction in a 3D scene is a vector. Moving a character, bouncing a ball, or shading a surface is vector arithmetic done millions of times a second.
The Mars Climate Orbiter. In 1999 NASA lost the Mars Climate Orbiter because two teams expressed thrust in different units — the magnitudes were mismatched while the direction logic assumed they agreed. A $$125$-million spacecraft was lost to a vector quantity carrying the wrong magnitude.
Where Intuition Breaks on Vectors
Mistake 1: Treating a vector like a scalar
Where it slips in: Adding two velocities or forces by simply adding their numbers.
Don't do this: Add $8$ km/h east and $6$ km/h north to get $14$ km/h.
The correct way: Direction matters. Perpendicular vectors combine by the Pythagorean theorem, not by plain addition — $8$ and $6$ at right angles give a resultant of $10$, not $14$.
Mistake 2: Adding magnitudes instead of components
Where it slips in: Vector addition when the vectors are not perpendicular.
Don't do this: Add the two magnitudes and call it the resultant magnitude.
The correct way: Add the vectors component by component first, then take the magnitude of the result. The magnitude of a sum is not the sum of the magnitudes.
Mistake 3: Confusing the components with the magnitude
Where it slips in: Reporting a vector's "size."
Don't do this: Quote the larger component as the magnitude.
The correct way: The magnitude is $\sqrt{x^2 + y^2}$, which is generally larger than either component (and never smaller than the larger one). The memorizer who learned "magnitude is the big number" reaches for the wrong value the moment both components are sizeable.
Bottom Line
A vector is a quantity with both magnitude and direction, drawn as an arrow whose length is the magnitude.
A scalar (mass, time, temperature) has size only; a vector (velocity, force, displacement) carries direction too.
The magnitude of $\langle x, y \rangle$ is $\sqrt{x^2 + y^2}$, and its direction is $\tan^{-1}(y/x)$.
Vectors add component by component, not magnitude by magnitude — the most common mistake students make.
Vectors run navigation, structural engineering, and 3D graphics, and a vector magnitude error cost NASA the Mars Climate Orbiter.
Practice These Before Moving On
Find the magnitude of the vector $\langle 5, 12 \rangle$.
Add $\langle 3, -2 \rangle$ and $\langle -1, 6 \rangle$, then find the magnitude of the result.
A drone flies east at $9$ m/s while wind pushes it north at $12$ m/s. Find its resultant speed.
If problem 3 gave you $21$ m/s, return to Mistake 1 and draw the two arrows tip-to-tail.
Want a live Bhanzu trainer to walk your child through vectors, magnitude, and resultants? Book a free demo class — online globally.
Was this article helpful?
Your feedback helps us write better content