Fiveable

๐Ÿ“ˆLinear Algebra 101 Unit 2 Review

QR code for Linear Algebra 101 practice questions

2.1 Identify linear transformations and properties

2.1 Identify linear transformations and properties

Written by the Fiveable Content Team โ€ข Last updated August 2025
Written by the Fiveable Content Team โ€ข Last updated August 2025

Linear transformations are the backbone of vector space operations. They preserve addition and scalar multiplication, making them crucial for understanding how vectors behave under different mappings. This topic dives into their properties, types, and representations.

Identifying linear transformations involves checking if they maintain vector addition and scalar multiplication. We'll explore how to spot these transformations, their key characteristics like injectivity and surjectivity, and how to represent them using matrices.

Linear Transformations and Properties

Definition and Key Properties

  • A linear transformation is a function TT from a vector space VV to a vector space WW that preserves the operations of vector addition and scalar multiplication
  • For any vectors uu and vv in VV and any scalar cc, a linear transformation TT satisfies:
    • T(u+v)=T(u)+T(v)T(u + v) = T(u) + T(v) (preserves vector addition)
    • T(cu)=cT(u)T(cu) = cT(u) (preserves scalar multiplication)
  • The kernel (or null space) of a linear transformation TT is the set of all vectors vv in VV such that T(v)=0T(v) = 0
    • Example: For the linear transformation T(x,y)=(x+y,xโˆ’y)T(x, y) = (x + y, x - y), the kernel is {(x,x):xโˆˆR}\{(x, x) : x \in \mathbb{R}\}
  • The range (or image) of a linear transformation TT is the set of all vectors ww in WW such that w=T(v)w = T(v) for some vector vv in VV
    • Example: For the linear transformation T(x,y)=(x+y,xโˆ’y)T(x, y) = (x + y, x - y), the range is R2\mathbb{R}^2

Injectivity, Surjectivity, and Bijectivity

  • A linear transformation is injective (one-to-one) if and only if its kernel is {0}\{0\}
    • Example: The linear transformation T(x,y)=(x,y,0)T(x, y) = (x, y, 0) from R2\mathbb{R}^2 to R3\mathbb{R}^3 is injective
  • A linear transformation is surjective (onto) if and only if its range is equal to the codomain WW
    • Example: The linear transformation T(x,y,z)=(x+y,z)T(x, y, z) = (x + y, z) from R3\mathbb{R}^3 to R2\mathbb{R}^2 is surjective
  • A linear transformation is bijective (one-to-one and onto) if and only if it is both injective and surjective
    • Example: The linear transformation T(x,y)=(2x,3y)T(x, y) = (2x, 3y) from R2\mathbb{R}^2 to R2\mathbb{R}^2 is bijective

Identifying Linear Transformations

Definition and Key Properties, Transformation matrix - Wikipedia

Preserving Vector Addition and Scalar Multiplication

  • To determine if a transformation TT is linear, check if it preserves vector addition and scalar multiplication
  • For vector addition, verify that T(u+v)=T(u)+T(v)T(u + v) = T(u) + T(v) for any vectors uu and vv in the domain
    • Example: For T(x,y)=(x2,y)T(x, y) = (x^2, y), T((1,1)+(2,3))โ‰ T(1,1)+T(2,3)T((1, 1) + (2, 3)) \neq T(1, 1) + T(2, 3), so TT is not linear
  • For scalar multiplication, verify that T(cu)=cT(u)T(cu) = cT(u) for any vector uu in the domain and any scalar cc
    • Example: For T(x,y)=(2x,3y)T(x, y) = (2x, 3y), T(2(1,1))=2T(1,1)T(2(1, 1)) = 2T(1, 1), so TT preserves scalar multiplication

Conditions for Linearity

  • If both properties hold for all vectors in the domain and all scalars, then the transformation is linear
  • If either property fails for any vectors or scalars, then the transformation is not linear
    • Example: The transformation T(x,y)=(xy,x+y)T(x, y) = (xy, x + y) is not linear because T((1,1)+(2,3))โ‰ T(1,1)+T(2,3)T((1, 1) + (2, 3)) \neq T(1, 1) + T(2, 3)

Composition of Linear Transformations

Definition and Key Properties, Products of Matrices | College Algebra

