Dilations, Reflections, and Other Transformations
Learning objectives
- Apply dilation (scalar multiplication) to a point in the plane
- Compute reflections of points across the axes and through the origin
- Understand the geometric effect of dilation and reflection
- Combine dilation and reflection operations
Coordinates let us move points around with algebra. A dilation rescales a figure by a constant factor; a reflection flips it across an axis. Both look like simple coordinate operations on the surface, but together they generate every shape transformation you will see in geometry, physics, and computer graphics. This section formalises the two operations and shows that they sit at the foundation of linear maps, a topic that runs through the rest of the textbook.
Dilation, scaling toward or away from the origin
For a scalar and a point , the dilation of by factor is
The point slides along the ray from the origin through . When it moves farther away (expansion); when it moves closer (contraction); when every point collapses to the origin. When the point flips through the origin and then scales.
- Computer Graphics: Scaling a 3D model uniformly is a dilation ; reflecting it for a mirror surface is a reflection across the mirror plane. Both are matrix-vector products, performed millions of times per frame.
- Physics: Doubling the velocity of a particle is a dilation; reversing it for an elastic collision is a reflection. Conservation of momentum constrains which compositions of dilation and reflection are physically allowed.
- Photography: Zoom is a dilation of the visible field; horizontal flip (for selfies) is a reflection. The image-editing operations in every photo app are exactly the maps you are studying here, composed.
Drag to position it. Slide the scale factor . The orange point moves along the ray from the origin; the distance from the origin scales by .
Three reflections
A reflection flips a point across a line (an "axis of reflection") or through a point. The three reflections most useful in coordinate geometry are:
- Reflection across the -axis: , only the -coordinate flips sign.
- Reflection across the -axis: , only the -coordinate flips sign.
- Reflection through the origin: , both flip. This is the same as .
An important identity: reflecting across the -axis and then across the -axis gives the same result as reflecting through the origin, which equals dilation by .
What dilations and reflections preserve
Both operations preserve the geometric structure in different ways:
- Dilation by scales every distance from the origin by ; preserves angles between lines; takes lines through the origin back into themselves.
- Reflection preserves all distances (it is an isometry); preserves angles in magnitude but reverses orientation.
- Both preserve collinearity: if three points lie on a common line, their images do too.
These invariance properties are why dilations and reflections appear in classifications of "rigid" and "similar" figures.
Try it
- Predict first: dilating by from the origin lands where? Place in the widget, set , and verify the image is .
- Before adjusting: a dilation by should send where? Set and verify the point moves to , reflected through the origin.
- Predict first: with , where should contract to? Set the slider and verify the image is , half the original distance from the origin.
A trap to watch for
The most common slip is reflecting across the wrong axis. "Reflect across the -axis" means the -axis is the mirror; the -coordinate is what changes sign, not the -coordinate. Likewise, "reflect across -axis" flips , not . The mnemonic: the coordinate opposite to the axis you are reflecting across is the one that flips. Reflecting across the -axis gives , not . If you ever produce from a single reflection, you have actually done two reflections (a rotation by 180^\circ).
What you now know
You can dilate a point by any scalar, reflect it across either coordinate axis or through the origin, and read off which geometric invariants survive each operation. The next section combines these with a third operation, vector addition, to show that points in the plane satisfy a complete algebra known as a vector space.
Quick check
Mark section complete →
References
- Lang, S. (1971). Basic Mathematics. Springer. Chapter 9, §1, dilations and reflections of points in the plane.
- Coxeter, H. S. M. (1969). Introduction to Geometry, 2nd ed. Wiley. §3 covers isometries and similarities, the broader framework.
- Artin, M. (2011). Algebra, 2nd ed. Pearson. Chapter 4 introduces linear transformations as a generalisation of dilation.
- Stewart, J. (2015). Calculus, 8th ed. Cengage. Appendix B reviews reflections and scalings in the coordinate plane.