5. Similarity and Transformations

Rigid Motions

Covers translations, rotations, and reflections as isometries preserving distance and angle measures, with vector and matrix descriptions.

Rigid Motions

Hey students! 👋 Welcome to one of the most fascinating topics in geometry - rigid motions! In this lesson, we'll explore how shapes can move around in space while keeping their size and shape exactly the same. Think of it like moving a piece of furniture around your room - no matter where you slide, flip, or turn it, the furniture itself doesn't change! By the end of this lesson, you'll understand the three types of rigid motions (translations, rotations, and reflections), learn why they're called isometries, and discover how mathematicians describe these movements using vectors and matrices. Get ready to see geometry come alive! ✨

Understanding Rigid Motions and Isometries

Imagine you're playing with a puzzle piece on your desk. You can slide it across the surface, spin it around, or flip it over, but the puzzle piece itself never changes shape or size. This is exactly what rigid motions do in geometry!

A rigid motion (also called a rigid transformation) is a transformation that moves every point of a figure the same distance in the same direction, preserving both the shape and size of the original figure. The word "rigid" tells us that the figure stays completely unchanged - like it's made of solid steel that can't bend or stretch.

These transformations are also called isometries, which comes from Greek words meaning "same measure." This is because isometries preserve three crucial properties:

  • Distance: The length between any two points remains exactly the same
  • Angle measures: All angles in the figure stay identical
  • Shape and size: The figure is congruent to its image

Think about your smartphone screen 📱. When you rotate it from portrait to landscape mode, the screen doesn't get bigger or smaller - it just changes orientation. That's a rigid motion in action!

There are exactly three types of rigid motions: translations, rotations, and reflections. Every other rigid transformation you can imagine is actually a combination of these three basic movements.

Translations: The Sliding Motion

A translation is like sliding an object across a flat surface without rotating or flipping it. Every point in the figure moves the same distance in the same direction, creating a "slide" effect.

Real-world example: When you drag an app icon across your phone screen, you're performing a translation! The icon maintains its exact size and orientation while moving to a new position.

Mathematically, we can describe translations using vectors. A vector shows both the direction and distance of the movement. If we translate a point $(x, y)$ by a vector $\langle a, b \rangle$, the new position becomes $(x + a, y + b)$.

For example, if we translate the point $(3, 2)$ by the vector $\langle 4, -1 \rangle$, the new position is:

$(3 + 4, 2 + (-1)) = (7, 1)$

We can also represent translations using matrices. The translation matrix for moving by vector $\langle a, b \rangle$ looks like this:

$$\begin{bmatrix} 1 & 0 & a \\ 0 & 1 & b \\ 0 & 0 & 1 \end{bmatrix}$$

Here's a cool fact: You can achieve any translation by performing two reflections over parallel lines! The distance between the parallel lines is exactly half the translation distance. This shows how all rigid motions are interconnected.

Rotations: The Spinning Motion

A rotation spins a figure around a fixed point called the center of rotation. Every point in the figure moves along a circular arc, maintaining the same distance from the center.

Think about a Ferris wheel 🎡 - as it turns, every passenger car rotates around the central hub, but each car stays the same distance from the center and maintains its orientation relative to the wheel.

Key components of a rotation:

  • Center of rotation: The fixed point around which everything spins
  • Angle of rotation: How far the figure turns (measured in degrees or radians)
  • Direction: Clockwise or counterclockwise (positive angles are typically counterclockwise)

For a rotation of angle $\theta$ around the origin, we use this rotation matrix:

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

If we want to rotate the point $(4, 0)$ by $90°$ counterclockwise around the origin:

$$\begin{bmatrix} \cos 90° & -\sin 90° \\ \sin 90° & \cos 90° \end{bmatrix} \begin{bmatrix} 4 \\ 0 \end{bmatrix} = \begin{bmatrix} 0 & -1 \\ 1 & 0 \end{bmatrix} \begin{bmatrix} 4 \\ 0 \end{bmatrix} = \begin{bmatrix} 0 \\ 4 \end{bmatrix}$$

