Vectors in the Coordinate Plane

Writing a vector in component form by subtracting the start point from the end point, reading the angled-bracket notation, and finding the length with Pythagoras - with worked examples on negative coordinates.

--
Vectors in the Coordinate Plane — Moosa Academy

Given a start point and an end point, two things follow immediately: the vector's component form and its length. Both come from the same pair of subtractions.

Concept What component form means

A vector in component form is one whose tail has been moved to the origin — without changing its direction or its length.

 \langle x, y \rangle = \langle x_2 - x_1,\; y_2 - y_1 \rangle
 (x_1, y_1) is the start point and  (x_2, y_2) is the end point.

Always subtract end minus start, in that order. Reversing it gives a vector pointing the opposite way.

Note Two kinds of brackets
Round brackets mark a point:  A(2, 3) is a location.
Angled brackets mark a vector:  \langle 7, -7 \rangle is a displacement.

The notation is doing real work here — seeing  \langle \; \rangle tells you at once that a vector is meant, not a position.

Example Finding the component form
A(−4, 2) B(3, −5) O ⟨7, −7⟩
The dashed arrow from the origin is the same vector as the solid one — same length, same direction, just moved.
From  A(-4, 2) to  B(3, -5) :
x-component:  3 - (-4) = 3 + 4 = 7
y-component:  -5 - 2 = -7
⟹ ⟨7, −7⟩

Watch the double negative: subtracting  -4 is the same as adding 4.

Theorem The length of a vector
Δx Δy |AB|
The two components form the legs of a right triangle, and the vector itself is the hypotenuse — so Pythagoras gives the length.
 |AB| = \sqrt{(x_2 - x_1)^2 + (y_2 - y_1)^2}

Squaring removes any minus signs automatically, which is exactly right — a length is never negative.

Example Two lengths worked out
From  A(-4, 2) to  B(3, -5) , the components are 7 and −7:
 7^2 + (-7)^2 = 49 + 49 = 98
 |AB| = \sqrt{98} \approx 9.9
From  C(0, 8) to  D(-9, -3) :
x-component:  -9 - 0 = -9 , y-component:  -3 - 8 = -11
 (-9)^2 + (-11)^2 = 81 + 121 = 202
 |CD| = \sqrt{202} \approx 14.2
⟹ about 9.9 and 14.2
Summary
  1. Component form moves the vector's tail to the origin, unchanged otherwise.
  2. ⟨x, y⟩ = ⟨x₂ − x₁, y₂ − y₁⟩, always end minus start.
  3. Round brackets mark points; angled brackets mark vectors.
  4. Length comes from Pythagoras: √(Δx² + Δy²).
  5. Squaring clears the signs, so a length is always positive.