Transformations

Types

PropertyStatement
Translation(x,y)→(x+a,y+b)
Rotation 90°(x,y)→(−y,x)
Reflection (x-axis)(x,y)→(x,−y)
Dilation(x,y)→(kx,ky)

Examples

Example 1. Reflect (3,4) over x-axis.

Solution. (3,−4).

In Depth

Geometric transformations map the plane (or space) to itself. Isometries preserve distances: translations, rotations, reflections, and glide reflections. Similarities preserve shape but not size (add uniform scaling). Affine transformations preserve parallelism (add non-uniform scaling and shear). Projective transformations preserve collinearity.

Every isometry of the plane is a composition of at most three reflections. Translations are compositions of two reflections in parallel lines; rotations are compositions of two reflections in intersecting lines; glide reflections are compositions of three reflections.

The symmetry group of a figure consists of all isometries that map the figure to itself. A regular \(n\)-gon has dihedral group \(D_n\) as its symmetry group (\(n\) rotations and \(n\) reflections). The symmetry group of a circle is the infinite group O(2).

In linear algebra, linear transformations of \(\mathbb{R}^n\) are represented by matrices. Rotation by \(\theta\) in 2D: \([[\cos\theta,-\sin\theta],[\sin\theta,\cos\theta]]\). Reflection over the \(x\)-axis: \([[1,0],[0,-1]]\). Scaling by \(k\): \(kI\). Composition corresponds to matrix multiplication.

Transformations are fundamental in computer graphics (model-view-projection pipeline), robotics (forward and inverse kinematics), and physics (symmetry transformations correspond to conservation laws via Noether's theorem).

Key Properties & Applications

Affine transformations preserve parallelism and ratios of lengths along parallel lines. They include linear transformations (represented by matrices) plus translations. Every affine transformation of \(\mathbb{R}^n\) has the form \(\mathbf{x}\mapsto A\mathbf{x}+\mathbf{b}\) with \(A\) invertible.

Möbius transformations \(f(z)=(az+b)/(cz+d)\) (\(ad-bc\neq0\)) are the conformal automorphisms of the Riemann sphere. They map circles and lines to circles and lines, and are used in complex analysis, hyperbolic geometry, and electrical engineering (Smith chart).

In computer graphics, the model-view-projection pipeline applies a sequence of transformations: model (object to world coordinates), view (world to camera), projection (3D to 2D). Each is a matrix multiplication; the pipeline is a composition of affine and projective transformations.

Further Reading & Context

The study of transformation geometry connects to many areas of mathematics and its applications. Understanding the foundational definitions and theorems provides the basis for advanced work in analysis, algebra, and applied mathematics.

Historical development: most mathematical concepts evolved over centuries, with contributions from mathematicians across many cultures. The modern axiomatic treatment provides rigor, while computational tools enable practical application.

In modern mathematics, this topic appears in graduate courses and research across pure and applied mathematics. Connections to computer science, physics, and engineering make it a versatile and important area of study. Mastery of the core results and techniques opens doors to research in number theory, analysis, geometry, and beyond.

Recommended next steps: work through the standard theorems with full proofs, explore the connections to related topics listed above, and practice with a variety of problems ranging from computational exercises to theoretical proofs. The interplay between different areas of mathematics is one of the subject's greatest rewards.