Salick Academy

Vectors

40 min readNo calculatorNeeds: pythagoras, coordinate geometry
By the end of this topic you should be able to
  • Add, subtract and scale vectors
  • Find the magnitude of a vector
  • Find a unit vector in a given direction
  • Find the vector joining two points from their position vectors
  • Use the scalar product to test whether two vectors are perpendicular
  • Test whether vectors are parallel and whether points are collinear

Writing a vector

A vector has both size and direction. Two notations appear on this syllabus and they mean exactly the same thing:

a=3i+4janda=(34)\mathbf{a} = 3\mathbf{i} + 4\mathbf{j} \qquad\text{and}\qquad \mathbf{a} = \begin{pmatrix} 3 \\ 4 \end{pmatrix}

Here i\mathbf{i} is one unit to the right and j\mathbf{j} is one unit up. Use whichever form the question uses.

Magnitude

The magnitude — the length — comes from Pythagoras on the two components:

Adding, subtracting and scaling

Work component by component. Add the i\mathbf{i} parts, add the j\mathbf{j} parts, and keep them apart:

(2i+j)+(3i4j)=5i3j(2\mathbf{i} + \mathbf{j}) + (3\mathbf{i} - 4\mathbf{j}) = 5\mathbf{i} - 3\mathbf{j}

Multiplying by a scalar multiplies both components: 3(2ij)=6i3j3(2\mathbf{i} - \mathbf{j}) = 6\mathbf{i} - 3\mathbf{j}.

Position vectors and the vector joining two points

The position vector of a point AA is OA\overrightarrow{OA}, the vector from the origin to AA. So the point A(1,2)A(1,2) has position vector i+2j\mathbf{i} + 2\mathbf{j}.

Destination minus start. Going from A(1,2)A(1,2) to B(5,5)B(5,5) gives AB=(51)i+(52)j=4i+3j\overrightarrow{AB} = (5-1)\mathbf{i} + (5-2)\mathbf{j} = 4\mathbf{i} + 3\mathbf{j}.

Unit vectors

A unit vector has magnitude 1. To find the unit vector in the direction of a\mathbf{a}, divide a\mathbf{a} by its own magnitude:

For 6i8j6\mathbf{i} - 8\mathbf{j} the magnitude is 36+64=10\sqrt{36+64} = 10, so the unit vector is 0.6i0.8j0.6\mathbf{i} - 0.8\mathbf{j}. Check it: 0.36+0.64=1\sqrt{0.36 + 0.64} = 1.

Parallel vectors and collinear points

So 2i3j2\mathbf{i} - 3\mathbf{j} and 4i+6j-4\mathbf{i} + 6\mathbf{j} are parallel, because the second is 2-2 times the first. Both components must scale by the same factor — doubling one and leaving the other is not a scalar multiple.

Three points are collinear if they lie on one straight line. To prove it, show that two vectors between them are parallel and that they share a point:

For A(1,2)A(1,2), B(4,8)B(4,8), C(6,12)C(6,12): AB=3i+6j\overrightarrow{AB} = 3\mathbf{i}+6\mathbf{j} and BC=2i+4j=23AB\overrightarrow{BC} = 2\mathbf{i}+4\mathbf{j} = \tfrac23 \overrightarrow{AB}. Parallel, and both pass through BB, so AA, BB and CC are collinear.

The scalar product

Multiply matching components and add. The result is a number, not a vector — which is why it is called the scalar product.

Its most-used consequence:

So 2i+3j2\mathbf{i}+3\mathbf{j} and 6i4j6\mathbf{i}-4\mathbf{j} are perpendicular, since 1212=012 - 12 = 0.