Loading...
3+
3
Login

Transformations – Moving and Resizing Shapes

A geometric transformation is a rule that moves, flips, turns, or resizes a shape. The original shape is called the object and the result is the image. Transformations are used in computer graphics, design, robotics, and map projections.

The Four Main Transformations

TransformationWhat It DoesPreserves Size?Preserves Shape?
TranslationSlides the shape in a given directionYesYes
RotationTurns the shape around a fixed pointYesYes
ReflectionFlips the shape over a mirror lineYesYes
EnlargementScales the shape by a scale factorNoYes

Translation

A translation moves every point the same distance in the same direction. It is described by a column vector (a over b), meaning move a units right (negative for left) and b units up (negative for down).

Translate point A(3, 2) by vector (4 over −1).

New position: (3 + 4, 2 + (−1)) = (7, 1).

Rotation

A rotation turns a shape about a fixed centre of rotation by a given angle (clockwise or anti-clockwise). You must specify: angle, direction, and centre.

Rotate point (3, 1) by 90° anti-clockwise about the origin.

Rule for 90° anti-clockwise: (x, y) → (−y, x). So (3, 1) → (−1, 3).

Rotation Rules About the Origin

RotationTransformation Rule
90° clockwise(x, y) → (y, −x)
90° anti-clockwise(x, y) → (−y, x)
180° (either direction)(x, y) → (−x, −y)

Reflection

A reflection flips a shape over a mirror line. Every point maps to its mirror image, equidistant from the line on the other side.

Mirror LineRule
x-axis (y = 0)(x, y) → (x, −y)
y-axis (x = 0)(x, y) → (−x, y)
y = x(x, y) → (y, x)
y = −x(x, y) → (−y, −x)

Enlargement

An enlargement scales a shape by a scale factor from a centre of enlargement. Scale factor k > 1 makes it bigger; 0 < k < 1 makes it smaller; negative k flips and scales it.

Enlarge triangle with vertices (1, 1), (3, 1), (1, 3) by scale factor 2 from the origin.

Multiply each coordinate by 2: (2, 2), (6, 2), (2, 6). The image is twice the size.

Key Takeaways

  • Translation: describe with a column vector. Image is congruent to object.
  • Rotation: specify angle, direction, and centre of rotation.
  • Reflection: specify the mirror line. Image is congruent, but orientation reverses.
  • Enlargement: specify scale factor and centre. Image is similar (not congruent unless k = 1 or −1).

Practice Questions

  1. Translate point (4, −2) by vector (−3 over 5). State the image coordinates.
  2. Rotate point (5, 2) by 90° clockwise about the origin. State the image.
  3. Reflect point (3, 4) in the y-axis. State the image.
  4. Reflect (2, 5) in the line y = x. State the image.
  5. A triangle has vertices (1, 2), (3, 2), (2, 4). It is enlarged by scale factor 3 from the origin. Find the image vertices.

Congratulations!

You have completed the full Geometry section on MathsFamily. Return to the Resources page to continue your mathematics journey.

Home About Resources Dashboard