RemNote Community
Community

Introduction to Translation

Understand the definition and distance‑preserving properties of translations, their algebraic structure and matrix representation, and their importance in geometry and computer graphics.
Summary
Read Summary
Flashcards
Save Flashcards
Quiz
Take Quiz

Quick Practice

How does a translation affect every point of a geometric figure?
1 of 13

Summary

Understanding Translations Introduction A translation is one of the most fundamental transformations in geometry and linear algebra. It's a rigid motion—meaning it preserves the shape and size of figures—that moves every point of a figure the same distance in the same direction. Understanding translations is essential for studying geometry, linear algebra, and computer graphics. Basic Concept: How Translations Work A translation moves every point in a plane (or space) by the same amount in the same direction. The motion is completely described by a translation vector. The Translation Vector In two dimensions, a translation vector is written as $\mathbf{v} = \langle a, b \rangle$, where: $a$ is the horizontal component (displacement in the $x$-direction) $b$ is the vertical component (displacement in the $y$-direction) For example, the vector $\mathbf{v} = \langle 3, -2 \rangle$ means "move 3 units right and 2 units down." The Translation Formula When you translate a point $P = (x, y)$ by vector $\mathbf{v} = \langle a, b \rangle$, you get the image point: $$P' = (x + a, y + b)$$ This comes directly from vector addition—you're adding the components of $\mathbf{v}$ to the coordinates of $P$. Example: If $P = (2, 5)$ and $\mathbf{v} = \langle 3, -2 \rangle$, then $P' = (2 + 3, 5 + (-2)) = (5, 3)$. The Translation Function Mathematicians write this transformation formally as a function $T{\mathbf{v}}: \mathbb{R}^2 \to \mathbb{R}^2$ defined by: $$T{\mathbf{v}}(x, y) = (x + a, y + b)$$ This notation emphasizes that a translation takes every point in the plane and produces a new point according to the vector $\mathbf{v}$. Translations in Three Dimensions The same idea works in 3D space. The translation vector is $\mathbf{v} = \langle a, b, c \rangle$, and the function is: $$T{\mathbf{v}}(x, y, z) = (x + a, y + b, z + c)$$ Distance-Preserving Property: Why Translations Are Rigid Motions The most important property of translations is that they preserve distance. This is what makes a translation a rigid motion. The Distance Preservation Principle For any two points $P$ and $Q$, when you translate both by the same vector $\mathbf{v}$, the distance between the translated points equals the distance between the original points: $$d(T{\mathbf{v}}(P), T{\mathbf{v}}(Q)) = d(P, Q)$$ Why does this matter? This tells us that translations preserve the shape of figures. Nothing gets stretched, shrunk, or distorted—everything just shifts by the same amount. What Stays the Same Because distances are preserved, several properties remain unchanged under translation: Line segment lengths: If a segment has length $\ell$, its translated image also has length $\ell$ Angles: The angle between two intersecting lines is unchanged Areas: Two-dimensional regions have the same area before and after translation Volumes: Three-dimensional solids have the same volume before and after translation Example: A triangle with side lengths 3, 4, and 5 units, when translated, produces an image triangle with the exact same side lengths and the same angles. The two triangles are congruent. Orientation-Preserving Property A translation preserves the orientation of a figure. This means if a figure has a clockwise orientation (or counter-clockwise), its translated image has the same orientation. This distinguishes translations from other transformations like reflections, which reverse orientation. How Translations Combine: The Algebraic Structure One powerful aspect of translations is how they combine with each other. Composition of Translations If you first translate by vector $\mathbf{w}$, then translate the result by vector $\mathbf{v}$, you get the same final result as if you had just translated by the single vector $\mathbf{v} + \mathbf{w}$ from the start: $$T{\mathbf{v}} \circ T{\mathbf{w}} = T{\mathbf{v} + \mathbf{w}}$$ This works because vector addition is involved at each step. Translations Are Commutative Unlike some transformations, the order doesn't matter. Translating by $\mathbf{v}$ then $\mathbf{w}$ gives the same result as translating by $\mathbf{w}$ then $\mathbf{v}$: $$T{\mathbf{v}} \circ T{\mathbf{w}} = T{\mathbf{w}} \circ T{\mathbf{v}}$$ Group Structure The set of all translations forms a group under composition: Closure: Composing two translations gives another translation Associativity: $(T{\mathbf{u}} \circ T{\mathbf{v}}) \circ T{\mathbf{w}} = T{\mathbf{u}} \circ (T{\mathbf{v}} \circ T{\mathbf{w}})$ Identity element: The zero vector $\mathbf{0} = \langle 0, 0 \rangle$ (or $\langle 0, 0, 0 \rangle$ in 3D) produces the identity transformation that leaves all points unchanged Inverse element: Every translation by $\mathbf{v}$ has an inverse translation by $-\mathbf{v}$ that undoes it Representing Translations Using Matrices Why Matrix Representation Matters In linear algebra and computer graphics, it's useful to represent transformations as matrices. This allows complex sequences of transformations to be combined into single matrix multiplications. A Key Issue: Translations Aren't Linear Maps Here's something important to understand: a translation is not a linear transformation in the strict linear algebra sense. Why? Because linear transformations must send the origin to the origin, and translations move the origin to a different point unless $\mathbf{v} = \mathbf{0}$. Homogeneous Coordinates: The Solution Computer scientists and engineers solved this problem using homogeneous coordinates. Instead of representing a point $(x, y)$ as a 2D vector, you augment it to a 3D vector by adding a 1 at the end: $$(x, y) \longrightarrow \begin{bmatrix} x \\ y \\ 1 \end{bmatrix}$$ With this representation, a translation by vector $\langle a, b \rangle$ can be expressed using a $3 \times 3$ matrix: $$\begin{bmatrix} 1 & 0 & a \\ 0 & 1 & b \\ 0 & 0 & 1 \end{bmatrix}$$ To translate a point, you multiply: $$\begin{bmatrix} 1 & 0 & a \\ 0 & 1 & b \\ 0 & 0 & 1 \end{bmatrix} \begin{bmatrix} x \\ y \\ 1 \end{bmatrix} = \begin{bmatrix} x + a \\ y + b \\ 1 \end{bmatrix}$$ The result's first two components give the translated coordinates. Why This Matters in Practice Homogeneous coordinate matrices are powerful because they allow translations to be combined with other transformations (like rotations and scalings) through simple matrix multiplication. This is why graphics engines and robotics systems use this representation—one matrix can encode an entire sequence of transformations. <extrainfo> Three-Dimensional Homogeneous Coordinates In 3D, the same idea extends to $4 \times 4$ matrices. A point $(x, y, z)$ becomes $\begin{bmatrix} x \\ y \\ z \\ 1 \end{bmatrix}$, and a translation by $\langle a, b, c \rangle$ uses the matrix: $$\begin{bmatrix} 1 & 0 & 0 & a \\ 0 & 1 & 0 & b \\ 0 & 0 & 1 & c \\ 0 & 0 & 0 & 1 \end{bmatrix}$$ </extrainfo> Translations and Congruence One of the most practical uses of translations is proving that figures are congruent. Two figures are congruent if one can be transformed into the other through rigid motions (translations, rotations, and/or reflections). Since translations preserve all distances and angles, if you can translate Figure A onto Figure B, you've proven they're congruent. Example: To prove two triangles are congruent, you might translate one triangle so that one of its vertices coincides with the corresponding vertex of the second triangle. Then, if the triangles overlap perfectly after translation (possibly with rotation and reflection), you've confirmed congruence. This approach is fundamental to solving geometry problems and writing formal proofs.
Flashcards
How does a translation affect every point of a geometric figure?
It moves every point the same distance in the same direction.
If a point $P(x, y)$ is translated by vector $\mathbf{v} = \langle a, b \rangle$, what are the coordinates of the new point $P'$?
$P' = (x + a, y + b)$.
What is the general formula for a translation function $T{\mathbf{v}}(x, y)$ in $\mathbb{R}^2$?
$T{\mathbf{v}}(x, y) = (x + a, y + b)$.
What is the translation function $T{\mathbf{v}}(x, y, z)$ in three-dimensional space for a vector $\mathbf{v} = \langle a, b, c \rangle$?
$T{\mathbf{v}}(x, y, z) = (x + a, y + b, z + c)$.
How does a translation affect the distance between any two points $P$ and $Q$?
The distance remains unchanged ($d(T{\mathbf{v}}(P), T{\mathbf{v}}(Q)) = d(P, Q)$).
Does a translation preserve the clockwise or counter-clockwise orientation of a figure?
Yes, it maintains the orientation.
What is the result of two successive translations by vectors $\mathbf{v}$ and $\mathbf{w}$?
A single translation by the sum vector $\mathbf{v} + \mathbf{w}$.
In the group of translations under composition, what serves as the identity element?
The zero vector $\langle 0, 0 \rangle$ (or $\langle 0, 0, 0 \rangle$ in 3D).
Why is a translation specifically not considered a linear map in linear algebra?
Because it does not send the origin to the origin.
What $3 \times 3$ matrix represents a translation by $\langle a, b \rangle$ using homogeneous coordinates?
$$ \begin{bmatrix} 1 & 0 & a \\ 0 & 1 & b \\ 0 & 0 & 1 \end{bmatrix} $$
What is the primary advantage of using homogeneous coordinate matrices for translations in computer graphics?
They allow translations to be combined with rotations and scalings in a single matrix product.
What are the three fundamental rigid motions in introductory geometry?
Translations Rotations Reflections
Why does proving a figure has been translated help prove that two figures are congruent?
Because translations preserve all distances and angles.

Quiz

In the translation vector $\mathbf v = \langle a,b\rangle$, what do $a$ and $b$ represent?
1 of 10
Key Concepts
Translation Concepts
Translation (geometry)
Translation vector
Translation group
Translation matrix
Transformations and Properties
Rigid motion
Isometry (distance‑preserving transformation)
Orientation‑preserving transformation
Affine transformation
Coordinate Systems
Homogeneous coordinates