Why Transformations Matter: Moving A Shape

A city park is drawn on a coordinate grid as a triangle with three corner points. The city wants a second park with the exact same shape and size, just placed somewhere else on the map. No stretching. No turning. No flipping. Just move it.

If you can describe that move precisely, you can copy designs on blueprints, shift icons in computer graphics, and track motion in games without changing what an object is. The main question is simple. How do you move a shape on a grid while keeping every distance and angle the same?

Coordinates as anchors

A polygon on a coordinate grid is held in place by its corner points. Each corner is a vertex, and each vertex sits at one exact location on the grid. That location is written as an ordered pair. You read it by walking from the origin. Go left or right to the correct xx value, then go up or down to the correct yy value.

Once you know the coordinates of all the vertices, you know the whole shape. The sides are just the straight segments connecting those points in order.

A common mistake is to swap the numbers and read (x,y)(x,y) as (y,x)(y,x). It feels reasonable because both are just numbers, but it changes the point. For example, (2,5)(2,5) is not the same place as (5,2)(5,2). One is farther up than right, the other is farther right than up, so the shape built from those points will land in a different part of the grid.

Look at the polygon and name each vertex by its coordinates, then trace the outline those points create.

Translation is a slide

Now imagine picking up the entire shape and sliding it. Every vertex moves in the same way. If one corner goes 3 units to the right and 2 units down, then all corners go 3 units to the right and 2 units down. That kind of motion is called a translation.

Here is what that looks like with one point. Suppose a vertex starts at (1,4)(1,4). Slide the shape 3 units right and 2 units down.

Start with the horizontal move. Right means add 3 to the xx coordinate.

x:11+3=4x:1\rightarrow 1+3=4

Then do the vertical move. Down means subtract 2 from the yy coordinate.

y:442=2y:4\rightarrow 4-2=2

So the point lands at (4,2)(4,2). The key is that the rule is the same for every vertex. That is what guarantees the shape does not change.

A misconception to watch for is moving points toward the origin or away from it by the same amount. That kind of move depends on where the point started, so different vertices would shift differently and the shape could distort. Translations do not care where you are. They only care how far you slide.

Slide a triangle around and watch how each vertex changes by the same horizontal and vertical amounts.

Sign up for free

Generate custom courses on any topic — with hands-on practice, AI guidance, and visuals built in.

Already have an account?