The point $(4, 0)$ becomes $(0, 4)$ after the rotation!

Amazing fact: Any rotation can be created by performing two reflections over intersecting lines! The angle between the reflection lines is exactly half the rotation angle.

Reflections: The Mirror Motion

A reflection creates a mirror image of a figure across a line called the line of reflection (or axis of symmetry). Every point and its reflected image are the same distance from the reflection line, but on opposite sides.

Picture yourself looking in a bathroom mirror 🪞. Your reflection appears to be the same distance behind the mirror as you are in front of it. If you raise your right hand, your reflection raises its left hand - that's the "flipping" effect of reflection!

Properties of reflections:

  • The line of reflection acts as a "mirror"
  • Each point and its image are equidistant from the reflection line
  • The line connecting a point to its image is perpendicular to the reflection line
  • Reflections reverse orientation (clockwise becomes counterclockwise)

For a reflection across the x-axis, we use this matrix:

$$\begin{bmatrix} 1 & 0 \\ 0 & -1 \end{bmatrix}$$

For a reflection across the y-axis:

$$\begin{bmatrix} -1 & 0 \\ 0 & 1 \end{bmatrix}$$

Reflections are special because they're the building blocks of all other rigid motions! Any translation or rotation can be created by combining two or more reflections.

Combining Rigid Motions

Here's where things get really interesting, students! You can combine rigid motions to create more complex transformations, and the result is always another rigid motion.

Some important combinations:

  • Two reflections over parallel lines = Translation
  • Two reflections over intersecting lines = Rotation around the intersection point
  • Three reflections = Another reflection
  • Translation + Rotation = Rotation around a different center (called a glide rotation)
  • Translation + Reflection = Glide reflection (like footprints in sand!)

The order of operations matters! Performing rotation then translation gives a different result than translation then rotation.

In computer graphics and robotics, these combinations are used constantly. Video game characters move through combinations of translations and rotations, while industrial robots use precise sequences of rigid motions to assemble products.

Conclusion

Rigid motions are the fundamental movements in geometry that preserve distance and angle measures. The three basic types - translations (sliding), rotations (spinning), and reflections (flipping) - can be combined to create any possible rigid transformation. Understanding these isometries through vectors and matrices gives us powerful tools to describe and predict geometric movements, from simple puzzle pieces to complex computer animations. These concepts form the foundation for advanced topics in geometry, physics, and engineering!

Study Notes

• Rigid Motion/Isometry: A transformation that preserves distance, angle measures, and shape

• Three types of rigid motions: Translation, Rotation, Reflection

• Translation: Sliding motion described by vector $\langle a, b \rangle$; point $(x,y)$ becomes $(x+a, y+b)$

• Translation Matrix: $\begin{bmatrix} 1 & 0 & a \\ 0 & 1 & b \\ 0 & 0 & 1 \end{bmatrix}$

• Rotation: Spinning around a center point by angle $\theta$

• Rotation Matrix: $\begin{bmatrix} \cos\theta & -\sin\theta \\ \sin\theta & \cos\theta \end{bmatrix}$

• Reflection: Mirror image across a line of reflection

• Reflection across x-axis: $\begin{bmatrix} 1 & 0 \\ 0 & -1 \end{bmatrix}$

• Reflection across y-axis: $\begin{bmatrix} -1 & 0 \\ 0 & 1 \end{bmatrix}$

• Two parallel line reflections = Translation

• Two intersecting line reflections = Rotation

• Glide reflection = Translation + Reflection

• All rigid motions preserve: Distance, angle measures, congruence

• Rigid motions are reversible: Every rigid motion has an inverse

Practice Quiz

5 questions to test your understanding

Rigid Motions — High School Geometry | A-Warded