Skip to content
Medium

Column Vector Notation and Components

Simple Explanation

A two-dimensional vector can be written in "column" (or component) form, showing exactly how far it goes horizontally and vertically: v = (x, y), where x is the horizontal component and y is the vertical component.

Why Do We Need It?

Component form turns vector geometry into pure arithmetic β€” instead of drawing arrows, vectors can be added, subtracted, and scaled just by combining their components directly.

See It

Vector v = (5, 3), broken into its components
vx = 5y = 3O(5, 3)

An arrow from the origin to the point (5,3), with a dashed horizontal segment of length 5 and a dashed vertical segment of length 3 showing the components

Worked Example

Write a vector in column (component) form

Write the vector that goes from the origin O to the point (5, 3) in column vector form, and state its horizontal and vertical components.

    Why Does This Work?

    Component form works because any 2D displacement can be uniquely broken into a purely horizontal step and a purely vertical step (like walking east, then north, to reach the same destination) β€” this is really just the Triangle Law applied to two perpendicular direction vectors.

    Real-Life Example

    Joystick input in a video game

    A game processes a joystick tilt as an (x, y) column vector each frame.

    The x-component controls how far the character moves left/right, and the y-component controls up/down β€” exactly the horizontal and vertical components of a vector.

    Practice

    A vector goes from the origin to the point (βˆ’3, 6). State its y-component.

    Medium

    Common mistake

    Swapping the order of the components (writing (y, x) instead of (x, y)) β€” the convention is always horizontal component first, then vertical.

    Quick Review

    • v = (x, y): x is the horizontal component, y is the vertical component.
    • Component form turns vector geometry into simple arithmetic.
    • Always write the horizontal component first, vertical second.