6. Geometry and Vectors

Transformations

Study geometric transformations including translations, rotations, reflections, dilations, and their matrix representations.

Transformations

Welcome to an exciting journey through geometric transformations, students! 🎯 In this lesson, you'll discover how shapes can be moved, flipped, rotated, and resized on the coordinate plane. By the end of this lesson, you'll understand the four main types of transformations - translations, rotations, reflections, and dilations - and learn how to represent them using matrices. Get ready to see geometry come alive as we explore how these transformations are used everywhere from video game graphics to architectural design! 🏗️

Understanding Transformations: The Basics

A transformation is simply a way of changing the position, size, or orientation of a geometric figure. Think of it like editing a photo on your phone - you can move it, rotate it, flip it, or resize it! 📱 In mathematics, we call the original figure the preimage and the result after transformation the image.

There are two main categories of transformations:

Rigid Transformations (Isometries): These preserve the shape and size of the figure. The distance between any two points remains the same. These include translations, rotations, and reflections. Imagine moving a piece of paper around on your desk - no matter how you slide, turn, or flip it, the paper itself doesn't change size or shape.

Non-Rigid Transformations: These change the size of the figure while preserving its shape. Dilations fall into this category. Think of zooming in or out on a map - the roads and buildings maintain their proportional relationships, but everything appears larger or smaller.

Translations: Sliding Shapes Around

A translation is the simplest transformation - it's like sliding a shape from one position to another without rotating, flipping, or changing its size. Every point on the figure moves the same distance in the same direction. 🛷

In coordinate geometry, we describe translations using vectors. If we translate a point $(x, y)$ by moving it $a$ units horizontally and $b$ units vertically, the new coordinates become $(x + a, y + b)$. We can write this transformation as:

$$T_{(a,b)}: (x, y) \rightarrow (x + a, y + b)$$

For example, if you translate the point $(3, 2)$ by the vector $(4, -1)$, the new position would be $(3 + 4, 2 + (-1)) = (7, 1)$.

Real-world example: When you scroll through your social media feed, you're essentially translating the content vertically! The posts maintain their size and orientation, but their position changes on your screen.

The matrix representation of a translation requires us to use homogeneous coordinates. For a translation by vector $(a, b)$, we use:

$$\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}$$

Rotations: Spinning Around a Point

A rotation turns a figure around a fixed point called the center of rotation. The amount of turn is measured in degrees or radians, and the direction can be clockwise or counterclockwise (positive angles are typically counterclockwise). 🌪️

The most common rotations in high school mathematics are around the origin $(0, 0)$ by angles of $90°$, $180°$, and $270°$. Here are the key rotation rules:

  • 90° counterclockwise: $(x, y) \rightarrow (-y, x)$
  • 180°: $(x, y) \rightarrow (-x, -y)$
  • 270° counterclockwise (or 90° clockwise): $(x, y) \rightarrow (y, -x)$

For a general rotation by angle $\theta$ about the origin, the matrix representation is:

$$R_\theta = \begin{bmatrix} \cos\theta & -\sin\theta \\ \sin\theta & \cos\theta \end{bmatrix}$$

This means that rotating point $(x, y)$ by angle $\theta$ gives us:

$$\begin{bmatrix} \cos\theta & -\sin\theta \\ \sin\theta & \cos\theta \end{bmatrix} \begin{bmatrix} x \\ y \end{bmatrix} = \begin{bmatrix} x\cos\theta - y\sin\theta \\ x\sin\theta + y\cos\theta \end{bmatrix}$$

Real-world example: The hands of a clock demonstrate rotation perfectly! The minute hand rotates $360°$ every hour around the center of the clock face, while the hour hand rotates $30°$ every hour.

Reflections: Mirror, Mirror

A reflection creates a mirror image of a figure across a line called the line of reflection. Every point on the original figure has a corresponding point on the reflected figure that is the same distance from the line of reflection, but on the opposite side. 🪞