Definition and Properties

  • The composition of two linear transformations SS and TT, denoted Sโˆ˜TS \circ T, is defined by (Sโˆ˜T)(v)=S(T(v))(S \circ T)(v) = S(T(v)) for any vector vv in the domain of TT
  • The composition of linear transformations is associative: (Rโˆ˜S)โˆ˜T=Rโˆ˜(Sโˆ˜T)(R \circ S) \circ T = R \circ (S \circ T) for any linear transformations RR, SS, and TT
    • Example: Let R(x,y)=(x+y,xโˆ’y)R(x, y) = (x + y, x - y), S(x,y)=(2x,3y)S(x, y) = (2x, 3y), and T(x,y)=(x,0)T(x, y) = (x, 0). Then, ((Rโˆ˜S)โˆ˜T)(x,y)=(Rโˆ˜S)(x,0)=R(2x,0)=(2x,2x)=(Rโˆ˜(Sโˆ˜T))(x,y)((R \circ S) \circ T)(x, y) = (R \circ S)(x, 0) = R(2x, 0) = (2x, 2x) = (R \circ (S \circ T))(x, y)
  • The composition of linear transformations is distributive over addition: (S+T)โˆ˜R=(Sโˆ˜R)+(Tโˆ˜R)(S + T) \circ R = (S \circ R) + (T \circ R) and Rโˆ˜(S+T)=(Rโˆ˜S)+(Rโˆ˜T)R \circ (S + T) = (R \circ S) + (R \circ T) for any linear transformations RR, SS, and TT
    • Example: Let R(x,y)=(x,y)R(x, y) = (x, y), S(x,y)=(x+y,0)S(x, y) = (x + y, 0), and T(x,y)=(0,xโˆ’y)T(x, y) = (0, x - y). Then, ((S+T)โˆ˜R)(x,y)=(S+T)(x,y)=(x+y,xโˆ’y)=(Sโˆ˜R)(x,y)+(Tโˆ˜R)(x,y)((S + T) \circ R)(x, y) = (S + T)(x, y) = (x + y, x - y) = (S \circ R)(x, y) + (T \circ R)(x, y)

Kernel and Range of Compositions

  • The kernel of the composition Sโˆ˜TS \circ T contains the kernel of TT, and the range of Sโˆ˜TS \circ T is a subset of the range of SS
    • Example: Let S(x,y)=(x+y,0)S(x, y) = (x + y, 0) and T(x,y)=(x,x)T(x, y) = (x, x). The kernel of TT is {(x,x):xโˆˆR}\{(x, x) : x \in \mathbb{R}\}, which is contained in the kernel of Sโˆ˜TS \circ T. The range of Sโˆ˜TS \circ T is {(2x,0):xโˆˆR}\{(2x, 0) : x \in \mathbb{R}\}, which is a subset of the range of SS
  • If SS and TT are both injective, then Sโˆ˜TS \circ T is injective. If SS and TT are both surjective, then Sโˆ˜TS \circ T is surjective
    • Example: Let S(x,y)=(2x,y)S(x, y) = (2x, y) and T(x,y)=(x,2y)T(x, y) = (x, 2y). Both SS and TT are injective, so Sโˆ˜TS \circ T is also injective. However, neither SS nor TT is surjective, so Sโˆ˜TS \circ T is not surjective

Matrix Representation of Linear Transformations

Calculating the Matrix Representation

  • Choose ordered bases for the domain and codomain of the linear transformation TT
  • For each basis vector viv_i in the domain, calculate its image T(vi)T(v_i) under the transformation
  • Express each T(vi)T(v_i) as a linear combination of the basis vectors in the codomain
    • Example: Let T(x,y)=(x+y,xโˆ’y)T(x, y) = (x + y, x - y) and choose the standard basis {(1,0),(0,1)}\{(1, 0), (0, 1)\} for both the domain and codomain. Then, T(1,0)=(1,1)T(1, 0) = (1, 1) and T(0,1)=(1,โˆ’1)T(0, 1) = (1, -1)
  • The coefficients of these linear combinations form the columns of the matrix representation AA of the linear transformation TT with respect to the chosen bases
    • Example: For the linear transformation T(x,y)=(x+y,xโˆ’y)T(x, y) = (x + y, x - y) with the standard basis, the matrix representation is A=(111โˆ’1)A = \begin{pmatrix} 1 & 1 \\ 1 & -1 \end{pmatrix}

Coordinate Vectors and Matrix Multiplication

  • For any vector xx in the domain expressed as a coordinate vector [x]B[x]_B with respect to the chosen basis BB, the coordinate vector of its image T(x)T(x) with respect to the chosen basis CC in the codomain is given by A[x]B=[T(x)]CA[x]_B = [T(x)]_C
    • Example: For the linear transformation T(x,y)=(x+y,xโˆ’y)T(x, y) = (x + y, x - y) with matrix representation A=(111โˆ’1)A = \begin{pmatrix} 1 & 1 \\ 1 & -1 \end{pmatrix}, if x=(2,3)x = (2, 3), then [x]B=(23)[x]_B = \begin{pmatrix} 2 \\ 3 \end{pmatrix} and [T(x)]C=A[x]B=(111โˆ’1)(23)=(5โˆ’1)[T(x)]_C = A[x]_B = \begin{pmatrix} 1 & 1 \\ 1 & -1 \end{pmatrix} \begin{pmatrix} 2 \\ 3 \end{pmatrix} = \begin{pmatrix} 5 \\ -1 \end{pmatrix}