Vector Analytic Geometry

Vector analytic geometry integrates the algebraic properties of vectors with the geometric framework of the Cartesian coordinate system. While standard analytic geometry often relies on slopes, distances, and algebraic equations, vector geometry provides a more robust and elegant method for describing spatial relationships, especially in three dimensions. By defining points, lines, and planes using directed line segments (vectors), we can easily compute angles, areas, and volumes, and define complex physical phenomena like forces and velocities.

Vectors in 2D and 3D Space

A vector is a mathematical entity that has both a strictly defined magnitude (length) and a specific direction. In contrast, a scalar is a quantity completely described by its magnitude alone (like temperature or mass). In a coordinate system, a vector can be represented by a directed line segment from an initial point AA to a terminal point BB, denoted as AB\vec{AB}.

Vector Representation

  • Component Form (2D): A vector v\vec{v} starting at the origin and ending at (vx,vy)(v_x, v_y) is written as v=vx,vy\vec{v} = \langle v_x, v_y \rangle.
  • Component Form (3D): A vector in space is written as v=vx,vy,vz\vec{v} = \langle v_x, v_y, v_z \rangle.
  • Standard Basis Vectors: Vectors can also be expressed using the fundamental unit vectors i\mathbf{i}, j\mathbf{j}, and k\mathbf{k} pointing strictly along the positive x, y, and z axes respectively: v=vxi+vyj+vzk\vec{v} = v_x\mathbf{i} + v_y\mathbf{j} + v_z\mathbf{k}.

Vector Magnitude

Calculates the absolute geometric length of a vector.

v=vx2+vy2+vz2|\vec{v}| = \sqrt{v_x^2 + v_y^2 + v_z^2}

Variables

SymbolDescriptionUnit
v|\vec{v}|Magnitude of vector v-
vx,vy,vzv_x, v_y, v_zScalar components of the vector-

Concept

A unit vector is a vector that has an exact magnitude of 1. Any non-zero vector v\vec{v} can be normalized into a unit vector u\mathbf{u} pointing in the exact same direction by simply dividing the vector by its own magnitude: u=vv\mathbf{u} = \frac{\vec{v}}{|\vec{v}|}.

Vector Addition and Scalar Multiplication

Vectors can be combined algebraically by adding their respective components, or scaled by multiplying them by a scalar number.

Basic Vector Operations

  • Addition: To add two vectors u=ux,uy,uz\vec{u} = \langle u_x, u_y, u_z \rangle and v=vx,vy,vz\vec{v} = \langle v_x, v_y, v_z \rangle, simply add their corresponding components: u+v=ux+vx,uy+vy,uz+vz\vec{u} + \vec{v} = \langle u_x + v_x, u_y + v_y, u_z + v_z \rangle. Geometrically, this represents the "tip-to-tail" or parallelogram rule.
  • Scalar Multiplication: Multiplying a vector v\vec{v} by a scalar constant cc scales every component: cv=cvx,cvy,cvzc\vec{v} = \langle cv_x, cv_y, cv_z \rangle. If cc is negative, the vector perfectly reverses its direction.

The Dot Product (Scalar Product)

The dot product is a fundamental algebraic operation that takes two equal-length sequences of coordinate numbers (two vectors) and returns a single, strictly scalar number. It geometrically measures the extent to which two vectors point in the exact same direction.

Dot Product Formula

Calculates the scalar dot product of two vectors.

uv=(ux)(vx)+(uy)(vy)+(uz)(vz)\vec{u} \cdot \vec{v} = (u_x)(v_x) + (u_y)(v_y) + (u_z)(v_z)

Variables

SymbolDescriptionUnit
uv\vec{u} \cdot \vec{v}Dot product result (a scalar)-
ux,uy,uzu_x, u_y, u_zComponents of vector u-
vx,vy,vzv_x, v_y, v_zComponents of vector v-

Concept

Geometrically, the dot product is inherently linked to the angle θ\theta precisely between the two vectors.

Geometric Dot Product

Relates the dot product to the angle between vectors.

uv=uvcosθ\vec{u} \cdot \vec{v} = |\vec{u}| |\vec{v}| \cos \theta

Variables

SymbolDescriptionUnit
θ\thetaAngle between the two vectors (0 ≤ θ ≤ π)-

Orthogonal Vectors

Two strictly non-zero vectors are completely perpendicular (orthogonal) if and only if their dot product evaluates identically to zero (uv=0\vec{u} \cdot \vec{v} = 0). This occurs because cos(90)=0\cos(90^\circ) = 0.

The Cross Product (Vector Product)

Unlike the dot product which yields a scalar, the cross product is strictly applicable only in 3D space and yields a completely new vector that is perfectly orthogonal (perpendicular) to both of the original vectors. Its direction is determined strictly by the standard right-hand rule.

Cross Product Formula

Calculates a perpendicular vector via the determinant method.

u×v=(uyvzuzvy),(uxvzuzvx),(uxvyuyvx)\vec{u} \times \vec{v} = \langle (u_y v_z - u_z v_y), -(u_x v_z - u_z v_x), (u_x v_y - u_y v_x) \rangle

Variables

SymbolDescriptionUnit
u×v\vec{u} \times \vec{v}The resulting orthogonal vector-

Concept

The absolute geometric magnitude of the resulting cross product vector represents the exact physical area of the parallelogram strictly spanned by the two original vectors.

Magnitude of the Cross Product

Relates the cross product magnitude to the sine of the angle.

u×v=uvsinθ|\vec{u} \times \vec{v}| = |\vec{u}| |\vec{v}| \sin \theta

Variables

SymbolDescriptionUnit
u×v|\vec{u} \times \vec{v}|Area of the spanned parallelogram-
θ\thetaAngle between the vectors-

Note

If two non-zero vectors are perfectly parallel or perfectly anti-parallel, their strict cross product will identically equal the zero vector 0\vec{0}.

Vector Equations of Lines and Planes

Vectors provide the most direct and mathematically elegant way to rigorously define physical lines and planes in 3D space.

Vector Equations

  • Equation of a Line: A line in space passing strictly through a known position vector r0\vec{r_0} and running perfectly parallel to a direction vector d\vec{d} is defined exactly by: r(t)=r0+td\vec{r}(t) = \vec{r_0} + t\vec{d}, where tt is any scalar parameter.
  • Equation of a Plane: A flat plane in space passing completely through a known point with position vector r0\vec{r_0} and having a perfectly perpendicular normal vector n\vec{n} consists strictly of all position vectors r\vec{r} satisfying the exact orthogonality condition: n(rr0)=0\vec{n} \cdot (\vec{r} - \vec{r_0}) = 0.
Key Takeaways
  • Vectors: Defined mathematically by both magnitude and direction, usually written in component form x,y,z\langle x, y, z \rangle.
  • Dot Product: Yields a scalar value. Used primarily to find angles between vectors and rigorously test for perpendicularity (uv=0\vec{u} \cdot \vec{v} = 0).
  • Cross Product: Yields a perpendicular vector strictly in 3D space. Used to find normal vectors and calculate the exact area of parallelograms and triangles.
  • Lines and Planes: Easily defined parametrically using initial position vectors and either parallel direction vectors (for lines) or orthogonal normal vectors (for planes).