What Is a Sequence of Transformations in Math?

A sequence of transformations is two or more geometric transformations applied one after another to a shape or figure. The first transformation produces a new image, and the second transformation is then performed on that image, not the original. The combined result is itself a single new transformation, which is why it’s also called a composition of transformations.

If you’ve encountered this term in a geometry class, you’re working with the idea that complex movements of shapes on a coordinate plane can be broken into simpler steps: translations (slides), reflections (flips), rotations (turns), and dilations (resizing). A sequence chains these steps together.

How a Sequence Works Step by Step

Think of it like giving someone directions. “Go three blocks north” is one transformation. “Then turn right and go two blocks east” is a second. The final position depends on doing both steps in that exact order. In geometry, the same logic applies. You take a shape, apply the first transformation to get an intermediate image, then apply the second transformation to that intermediate image to get the final result.

For example, say you reflect a triangle over the x-axis, then translate it 4 units to the right. The reflection flips every point’s y-coordinate: (x, y) becomes (x, −y). Then the translation shifts every point of the reflected triangle: (x, −y) becomes (x + 4, −y). The final image is the result of both steps combined.

Why Order Matters

The most important thing to understand about sequences of transformations is that order changes the outcome. Reflecting a shape and then translating it does not produce the same result as translating first and then reflecting. This property has a formal name: composition of transformations is not commutative.

Consider a point at (2, 3). If you reflect it over the x-axis first, you get (2, −3). Then translating 5 units right gives (7, −3). Now reverse the order: translate first to get (7, 3), then reflect over the x-axis to get (7, −3). In this particular case, the results happen to match, but that’s because the translation was purely horizontal and the reflection was over the x-axis, so they didn’t interfere with each other. Change the translation to a vertical shift and the results diverge. A translation of 5 units up followed by a reflection over the x-axis gives a different final point than the reflection followed by the translation.

There are a few exceptions where order doesn’t matter. Two translations can be performed in either order and produce the same result. The same is true for two reflections over the same line, or when one of the transformations does nothing (an identity transformation). But as a general rule, always pay attention to the sequence.

Reading the Notation

In textbooks and on tests, a sequence of transformations uses a small open circle (∘) between the transformations. If you see something written as T ∘ R, this means “apply R first, then apply T.” The notation reads right to left, which trips up a lot of students.

So T ∘ R applied to a point means: first do whatever R says (maybe a reflection), get the new coordinates, then do whatever T says (maybe a translation) to those new coordinates. If you read it left to right instead, you’ll apply the transformations in the wrong order and likely get a different, incorrect answer.

When three transformations are involved, associativity holds. This means S ∘ (T ∘ U) gives the same result as (S ∘ T) ∘ U. Either way, you’re applying U first, then T, then S. You can group the steps however you like as long as you don’t rearrange them.

Common Types of Sequences

A glide reflection is one of the most well-known named sequences. It combines a reflection with a translation that runs parallel to the line of reflection. Footprints in the sand are the classic example: each print is a reflected version of the previous one, shifted forward along the path. This specific pairing of reflection and parallel translation is common enough that it gets its own name in geometry.

Other frequently tested sequences include reflecting over one axis and then another (which produces a rotation around the origin), or performing a rotation followed by a dilation (which scales and spins a figure simultaneously).

Rigid vs. Non-Rigid Sequences

Translations, reflections, and rotations are all rigid motions. They preserve distance between points and angle measures within shapes. When you chain rigid motions together in a sequence, the result is also a rigid motion. The final image is congruent to the original: same size, same shape, just in a different position or orientation.

Dilations are different. A dilation changes the size of a figure while keeping its shape proportional. If your sequence includes a dilation along with rigid motions, the final image will be similar to the original (same shape, same angles) but not congruent (different size).

Working With Coordinate Rules

Each transformation has a coordinate rule you can apply mechanically. A reflection over the x-axis sends (x, y) to (x, −y). A translation shifts coordinates by fixed amounts: (x, y) goes to (x + h, y + k), where h is the horizontal shift and k is the vertical shift. A 90-degree counterclockwise rotation around the origin sends (x, y) to (−y, x).

To execute a sequence, apply these rules one at a time. Start with your original coordinates, run them through the first transformation’s rule, write down the new coordinates, then run those through the second transformation’s rule. For a triangle with three vertices, you’d do this for each vertex separately. The key is to always use the output of the previous step as the input for the next step, never going back to the original coordinates partway through.

Sequences Beyond the Classroom

Sequences of transformations aren’t just a textbook exercise. They’re fundamental to how computers display images. In computer graphics, objects are defined in their own local coordinate system, then placed into a scene using a modeling transformation, then mapped onto your screen using a viewing transformation. Every object you see in a video game or 3D animation has gone through a sequence of transformations to get from its original definition to the pixels on your display.

Your phone camera works this way too. When you move your camera to the left, objects in the frame appear to shift right. When you zoom in, the viewing window shrinks, making objects appear larger. Each of these changes is a transformation, and the final image you see is the result of all of them applied in sequence. The math behind rendering a single frame of a modern video game involves thousands of these compositions happening every fraction of a second.