8.2 Coordinate Operations of Vectors

Key Takeaways

  • In an orthonormal coordinate system with standard basis $(\vec{i}, \vec{j})$, any vector $\vec{a} = x\vec{i} + y\vec{j}$ is uniquely identified by the ordered pair $(x, y)$.
  • Vector addition, subtraction, and scalar multiplication correspond to component-wise algebraic operations: $\vec{a} \pm \vec{b} = (x_1 \pm x_2, y_1 \pm y_2)$ and $\lambda \vec{a} = (\lambda x, \lambda y)$.
  • The coordinate criterion for vector parallelism (collinearity) is $x_1 y_2 - x_2 y_1 = 0$, derived from cross-multiplying proportional components.
  • Directed line segment $\vec{AB}$ from $A(x_1, y_1)$ to $B(x_2, y_2)$ has coordinates $(x_2 - x_1, y_2 - y_1)$, with magnitude $|\vec{AB}| = \sqrt{(x_2 - x_1)^2 + (y_2 - y_1)^2}$.
  • The section formula locates point $P$ dividing segment $AB$ in ratio $\lambda$ ($\vec{AP} = \lambda \vec{PB}$) at $P\left(\frac{x_1 + \lambda x_2}{1 + \lambda}, \frac{y_1 + \lambda y_2}{1 + \lambda}\right)$, specializing to the midpoint formula when $\lambda = 1$.
Last updated: July 2026

8.2 Coordinate Operations of Vectors

Coordinate operations translate geometric vector concepts into algebraic manipulations. By choosing an orthogonal coordinate system, plane vector operations reduce to arithmetic on component pairs, transforming complex geometric proofs into linear algebraic computations.


1. Cartesian Coordinate System and Vector Coordinates

1.1 Orthonormal Basis

In a Cartesian coordinate system $Oxy$, let $\vec{i}$ and $\vec{j}$ denote the unit vectors along the positive $x$-axis and positive $y$-axis, respectively:

  • $|\vec{i}| = 1$, $|\vec{j}| = 1$, and $\vec{i} \perp \vec{j}$.
  • The set ${\vec{i}, \vec{j}}$ forms a standard orthonormal basis for the plane.

1.2 Vector Coordinate Representation

By the Fundamental Theorem of Plane Vectors, any vector $\vec{a}$ in the plane can be uniquely expressed as: a=xi+yj\vec{a} = x\vec{i} + y\vec{j} The ordered pair of real numbers $(x, y)$ is called the coordinate representation of vector $\vec{a}$, written as $\vec{a} = (x, y)$.

  • $x$ is the $x$-component (horizontal projection).
  • $y$ is the $y$-component (vertical projection).
  • The origin position vector $\vec{OP}$ corresponding to point $P(x, y)$ has coordinates $\vec{OP} = (x, y)$.

1.3 Segment Vector Coordinates

Given initial point $A(x_1, y_1)$ and terminal point $B(x_2, y_2)$, the vector $\vec{AB}$ is computed as terminal point coordinates minus initial point coordinates: AB=OBOA=(x2,y2)(x1,y1)=(x2x1,y2y1)\vec{AB} = \vec{OB} - \vec{OA} = (x_2, y_2) - (x_1, y_1) = (x_2 - x_1, y_2 - y_1)

Vector Magnitude in Coordinates

The magnitude of vector $\vec{a} = (x, y)$ is given by the Pythagorean formula: a=x2+y2|\vec{a}| = \sqrt{x^2 + y^2} For directed segment $\vec{AB}$ with endpoints $A(x_1, y_1)$ and $B(x_2, y_2)$: AB=(x2x1)2+(y2y1)2|\vec{AB}| = \sqrt{(x_2 - x_1)^2 + (y_2 - y_1)^2}


2. Algebraic Operations in Coordinate Form

Let $\vec{a} = (x_1, y_1)$, $\vec{b} = (x_2, y_2)$, and scalar $\lambda \in \mathbb{R}$.

OperationGeometric ConceptCoordinate Formula
Addition$\vec{a} + \vec{b}$$(x_1 + x_2, y_1 + y_2)$
Subtraction$\vec{a} - \vec{b}$$(x_1 - x_2, y_1 - y_2)$
Scalar Multiplication$\lambda \vec{a}$$(\lambda x_1, \lambda y_1)$
Linear Combination$\alpha \vec{a} + \beta \vec{b}$$(\alpha x_1 + \beta x_2, \alpha y_1 + \beta y_2)$

3. Coordinate Criterion for Parallel (Collinear) Vectors

Theorem (Coordinate Parallelism Criterion): Let $\vec{a} = (x_1, y_1)$ and $\vec{b} = (x_2, y_2)$. The vectors $\vec{a}$ and $\vec{b}$ are parallel ((\vec{a} \parallel \vec{b})) if and only if: x1y2x2y1=0x_1 y_2 - x_2 y_1 = 0

