Book A Free Math Class

# Geometric Transformations: Definition, Types and Examples

[Geometry](/content/tag/geometry/index.html)

BT

[Bhanzu Team](/content/authors/bhanzu-team/index.html) Last updated on June 9, 2026 9 min read

Every frame of every video game is drawn by sliding, rotating, and reflecting triangles.

Not metaphorically. Literally.

The 3D world of a video game exists as a set of coordinates — vertices of triangles. The GPU reads those coordinates, applies a sequence of geometric transformations to each one, and projects the result onto your 2D screen sixty times per second. The dragon swooping from the left, the camera rotating to follow it, the character's shadow reflecting off the floor — every one of those effects is a transformation applied to a coordinate.

Geometric transformations are rules that move, flip, turn, or resize a shape while preserving its essential properties.

**Geometric transformations** are operations that change the position, orientation, or size of a figure on a coordinate plane. There are four main types: translation (sliding), reflection (flipping), rotation (turning), and dilation (scaling). The first three — translation, reflection, and rotation — are **rigid transformations** (also called isometries): they preserve both size and shape. Dilation changes size but preserves shape.

## Different Types of Image Transformation Using Geometric Transformation

### Translation — Sliding Without Turning

A **translation** moves every point of a figure the same distance in the same direction. The shape does not rotate or flip — it slides.

If you translate a point (x,y) by a units horizontally and b units vertically, the new coordinates are:

\[(x,y) \to (x + a, y + b)\]

A positive a moves right; negative a moves left. A positive b moves up; negative b moves down.

### Worked example

Translate triangle ABC with vertices A(1,2), B(3,2), C(2,4) by the rule \[(x,y) \to (x+4,y−1)\].

1. A(1,2)→A′(5,1)

2. B(3,2)→B′(7,1)

3. C(2,4)→C′(6,3)

The triangle shifts 4 right and 1 down. Size and shape are unchanged.

### Reflection — Flipping Across A Line

A **reflection** flips a figure across a line called the line of reflection. Every point of the figure maps to a point on the opposite side of the line, at the same perpendicular distance from it.

Three most common reflection rules:

| Line of reflection | Coordinate rule |
| --- | --- |
| x-axis | \[(x,y) \to (x,−y)\] |
| y-axis | \[(x,y) \to (−x,y)\] |
| Line y=x | \[(x,y) \to (y,x)\] |

The reflected image and the original are congruent — same size, same shape. But if the original shape is not symmetric, the image will appear "flipped" or mirrored.

### Worked example

Reflect point P(3,−2) across the x-axis.

Using the rule \[(x,y) \to (x,−y)\]:

P(3,−2)→P′(3,2)

The x-coordinate stays the same; the y-coordinate changes sign. The point moves from below the x-axis to above it, at the same horizontal position.

### Rotation — Turning Around A Centre Point

A **rotation** turns every point of a figure by a specific angle about a fixed point called the centre of rotation. The distance from each point to the centre stays the same — only the direction changes.

Positive angles rotate counterclockwise (CCW); negative angles rotate clockwise (CW).

The standard rotation rules about the origin (0,0):

| Rotation | Coordinate rule |
| --- | --- |
| 90° CCW (= 270° CW) | \[(x,y) \to (−y,x)\] |
| 180° (same either direction) | \[(x,y) \to (−x,−y)\] |
| 270° CCW (= 90° CW) | \[(x,y) \to (y,−x)\] |

### Worked example

Rotate point Q(4,1) by 90° counterclockwise about the origin.

Using the rule \[(x,y) \to (−y,x)\]:

Q(4,1)→Q′(−1,4)

### Dilation — Scaling By A Factor

A **dilation** scales a figure by a scale factor k from a fixed point called the centre of dilation. If k > 1, the figure enlarges. If 0 < k < 1, it shrinks. If k < 0, the image also flips.

For dilation from the origin:

\[(x,y) \to (kx, ky)\]

### Worked example

Dilate point R(2,3) by scale factor k=3 from the origin.

R(2,3)→R′(6,9)

## Why Geometric Transformations Exist — The Revolution Felix Klein Started

In the 1800s, mathematicians were in a crisis. New geometries were emerging — hyperbolic geometry, projective geometry, spherical geometry — and no one knew how they related to each other.

Felix Klein stood up at the University of Erlangen and delivered a lecture that reshaped the field entirely. His idea, known as the [Erlangen Programme](https://en.wikipedia.org/wiki/Erlangen_program), posited that every geometry is defined by its transformations. Euclidean geometry studies properties that survive translation, rotation, and reflection.

The broader tradition runs deeper. [Leonhard Euler](https://mathshistory.st-andrews.ac.uk/Biographies/Euler/) was among the first to formalise rotation in three dimensions — his theorem on rotation (1775) showed that any rotation in 3D space can be described by a single axis and angle.

## Common Mistakes With Geometric Transformations

### **Mistake 1: Rotating clockwise when counterclockwise is required (or vice versa)**

**Where it slips in:** Rotation problems where the direction is not explicitly given. Students often default to clockwise.

**Don't do this:**  Apply the 90° CCW rule \[(x,y) \to (−y,x)\] when 90° CW is specified — this will give the wrong image.

**The correct way:** For 90° CW, the rule is \[(x,y) \to (y,−x)\].

### **Mistake 2: Confusing which coordinate changes sign in a reflection**

**Where it slips in:** Reflection across the x-axis versus the y-axis.

**Don't do this:** When reflecting across the x-axis, do not apply  \[(x,y) \to (−x,y)\].

**The correct way:** The axis you cross is the coordinate that flips: Reflecting across the x-axis means x stays the same, y changes sign \[(x,y)→(x,−y)\].

### **Mistake 3: Assuming dilation is the same type of transformation as the other three**

**Where it slips in:** Confusing dilation with rigid transformations.

**Don't do this:** List dilation alongside translation, rotation, and reflection as rigid transformations.

**The correct way:** Dilation is non-rigid — it preserves shape (angles) but not size (distances).

## Rigid vs. Non-Rigid Transformations — A Summary

| Transformation | Preserves size? | Preserves shape? | Preserves orientation? | Type |
| --- | --- | --- | --- | --- |
| Translation | ✓ Yes | ✓ Yes | ✓ Yes | Rigid (isometry) |
| Reflection | ✓ Yes | ✓ Yes | ✗ No (flipped) | Rigid (isometry) |
| Rotation | ✓ Yes | ✓ Yes | ✓ Yes | Rigid (isometry) |
| Dilation | ✗ No | ✓ Yes | ✓ Yes (unless k < 0) | Non-rigid (similarity) |

## Next Steps

Start with translation — apply \[(x,y) \to (x−3,y+5)\] to a triangle with vertices (0,0), (4,0), (2,3) and plot both the pre-image and image. Then try a 90° CCW rotation of the same triangle.