The most common reflections are across the coordinate axes:

  • Reflection across the x-axis: $(x, y) \rightarrow (x, -y)$
  • Reflection across the y-axis: $(x, y) \rightarrow (-x, y)$
  • Reflection across the line $y = x$: $(x, y) \rightarrow (y, x)$
  • Reflection across the line $y = -x$: $(x, y) \rightarrow (-y, -x)$

The matrix representations for these common reflections are:

  • Across x-axis: $\begin{bmatrix} 1 & 0 \\ 0 & -1 \end{bmatrix}$
  • Across y-axis: $\begin{bmatrix} -1 & 0 \\ 0 & 1 \end{bmatrix}$
  • Across $y = x$: $\begin{bmatrix} 0 & 1 \\ 1 & 0 \end{bmatrix}$

Real-world example: When you look at yourself in a bathroom mirror, you're seeing a reflection across a vertical line. Notice how your right hand appears to be your left hand in the mirror - that's the reflection transformation at work!

Dilations: Scaling Up and Down

A dilation changes the size of a figure by a scale factor while keeping its shape the same. The center of dilation is a fixed point, and all other points move toward or away from this center. 🔍

If the scale factor $k$ is:

  • Greater than 1: The image is larger than the preimage (enlargement)
  • Between 0 and 1: The image is smaller than the preimage (reduction)
  • Equal to 1: The image is the same size as the preimage
  • Negative: The image is on the opposite side of the center of dilation

For a dilation with center at the origin and scale factor $k$:

$$(x, y) \rightarrow (kx, ky)$$

The matrix representation is:

$$D_k = \begin{bmatrix} k & 0 \\ 0 & k \end{bmatrix}$$

Real-world example: When you use a photocopier to make something 150% larger, you're applying a dilation with scale factor 1.5. The document maintains its proportions, but everything becomes bigger.

Combining Transformations

In real applications, we often combine multiple transformations. This is called composition of transformations. The order matters! For example, translating then rotating gives a different result than rotating then translating. 🔄

When using matrices, we multiply them to combine transformations. If we want to apply transformation $A$ followed by transformation $B$, we calculate $B \cdot A$ (note the reverse order).

Conclusion

Transformations are powerful tools that help us understand how shapes move and change in space, students! We've explored translations (sliding), rotations (turning), reflections (flipping), and dilations (scaling). Each transformation has specific rules and matrix representations that make calculations systematic and precise. These concepts aren't just abstract math - they're the foundation for computer graphics, engineering design, art, and many other fields you encounter daily. Understanding transformations gives you a new lens through which to see the geometric world around you! 🌟

Study Notes

• Transformation: A change in position, size, or orientation of a geometric figure

• Preimage: The original figure before transformation

• Image: The figure after transformation

• Rigid transformations: Preserve shape and size (translations, rotations, reflections)

• Non-rigid transformations: Change size but preserve shape (dilations)

• Translation by vector $(a,b)$: $(x, y) \rightarrow (x + a, y + b)$

• Rotation 90° counterclockwise: $(x, y) \rightarrow (-y, x)$

• Rotation 180°: $(x, y) \rightarrow (-x, -y)$

• Rotation 270° counterclockwise: $(x, y) \rightarrow (y, -x)$

• Reflection across x-axis: $(x, y) \rightarrow (x, -y)$

• Reflection across y-axis: $(x, y) \rightarrow (-x, y)$

• Reflection across $y = x$: $(x, y) \rightarrow (y, x)$

• Dilation with scale factor $k$: $(x, y) \rightarrow (kx, ky)$

• General rotation matrix: $R_\theta = \begin{bmatrix} \cos\theta & -\sin\theta \\ \sin\theta & \cos\theta \end{bmatrix}$

• Dilation matrix: $D_k = \begin{bmatrix} k & 0 \\ 0 & k \end{bmatrix}$

• Composition of transformations: Order matters; multiply matrices in reverse order

Practice Quiz

5 questions to test your understanding