4. Topic 4(COLON) Matrices and Linear Systems

Lesson 4.3: Matrices As Linear Transformations

#### Lesson focus #### Learning outcomes Students should be able to:.

Lesson 4.3: Matrices as Linear Transformations

Introduction

Welcome to Lesson 4.3! Today, we will delve deeper into how matrices can represent various types of transformations in the plane. Our journey will help students discover the powerful connection between algebra and geometry. 🌍

Learning Objectives

By the end of this lesson, students should be able to:

  • Represent rotations, reflections, enlargements, and shears using matrices.
  • Compose transformations by multiplying matrices.
  • Identify invariant points and invariant lines of a transformation.
  • Understand the determinant as the area scale factor of a transformation.
  • Write down the matrix of a standard plane transformation.

Representing Transformations

Matrices serve as tools that allow us to represent geometric transformations such as rotations, reflections, enlargements, and shears. Let’s explore each of these in detail.

Rotations

When we rotate points in the Cartesian plane around the origin, we need a rotation matrix. The rotation by an angle $\theta$ can be expressed as:

$$R(\theta) = egin{pmatrix} \cos(\theta) & -\sin(\theta) \ \sin(\theta) & \cos(\theta) \end{pmatrix}$$

For example, to rotate a point $(x, y)$ by 90 degrees, we would use:

$$R(90^{\circ}) = egin{pmatrix} 0 & -1 \ 1 & 0 \end{pmatrix}$$

Thus, rotating the point $(1, 0)$ becomes:

$$egin{pmatrix} 0 & -1 \ 1 & 0 \end{pmatrix} \cdot egin{pmatrix} 1 \ 0 \end{pmatrix} = egin{pmatrix} 0 \ 1 \end{pmatrix}$$

This means $(1, 0)$ has moved to $(0, 1)$.

Reflections

A reflection across the x-axis can be represented by the following matrix:

$$\text{Reflection}_{x-axis} = egin{pmatrix} 1 & 0 \ 0 & -1 \end{pmatrix}$$

For example, reflecting the point $(3, 4)$ yields:

$$egin{pmatrix} 1 & 0 \ 0 & -1 \end{pmatrix} \cdot egin{pmatrix} 3 \ 4 \end{pmatrix} = egin{pmatrix} 3 \ -4 \end{pmatrix}$$

This shows that point $(3, 4)$ reflects to $(3, -4)$.

Enlargements

To enlarge a shape, use a scaling matrix. For example, a scaling matrix that doubles the size of the object is:

$$S = egin{pmatrix} 2 & 0 \ 0 & 2 \end{pmatrix}$$

Applying this on point $(2, 3)$ gives:

$$egin{pmatrix} 2 & 0 \ 0 & 2 \end{pmatrix} \cdot egin{pmatrix} 2 \ 3 \end{pmatrix} = egin{pmatrix} 4 \ 6 \end{pmatrix}$$

Thus, $(2, 3)$ enlarges to $(4, 6)$.

Shears

A shear transformation can be represented, for example as:

$$\text{Shear}_{x} = egin{pmatrix} 1 & k \ 0 & 1 \end{pmatrix}$$

where $k$ is the shear factor. For instance, if $k = 2$, the shear matrix becomes:

$$egin{pmatrix} 1 & 2 \ 0 & 1 \end{pmatrix}$$

Applying this on point $(1, 1)$ results in:

$$egin{pmatrix} 1 & 2 \ 0 & 1 \end{pmatrix} \cdot egin{pmatrix} 1 \ 1 \end{pmatrix} = egin{pmatrix} 3 \ 1 \end{pmatrix}$$

students now sees that $(1, 1)$ is transformed to $(3, 1)$.

Composing Transformations

Transformations can be combined through matrix multiplication.

For example, if we first enlarge a point by a factor of 2 and then rotate it by 90 degrees, the matrices would be:

$$S = egin{pmatrix} 2 & 0 \ 0 & 2 \end{pmatrix}, \quad R(90^{\circ}) = egin{pmatrix} 0 & -1 \ 1 & 0 \end{pmatrix}$$

The combined transformation matrix is:

$$T = R(90^{\circ}) \cdot S = egin{pmatrix} 0 & -1 \ 1 & 0 \end{pmatrix} \cdot egin{pmatrix} 2 & 0 \ 0 & 2 \end{pmatrix} = egin{pmatrix} 0 & -2 \ 2 & 0 \end{pmatrix}$$

This matrix $T$ will first enlarge the shape and then rotate it.

Invariant Points and Lines

Certain points do not change under transformations, known as invariant points. For instance, the origin $(0, 0)$ is invariant under many transformations. A line can also be invariant; for instance, under a reflection across a line, that line does not change. Identifying these points and lines is essential in understanding how transformations work.

The Determinant and Area Scale Factor

The determinant of a transformation matrix can be interpreted as the area scale factor. For example, the area of a triangle formed by the coordinate points can be scaled by the absolute value of the determinant. Let's take the following transformation matrix:

$$A = egin{pmatrix} 2 & 0 \ 0 & 3 \end{pmatrix}$$

The determinant of $A$ is calculated as:

$$\text{det}(A) = 2 \cdot 3 - 0 \cdot 0 = 6$$

This means any region transformed by $A$ will have its area scaled by a factor of 6.

Conclusion

In this lesson, we explored how matrices can describe various geometric transformations like rotations, reflections, enlargements, and shears. We learned how to compose transformations and the significance of invariant points, invariant lines, and determinants in these contexts.

Study Notes

  • Matrices represent transformations geometrically.
  • Rotation, reflection, enlargement, and shear have specific matrix forms.
  • Transformations can be combined using matrix multiplication.
  • Invariant points remain unchanged under transformations.
  • The determinant measures how area scales during transformations.

Practice Quiz

5 questions to test your understanding

Lesson 4.3: Matrices As Linear Transformations β€” Further Mathematics | A-Warded