How to Translate Along a Vector: Step-by-Step

Translating along a vector means sliding every point of a figure the same distance in the same direction, without rotating or resizing it. The process comes down to one simple operation: add the vector’s components to each point’s coordinates. If your point is at (3, 5) and your vector is ⟨2, −4⟩, the new point lands at (5, 1).

What a Translation Vector Tells You

A translation vector has two pieces of information packed into it: how far to move horizontally and how far to move vertically. It’s written in component form as ⟨x, y⟩, where x is the horizontal shift and y is the vertical shift. A positive x moves the figure right, a negative x moves it left. A positive y moves it up, a negative y moves it down.

The vector ⟨4, −2⟩, for example, tells you to shift every point 4 units to the right and 2 units down. The length of the vector (found with the Pythagorean theorem) equals the total distance each point travels. For ⟨4, −2⟩, that distance is √(16 + 4) ≈ 4.47 units. The direction of that line segment is the direction the entire figure slides.

The Step-by-Step Process

Translating a shape along a vector takes three steps:

  • Identify the vector’s components. If you’re given ⟨h, k⟩, then h is the horizontal change and k is the vertical change.
  • Add the components to every vertex. For each point (a, b) in your figure, the new location is (a + h, b + k). Apply this to every vertex individually.
  • Plot and connect. Place the new points on the coordinate plane and draw the translated figure by connecting them in the same order as the original.

That’s it. The shape, size, and orientation stay identical. Only the position changes.

A Worked Example

Suppose you have a triangle with vertices A(1, 3), B(4, 3), and B(2, 7), and you need to translate it along the vector ⟨−3, 2⟩.

For each vertex, add −3 to the x-coordinate and 2 to the y-coordinate:

  • A(1, 3) → A′(1 + (−3), 3 + 2) = A′(−2, 5)
  • B(4, 3) → B′(4 + (−3), 3 + 2) = B′(1, 5)
  • C(2, 7) → C′(2 + (−3), 7 + 2) = C′(−1, 9)

Plot A′, B′, and C′, then connect them. The new triangle is the same shape and size as the original, just shifted 3 units left and 2 units up.

Finding the Vector Between Two Points

Sometimes you aren’t given the vector directly. Instead, you’re told “translate so that point P maps to point Q.” In that case, you build the vector yourself. If P is at (x₁, y₁) and Q is at (x₂, y₂), the translation vector is ⟨x₂ − x₁, y₂ − y₁⟩.

For example, if you need to move a figure so that the point (2, 5) lands on (6, 1), the vector is ⟨6 − 2, 1 − 5⟩ = ⟨4, −4⟩. You then apply that same vector to every other point in the figure.

Translation in Three Dimensions

The same logic extends to 3D. A three-dimensional translation vector looks like ⟨a, b, c⟩, where c handles movement along the z-axis. A point (x, y, z) translates to (x + a, y + b, z + c). Nothing changes about the method; you just have a third component to add.

In computer graphics and game engines, this is often handled with a special 4×4 matrix called a homogeneous transformation matrix, which lets software combine translations with rotations and scaling in a single operation. But the underlying math is identical: each coordinate gets the corresponding vector component added to it.

Common Mistakes to Avoid

The most frequent error is mixing up the sign of the components. A vector ⟨−5, 3⟩ moves left 5 and up 3, not right 5. If you accidentally drop the negative sign on one component, every point in your figure ends up in the wrong quadrant. Always double-check whether each component is positive or negative before you start adding.

Another common mistake is swapping the x and y values. A point translated by ⟨3, 7⟩ that should land at (5, 10) sometimes gets written as (9, 6) because the student added the y-component to the x-coordinate and vice versa. Keep horizontal with horizontal, vertical with vertical.

A third pitfall is translating only some of the points. Every single vertex of the figure needs to move by the same vector. If you forget one vertex or apply a different shift to it, the translated shape will be distorted, which defeats the purpose of a rigid translation. Once you plot the new figure, a quick sanity check is to confirm the side lengths and angles match the original.