Derivation:

  1. If $\vec{a} = \vec{0} = (0,0)$, then $0 \cdot y_2 - x_2 \cdot 0 = 0$ holds trivially, and $\vec{0} \parallel \vec{b}$ is true.
  2. If $\vec{a} \neq \vec{0}$, then $\vec{a} \parallel \vec{b} \iff \exists \lambda \in \mathbb{R}$ such that $\vec{b} = \lambda \vec{a}$.
  3. In coordinates: $(x_2, y_2) = (\lambda x_1, \lambda y_1) \implies x_2 = \lambda x_1$ and $y_2 = \lambda y_1$.
  4. Eliminating $\lambda$: x1y2=x1(λy1)=λx1y1=(λx1)y1=x2y1    x1y2x2y1=0x_1 y_2 = x_1 (\lambda y_1) = \lambda x_1 y_1 = (\lambda x_1) y_1 = x_2 y_1 \implies x_1 y_2 - x_2 y_1 = 0

Memory Trick (Cross Multiplication): Multiply the outer components and inner components: $\text{Outer} - \text{Inner} = x_1 y_2 - x_2 y_1 = 0$.


4. Division of Line Segments and Centroid Formulas

4.1 Section Formula (Internal/External Division)

Let points $A(x_1, y_1)$ and $B(x_2, y_2)$ define a segment. If point $P(x, y)$ divides the directed segment $AB$ such that $\vec{AP} = \lambda \vec{PB}$ ($,\lambda \neq -1,$): x=x1+λx21+λ,y=y1+λy21+λx = \frac{x_1 + \lambda x_2}{1 + \lambda}, \quad y = \frac{y_1 + \lambda y_2}{1 + \lambda}

  • If $\lambda > 0$, $P$ is an internal division point.
  • If $-1 < \lambda < 0$ or $\lambda < -1$, $P$ is an external division point.

4.2 Midpoint Formula

When $\lambda = 1$, $P$ is the midpoint $M(x_M, y_M)$ of $AB$: xM=x1+x22,yM=y1+y22x_M = \frac{x_1 + x_2}{2}, \quad y_M = \frac{y_1 + y_2}{2} In vector form: $\vec{OM} = \frac{1}{2}(\vec{OA} + \vec{OB})$.

4.3 Centroid Formula of a Triangle

For $\triangle ABC$ with vertices $A(x_A, y_A)$, $B(x_B, y_B)$, $C(x_C, y_C)$, the centroid $G(x_G, y_G)$ satisfies: xG=xA+xB+xC3,yG=yA+yB+yC3x_G = \frac{x_A + x_B + x_C}{3}, \quad y_G = \frac{y_A + y_B + y_C}{3} Vector characteristic equation of centroid $G$: GA+GB+GC=0    OG=13(OA+OB+OC)\vec{GA} + \vec{GB} + \vec{GC} = \vec{0} \quad \iff \quad \vec{OG} = \frac{1}{3}(\vec{OA} + \vec{OB} + \vec{OC})


5. Worked Gaokao Exam Examples

Worked Example 1: Parallel Vectors and Parameters

Problem: Given vectors $\vec{a} = (1, m)$ and $\vec{b} = (m - 2, 3)$ where $m \in \mathbb{R}$.

  1. Find the value(s) of $m$ such that $\vec{a} \parallel \vec{b}$.
  2. For each such $m$, determine whether $\vec{a}$ and $\vec{b}$ have the same or opposite direction.

Solution:

  1. Apply the coordinate parallelism criterion $x_1 y_2 - x_2 y_1 = 0$: 13m(m2)=0    3m2+2m=0    m22m3=01 \cdot 3 - m(m - 2) = 0 \implies 3 - m^2 + 2m = 0 \implies m^2 - 2m - 3 = 0
  2. Factor the quadratic equation: (m3)(m+1)=0    m=3orm=1(m - 3)(m + 1) = 0 \implies m = 3 \quad \text{or} \quad m = -1
  3. Case 1: $m = 3$
    • $\vec{a} = (1, 3)$ and $\vec{b} = (3 - 2, 3) = (1, 3)$.
    • Here $\vec{b} = 1 \cdot \vec{a}$, so $\lambda = 1 > 0$. Vectors $\vec{a}$ and $\vec{b}$ are codirectional (same direction).
  4. Case 2: $m = -1$
    • $\vec{a} = (1, -1)$ and $\vec{b} = (-1 - 2, 3) = (-3, 3)$.
    • Here $\vec{b} = -3 \cdot \vec{a}$, so $\lambda = -3 < 0$. Vectors $\vec{a}$ and $\vec{b}$ are antidirectional (opposite direction).

Loading diagram...
Cartesian Vector Coordinates and Parallel Condition
Test Your Knowledge

Given vectors $\vec{a} = (2, -1)$ and $\vec{b} = (-4, k)$. If $\vec{a} \parallel \vec{b}$, what is the value of scalar $k$?

A
B
C
D
Test Your Knowledge

Points $A(1, 3)$ and $B(5, -1)$ are given in a Cartesian plane. Point $P$ lies on segment $AB$ such that $\vec{AP} = 3 \vec{PB}$. What are the coordinates of point $P$?

A
B
C
D
Test Your Knowledge

Given vectors $\vec{a} = (1, 2)$ and $\vec{b} = (-3, 1)$, compute the coordinate representation of vector $\vec{c} = 2\vec{a} - 3\vec{b}$.

A
B
C
D