Standard Matrix of a Linear Transformation

Definition

The standard matrix of a linear transformation T:RnRmT: \mathbb{R}^n \rightarrow \mathbb{R}^m is the matrix ARm×nA \in \mathbb{R}^{m \times n} such that for any vector vRn\vec{v} \in \mathbb{R}^n:

T(v)=AvT(\vec{v}) = A\vec{v}

This matrix represents the transformation relative to the standard bases of Rn\mathbb{R}^n and Rm\mathbb{R}^m.

Constructing the Standard Matrix

To find the standard matrix of a linear transformation T:RnRmT: \mathbb{R}^n \rightarrow \mathbb{R}^m:

  1. Let {e1,e2,,en}{\vec{e}_1, \vec{e}_2, \ldots, \vec{e}_n} be the standard basis of Rn\mathbb{R}^n, where ei\vec{e}_i has 1 in the ii-th position and 0 elsewhere.

  2. Compute the images of each basis vector: T(e1),T(e2),,T(en)T(\vec{e}_1), T(\vec{e}_2), \ldots, T(\vec{e}_n).

  3. Form the matrix AA by using these images as columns:

A=[T(e1)T(e2)T(en)]A = \begin{bmatrix} T(\vec{e}_1) & T(\vec{e}_2) & \cdots & T(\vec{e}_n) \end{bmatrix}

That is, the jj-th column of AA is the vector T(ej)T(\vec{e}_j).

For General Vector Spaces

For linear transformations between general vector spaces T:VWT: V \rightarrow W with chosen bases B\mathcal{B} for VV and C\mathcal{C} for WW, the process is similar:

  1. Let B={v1,v2,,vn}\mathcal{B} = {\vec{v}_1, \vec{v}_2, \ldots, \vec{v}_n} be a basis for VV.

  2. Compute the images: T(v1),T(v2),,T(vn)T(\vec{v}_1), T(\vec{v}_2), \ldots, T(\vec{v}_n) in WW.

  3. Express each T(vj)T(\vec{v}_j) as a linear combination of the basis vectors in C\mathcal{C}.

  4. Use the coefficients from these linear combinations to form the columns of the matrix.

Examples

Example 1: Reflection About the y-axis

Consider the transformation T:R2R2T: \mathbb{R}^2 \rightarrow \mathbb{R}^2 that reflects points about the y-axis.

The standard basis vectors of R2\mathbb{R}^2 are:

e1=[10]ande2=[01]\vec{e}_1 = \begin{bmatrix} 1 \\ 0 \end{bmatrix} \quad \text{and} \quad \vec{e}_2 = \begin{bmatrix} 0 \\ 1 \end{bmatrix}

Under reflection about the y-axis:

T(e1)=[10]andT(e2)=[01]T(\vec{e}_1) = \begin{bmatrix} -1 \\ 0 \end{bmatrix} \quad \text{and} \quad T(\vec{e}_2) = \begin{bmatrix} 0 \\ 1 \end{bmatrix}

Therefore, the standard matrix of TT is:

A=[T(e1)T(e2)]=[1001]A = \begin{bmatrix} T(\vec{e}_1) & T(\vec{e}_2) \end{bmatrix} = \begin{bmatrix} -1 & 0 \\ 0 & 1 \end{bmatrix}

Example 2: Linear Transformation Given by a Formula

Consider T:R3R2T: \mathbb{R}^3 \rightarrow \mathbb{R}^2 defined by:

T[xyz]=[2xy+3zx+4yz]T\begin{bmatrix} x \\ y \\ z \end{bmatrix} = \begin{bmatrix} 2x - y + 3z \\ x + 4y - z \end{bmatrix}

The standard basis vectors of R3\mathbb{R}^3 are:

e1=[100],e2=[010],e3=[001]\vec{e}_1 = \begin{bmatrix} 1 \\ 0 \\ 0 \end{bmatrix}, \quad \vec{e}_2 = \begin{bmatrix} 0 \\ 1 \\ 0 \end{bmatrix}, \quad \vec{e}_3 = \begin{bmatrix} 0 \\ 0 \\ 1 \end{bmatrix}

Computing the images:

T(e1)=[21],T(e2)=[14],T(e3)=[31]T(\vec{e}_1) = \begin{bmatrix} 2 \\ 1 \end{bmatrix}, \quad T(\vec{e}_2) = \begin{bmatrix} -1 \\ 4 \end{bmatrix}, \quad T(\vec{e}_3) = \begin{bmatrix} 3 \\ -1 \end{bmatrix}

Therefore, the standard matrix is:

A=[T(e1)T(e2)T(e3)]=[213141]A = \begin{bmatrix} T(\vec{e}_1) & T(\vec{e}_2) & T(\vec{e}_3) \end{bmatrix} = \begin{bmatrix} 2 & -1 & 3 \\ 1 & 4 & -1 \end{bmatrix}

Properties

  1. Linearity: The standard matrix representation preserves all the properties of the original linear transformation.

  2. Composition: If T:UVT: U \rightarrow V and S:VWS: V \rightarrow W are linear transformations with standard matrices AA and BB respectively, then the standard matrix of the composition STS \circ T is the product BABA.

  3. Inverse: If T:VVT: V \rightarrow V is invertible with standard matrix AA, then the standard matrix of T1T^{-1} is A1A^{-1}.

  4. Null Space and Image: The null space and image of the transformation TT correspond to the null space and column space of its standard matrix AA.

Applications

  1. Geometric Transformations: Standard matrices can represent rotations, reflections, projections, and other geometric transformations.

  2. Change of Basis: When changing from one basis to another, the standard matrix helps transform the coordinates.

  3. Solving Systems: The standard matrix allows us to convert problems about linear transformations into problems about systems of linear equations.

  4. Computer Graphics: Standard matrices are used to implement transformations in 2D and 3D graphics.

Exercise

Find the standard matrix of the linear transformation T:R2R3T: \mathbb{R}^2 \rightarrow \mathbb{R}^3 defined by:

T[xy]=[x+2y3xyxy]T\begin{bmatrix} x \\ y \end{bmatrix} = \begin{bmatrix} x + 2y \\ 3x - y \\ x - y \end{bmatrix}

Then, find the null space and image of TT, and verify the Rank-Nullity Theorem.