Position Vector

Learn what a position vector is, how it represents the location of a point, and how to write it in coordinate form using simple explanations and examples.

1. Meaning of a Position Vector

A position vector locates a point in space by describing its distance and direction from the origin. Instead of giving coordinates directly, the position vector tells how far to move along each axis starting from the origin.

If a point \(P(x, y)\) lies in the plane, the position vector of P is the vector drawn from the origin O to the point P.

It is written as:

\[ \vec{OP} = \langle x, y \rangle \]

In three dimensions, for a point \(P(x, y, z)\), the position vector is:

\[ \vec{OP} = \langle x, y, z \rangle \]

2. How a Position Vector Represents a Point

The coordinates of a point and its position vector contain the same information. The difference is only in how we think about them:

  • Coordinates tell where the point lies.
  • The position vector tells how to reach the point from the origin.

This makes position vectors useful in geometry and physics, where direction and magnitude matter.

2.1. Example

If \(P(3, 4)\), then:

\[ \vec{OP} = \langle 3, 4 \rangle \]

The magnitude of this vector gives the distance of P from the origin:

\[ |\vec{OP}| = 5 \]

3. Position Vector in 3D

For a point in space, the position vector includes all three components.

If \(P(2, -1, 5)\), then:

\[ \vec{OP} = \langle 2, -1, 5 \rangle \]

Its magnitude is:

\[ |\vec{OP}| = \sqrt{2^2 + (-1)^2 + 5^2} = \sqrt{30} \]

4. Vector Between Two Points

The position vector also helps find the vector from one point to another. If two points are:

\[ A(x_1, y_1, z_1), \; B(x_2, y_2, z_2) \]

Then the vector \(\overrightarrow{AB}\) is:

\[ \overrightarrow{AB} = \langle x_2 - x_1,\; y_2 - y_1,\; z_2 - z_1 \rangle \]

This is formed by subtracting the position vector of A from the position vector of B.

4.1. Example

Let \(A(1, 2, 3)\) and \(B(4, 6, 9)\).

Position vectors:

\[ \vec{OA} = \langle 1, 2, 3 \rangle,\quad \vec{OB} = \langle 4, 6, 9 \rangle \]

Then:

\[ \overrightarrow{AB} = \vec{OB} - \vec{OA} = \langle 3, 4, 6 \rangle \]

5. Using Position Vectors to Describe Geometry

Position vectors make geometric ideas easier to express. For example:

  • The midpoint of AB can be written using position vectors.
  • The direction of a line can be given by subtracting position vectors.
  • Distances can be computed as magnitudes of difference vectors.

5.1. Midpoint Example

If two points are A and B with position vectors \(\vec{a}\) and \(\vec{b}\), the midpoint M has position vector:

\[ \vec{m} = \dfrac{\vec{a} + \vec{b}}{2} \]